forked from mirrors/homebox
2e82398e5c
* implement password score UI and functions * update strings tests to use `test`instead of `it` * update typing * refactor login/register UI+Logic * fix width on switches to properly display * fetch and store self in store * (WIP) unify card styles * update labels page * bump nuxt * use form area * use text area for description * unify confirm API * unify UI around pages * change header background height
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { UseConfirmDialogRevealResult, UseConfirmDialogReturn } from "@vueuse/core";
|
|
import { Ref } from "vue";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
type Store = UseConfirmDialogReturn<any, boolean, boolean> & {
|
|
text: Ref<string>;
|
|
setup: boolean;
|
|
open: (text: string) => Promise<UseConfirmDialogRevealResult<boolean, boolean>>;
|
|
};
|
|
|
|
const store: Partial<Store> = {
|
|
text: ref("Are you sure you want to delete this item? "),
|
|
setup: false,
|
|
};
|
|
|
|
/**
|
|
* This function is used to wrap the ModalConfirmation which is a "Singleton" component
|
|
* that is used to confirm actions. It's mounded once on the root of the page and reused
|
|
* for every confirmation action that is required.
|
|
*
|
|
* This is in an experimental phase of development and may have unknown or unexpected side effects.
|
|
*/
|
|
export function useConfirm(): Store {
|
|
if (!store.setup) {
|
|
store.setup = true;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const { isRevealed, reveal, confirm, cancel } = useConfirmDialog<any, boolean, boolean>();
|
|
store.isRevealed = isRevealed;
|
|
store.reveal = reveal;
|
|
store.confirm = confirm;
|
|
store.cancel = cancel;
|
|
}
|
|
|
|
async function openDialog(msg: string): Promise<UseConfirmDialogRevealResult<boolean, boolean>> {
|
|
store.text.value = msg;
|
|
return await store.reveal();
|
|
}
|
|
|
|
return {
|
|
...(store as Store),
|
|
open: openDialog,
|
|
};
|
|
}
|