2022-07-26 14:46:02 +00:00
|
|
|
import { Ref, ref } from 'vue'
|
|
|
|
import { noop } from '@/utils'
|
2022-10-08 10:54:25 +00:00
|
|
|
|
2022-07-26 14:46:02 +00:00
|
|
|
import MessageToaster from '@/components/ui/MessageToaster.vue'
|
|
|
|
import DialogBox from '@/components/ui/DialogBox.vue'
|
|
|
|
|
2022-10-10 07:00:30 +00:00
|
|
|
export const MessageToasterStub: Ref<InstanceType<typeof MessageToaster>> = ref({
|
2022-07-26 14:46:02 +00:00
|
|
|
info: noop,
|
|
|
|
success: noop,
|
|
|
|
warning: noop,
|
|
|
|
error: noop
|
|
|
|
})
|
|
|
|
|
2022-10-10 07:00:30 +00:00
|
|
|
export const DialogBoxStub: Ref<InstanceType<typeof DialogBox>> = ref({
|
2022-07-26 14:46:02 +00:00
|
|
|
info: noop,
|
|
|
|
success: noop,
|
|
|
|
warning: noop,
|
|
|
|
error: noop,
|
|
|
|
confirm: noop
|
|
|
|
})
|