audiobookshelf/client/components/modals/libraries/LibraryTools.vue

166 lines
5.3 KiB
Vue
Raw Normal View History

<template>
2023-10-18 16:47:56 -05:00
<div class="w-full h-full px-1 md:px-2 py-1 mb-4">
<div class="w-full border border-black-200 p-4 my-8">
<div class="flex flex-wrap items-center">
<div>
<p class="text-lg">{{ $strings.LabelRemoveMetadataFile }}</p>
<p class="max-w-sm text-sm pt-2 text-gray-300">{{ $getString('LabelRemoveMetadataFileHelp', [mediaType]) }}</p>
2023-10-18 16:47:56 -05:00
</div>
2025-03-16 16:41:37 +02:00
<div class="grow" />
2023-10-18 16:47:56 -05:00
<div>
<ui-btn class="mb-4 block" @click.stop="removeAllMetadataClick('json')">{{ $strings.LabelRemoveAllMetadataJson }}</ui-btn>
<ui-btn @click.stop="removeAllMetadataClick('abs')">{{ $strings.LabelRemoveAllMetadataAbs }}</ui-btn>
2023-10-18 16:47:56 -05:00
</div>
</div>
</div>
<div class="w-full border border-black-200 p-4 my-8">
<div class="flex flex-wrap items-center">
<div>
<p class="text-lg">{{ $strings.LabelRemoveItemsWithIssues }}</p>
<p class="max-w-sm text-sm pt-2 text-gray-300">{{ $strings.LabelRemoveItemsWithIssuesHelp }}</p>
</div>
<div class="grow" />
<div>
<ui-btn @click.stop="removeItemsWithIssuesClick">{{ $strings.ButtonRemove }}</ui-btn>
</div>
</div>
</div>
2026-02-12 19:21:25 +02:00
<div v-if="isBookLibrary" class="w-full border border-black-200 p-4 my-8">
<div class="flex flex-wrap items-center">
<div>
<p class="text-lg">{{ $strings.LabelCleanupAuthors }}</p>
<p class="max-w-sm text-sm pt-2 text-gray-300">{{ $strings.LabelCleanupAuthorsHelp }}</p>
</div>
<div class="grow" />
<div>
<ui-btn @click.stop="cleanupAuthorsClick">{{ $strings.ButtonRemove }}</ui-btn>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
props: {
library: {
type: Object,
default: () => null
},
libraryId: String,
processing: Boolean
},
data() {
return {}
},
computed: {
librarySettings() {
return this.library.settings || {}
},
mediaType() {
return this.library.mediaType
},
isBookLibrary() {
return this.mediaType === 'book'
}
},
methods: {
removeAllMetadataClick(ext) {
const payload = {
message: this.$getString('MessageConfirmRemoveMetadataFiles', [ext]),
persistent: true,
callback: (confirmed) => {
if (confirmed) {
this.removeAllMetadataInLibrary(ext)
}
},
type: 'yesNo'
}
this.$store.commit('globals/setConfirmPrompt', payload)
},
removeAllMetadataInLibrary(ext) {
this.$emit('update:processing', true)
this.$axios
.$post(`/api/libraries/${this.libraryId}/remove-metadata?ext=${ext}`)
.then((data) => {
if (!data.found) {
this.$toast.info(this.$getString('ToastMetadataFilesRemovedNoneFound', [ext]))
} else if (!data.removed) {
this.$toast.success(this.$getString('ToastMetadataFilesRemovedNoneRemoved', [ext]))
} else {
this.$toast.success(this.$getString('ToastMetadataFilesRemovedSuccess', [data.removed, ext]))
}
})
.catch((error) => {
console.error('Failed to remove metadata files', error)
this.$toast.error(this.$getString('ToastMetadataFilesRemovedError', [ext]))
})
.finally(() => {
this.$emit('update:processing', false)
})
},
removeItemsWithIssuesClick() {
const payload = {
message: this.$strings.MessageConfirmRemoveItemsWithIssues,
persistent: true,
callback: (confirmed) => {
if (confirmed) {
this.removeItemsWithIssuesInLibrary()
}
},
type: 'yesNo'
}
this.$store.commit('globals/setConfirmPrompt', payload)
},
removeItemsWithIssuesInLibrary() {
this.$emit('update:processing', true)
this.$axios
.$delete(`/api/libraries/${this.libraryId}/issues`)
.then(() => {
this.$toast.success(this.$strings.ToastLibraryItemsWithIssuesRemoved)
})
.catch((error) => {
console.error('Failed to remove items with issues', error)
this.$toast.error(this.$strings.ToastLibraryItemsWithIssuesRemoveFailed)
})
.finally(() => {
this.$emit('update:processing', false)
})
2026-02-12 19:21:25 +02:00
},
cleanupAuthorsClick() {
const payload = {
message: this.$strings.MessageConfirmCleanupAuthors,
persistent: true,
callback: (confirmed) => {
if (confirmed) {
this.cleanupAuthors()
}
},
type: 'yesNo'
}
this.$store.commit('globals/setConfirmPrompt', payload)
},
cleanupAuthors() {
this.$emit('update:processing', true)
this.$axios
.$delete(`/api/libraries/${this.libraryId}/authors/cleanup?force=1`)
.then((data) => {
if (data.removed) {
this.$toast.success(this.$getString('ToastCleanupAuthorsSuccess', [data.removed]))
} else {
this.$toast.info(this.$strings.ToastCleanupAuthorsNoAuthors)
}
})
.catch((error) => {
console.error('Failed to cleanup authors', error)
this.$toast.error(this.$strings.ToastCleanupAuthorsFailed)
})
.finally(() => {
this.$emit('update:processing', false)
})
}
},
mounted() {}
}
</script>