mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
35 lines
749 B
TypeScript
35 lines
749 B
TypeScript
import { computed, ref } from "@nuxtjs/composition-api";
|
|
import NetworksMismatchDialog from "~/components/modal/NetworksMismatchDialog.vue";
|
|
|
|
const modal = ref(null);
|
|
const props = ref({});
|
|
|
|
export function useModal() {
|
|
function showNetworksMismatchDialog() {
|
|
modal.value = NetworksMismatchDialog;
|
|
}
|
|
|
|
function close() {
|
|
//@ts-ignore
|
|
if (props.value?.persistent) return;
|
|
modal.value = null;
|
|
props.value = null;
|
|
}
|
|
|
|
function closePersistent() {
|
|
modal.value = null;
|
|
props.value = null;
|
|
}
|
|
|
|
const isShown = computed(() => !!modal.value);
|
|
|
|
return {
|
|
showNetworksMismatchDialog,
|
|
close,
|
|
closePersistent,
|
|
isShown,
|
|
modal: computed(() => modal.value),
|
|
props: computed(() => props.value)
|
|
};
|
|
}
|