mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-09-14 10:20:32 +00:00
61 lines
1.5 KiB
Vue
61 lines
1.5 KiB
Vue
<template>
|
|
<div class="card floating">
|
|
<div class="card-content">
|
|
<p>
|
|
{{ $t("prompts.discardEditorChanges") }}
|
|
</p>
|
|
</div>
|
|
<div class="card-action">
|
|
<button
|
|
class="button button--flat button--grey"
|
|
@click="closeHovers"
|
|
:aria-label="$t('buttons.cancel')"
|
|
:title="$t('buttons.cancel')"
|
|
tabindex="3"
|
|
>
|
|
{{ $t("buttons.cancel") }}
|
|
</button>
|
|
<button
|
|
class="button button--flat button--blue"
|
|
@click="saveAndClose"
|
|
:aria-label="$t('buttons.saveChanges')"
|
|
:title="$t('buttons.saveChanges')"
|
|
tabindex="1"
|
|
>
|
|
{{ $t("buttons.saveChanges") }}
|
|
</button>
|
|
<button
|
|
id="focus-prompt"
|
|
@click="currentPrompt.confirm"
|
|
class="button button--flat button--red"
|
|
:aria-label="$t('buttons.discardChanges')"
|
|
:title="$t('buttons.discardChanges')"
|
|
tabindex="2"
|
|
>
|
|
{{ $t("buttons.discardChanges") }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapActions } from "pinia";
|
|
import { useLayoutStore } from "@/stores/layout";
|
|
|
|
export default {
|
|
name: "discardEditorChanges",
|
|
computed: {
|
|
...mapState(useLayoutStore, ["currentPrompt"]),
|
|
},
|
|
methods: {
|
|
...mapActions(useLayoutStore, ["closeHovers"]),
|
|
saveAndClose() {
|
|
if (this.currentPrompt?.saveAction) {
|
|
this.currentPrompt.saveAction();
|
|
}
|
|
this.closeHovers();
|
|
},
|
|
},
|
|
};
|
|
</script>
|