feat: implement server-side cover dimension detection and update badge thresholds

This commit is contained in:
Tiberiu Ichim 2026-02-17 19:30:48 +02:00
parent 5bf60d5ae3
commit d0c09d04f1
16 changed files with 353 additions and 10 deletions

View file

@ -49,6 +49,18 @@
</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.LabelUpdateCoverDimensions }}</p>
<p class="max-w-sm text-sm pt-2 text-gray-300">{{ $strings.LabelUpdateCoverDimensionsHelp }}</p>
</div>
<div class="grow" />
<div>
<ui-btn @click.stop="updateCoverDimensionsClick">{{ $strings.ButtonUpdate }}</ui-btn>
</div>
</div>
</div>
</div>
</template>
@ -198,6 +210,34 @@ export default {
.finally(() => {
this.$emit('update:processing', false)
})
},
updateCoverDimensionsClick() {
const payload = {
message: this.$strings.MessageConfirmUpdateCoverDimensions,
persistent: true,
callback: (confirmed) => {
if (confirmed) {
this.updateCoverDimensions()
}
},
type: 'yesNo'
}
this.$store.commit('globals/setConfirmPrompt', payload)
},
updateCoverDimensions() {
this.$emit('update:processing', true)
this.$axios
.$post(`/api/libraries/${this.libraryId}/update-cover-dimensions`)
.then((data) => {
this.$toast.success(this.$getString('ToastUpdateCoverDimensionsSuccess', [data.updated]))
})
.catch((error) => {
console.error('Failed to update cover dimensions', error)
this.$toast.error(this.$strings.ToastUpdateCoverDimensionsFailed)
})
.finally(() => {
this.$emit('update:processing', false)
})
}
},
mounted() {}