mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 11:22:10 +00:00

* Update dependencies and remove typescript version pinning (fixed upstream) * Fix esling warnings (disabled any and script lang checks) Rewrote clipboard copy (Fixes #3407) Run prettier --------- Co-authored-by: Oleg Lobanov <oleg@lobanov.me>
94 lines
2.3 KiB
Vue
94 lines
2.3 KiB
Vue
<template>
|
|
<div class="card floating">
|
|
<div class="card-content">
|
|
<p v-if="!this.isListing || selectedCount === 1">
|
|
{{ $t("prompts.deleteMessageSingle") }}
|
|
</p>
|
|
<p v-else>
|
|
{{ $t("prompts.deleteMessageMultiple", { count: selectedCount }) }}
|
|
</p>
|
|
</div>
|
|
<div class="card-action">
|
|
<button
|
|
@click="closeHovers"
|
|
class="button button--flat button--grey"
|
|
:aria-label="$t('buttons.cancel')"
|
|
:title="$t('buttons.cancel')"
|
|
tabindex="2"
|
|
>
|
|
{{ $t("buttons.cancel") }}
|
|
</button>
|
|
<button
|
|
id="focus-prompt"
|
|
@click="submit"
|
|
class="button button--flat button--red"
|
|
:aria-label="$t('buttons.delete')"
|
|
:title="$t('buttons.delete')"
|
|
tabindex="1"
|
|
>
|
|
{{ $t("buttons.delete") }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapActions, mapState, mapWritableState } from "pinia";
|
|
import { files as api } from "@/api";
|
|
import buttons from "@/utils/buttons";
|
|
import { useFileStore } from "@/stores/file";
|
|
import { useLayoutStore } from "@/stores/layout";
|
|
|
|
export default {
|
|
name: "delete",
|
|
inject: ["$showError"],
|
|
computed: {
|
|
...mapState(useFileStore, [
|
|
"isListing",
|
|
"selectedCount",
|
|
"req",
|
|
"selected",
|
|
"currentPrompt",
|
|
]),
|
|
...mapWritableState(useFileStore, ["reload"]),
|
|
},
|
|
methods: {
|
|
...mapActions(useLayoutStore, ["closeHovers"]),
|
|
submit: async function () {
|
|
buttons.loading("delete");
|
|
|
|
window.sessionStorage.setItem("modified", "true");
|
|
try {
|
|
if (!this.isListing) {
|
|
await api.remove(this.$route.path);
|
|
buttons.success("delete");
|
|
|
|
this.currentPrompt?.confirm();
|
|
this.closeHovers();
|
|
return;
|
|
}
|
|
|
|
this.closeHovers();
|
|
|
|
if (this.selectedCount === 0) {
|
|
return;
|
|
}
|
|
|
|
const promises = [];
|
|
for (const index of this.selected) {
|
|
promises.push(api.remove(this.req.items[index].url));
|
|
}
|
|
|
|
await Promise.all(promises);
|
|
buttons.success("delete");
|
|
this.reload = true;
|
|
} catch (e) {
|
|
buttons.done("delete");
|
|
this.$showError(e);
|
|
if (this.isListing) this.reload = true;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|