mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
* fix: release workflow * feat: move mostly to internal tasks system * feat: migrate object clean to new task system * fix: release not getting good base version * chore: set version v0.3.0 * chore: style * feat: basic task concurrency * feat: temp pages to fill in page links * feat: inital i18n support * feat: localize store page * chore: style * fix: weblate doesn't like multifile thing * fix: update nuxt * feat: improved error logging * fix: using old task api * feat: basic translation docs * feat: add i18n eslint plugin * feat: translate store and auth pages * feat: more translation progress * feat: admin dash i18n progress * feat: enable update check by default in prod * fix: using wrong i18n keys * fix: crash in library sources page * feat: finish i18n work * fix: missing i18n translations * feat: use twemoji for emojis * feat: sanatize object ids * fix: EmojiText's alt text * fix: UserWidget not using links * feat: cache and auth for emoji api * fix: add more missing translations
79 lines
2.1 KiB
Vue
79 lines
2.1 KiB
Vue
<template>
|
|
<ModalTemplate :model-value="!!collection">
|
|
<template #default>
|
|
<div>
|
|
<DialogTitle
|
|
as="h3"
|
|
class="text-lg font-bold font-display text-zinc-100"
|
|
>
|
|
{{ $t("library.collection.delete") }}
|
|
</DialogTitle>
|
|
<p class="mt-1 text-sm text-zinc-400">
|
|
{{ $t("common.deleteConfirm", [collection?.name]) }}
|
|
</p>
|
|
<p class="mt-2 text-sm font-bold text-red-500">
|
|
{{ $t("common.cannotUndo") }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
<template #buttons>
|
|
<LoadingButton
|
|
:loading="deleteLoading"
|
|
class="bg-red-600 text-white hover:bg-red-500"
|
|
@click="() => deleteCollection()"
|
|
>
|
|
{{ $t("delete") }}
|
|
</LoadingButton>
|
|
<button
|
|
class="inline-flex items-center rounded-md bg-zinc-800 px-3 py-2 text-sm font-semibold font-display text-white hover:bg-zinc-700"
|
|
@click="() => (collection = undefined)"
|
|
>
|
|
{{ $t("cancel") }}
|
|
</button>
|
|
</template>
|
|
</ModalTemplate>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { Collection } from "~/prisma/client";
|
|
import { DialogTitle } from "@headlessui/vue";
|
|
|
|
const collection = defineModel<Collection | undefined>();
|
|
const deleteLoading = ref(false);
|
|
|
|
const collections = await useCollections();
|
|
const { t } = useI18n();
|
|
|
|
async function deleteCollection() {
|
|
try {
|
|
if (!collection.value) return;
|
|
|
|
deleteLoading.value = true;
|
|
await $dropFetch(`/api/v1/collection/${collection.value.id}`, {
|
|
// @ts-expect-error not documented
|
|
method: "DELETE",
|
|
});
|
|
const index = collections.value.findIndex(
|
|
(e) => e.id == collection.value?.id,
|
|
);
|
|
collections.value.splice(index, 1);
|
|
|
|
collection.value = undefined;
|
|
} catch (e) {
|
|
createModal(
|
|
ModalType.Notification,
|
|
{
|
|
title: t("errors.library.add.title"),
|
|
description: t("errors.library.add.desc", [
|
|
// @ts-expect-error attempt to display statusMessage on error
|
|
e?.statusMessage ?? t("errors.unknown"),
|
|
]),
|
|
},
|
|
(_, c) => c(),
|
|
);
|
|
} finally {
|
|
deleteLoading.value = false;
|
|
}
|
|
}
|
|
</script>
|