mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Toast): ssr error (#8214)
This commit is contained in:
parent
f746775a0d
commit
c054164ba6
@ -1,5 +1,5 @@
|
||||
import { ref, App, TeleportProps, getCurrentInstance } from 'vue';
|
||||
import { isObject, inBrowser } from '../utils';
|
||||
import { isObject, inBrowser, ComponentInstance } from '../utils';
|
||||
import { mountComponent, usePopupState } from '../utils/mount-component';
|
||||
import VanToast, { ToastType, ToastPosition } from './Toast';
|
||||
import type { LoadingType } from '../loading';
|
||||
@ -47,8 +47,7 @@ const defaultOptions: ToastOptions = {
|
||||
closeOnClickOverlay: false,
|
||||
};
|
||||
|
||||
// TODO remove any
|
||||
let queue: any[] = [];
|
||||
let queue: ComponentInstance[] = [];
|
||||
let allowMultiple = false;
|
||||
let currentOptions = { ...defaultOptions };
|
||||
|
||||
@ -104,11 +103,6 @@ function createInstance() {
|
||||
}
|
||||
|
||||
function getInstance() {
|
||||
/* istanbul ignore if */
|
||||
if (!inBrowser) {
|
||||
return {};
|
||||
}
|
||||
|
||||
if (!queue.length || allowMultiple) {
|
||||
const instance = createInstance();
|
||||
queue.push(instance);
|
||||
@ -118,6 +112,10 @@ function getInstance() {
|
||||
}
|
||||
|
||||
function Toast(options: string | ToastOptions = {}) {
|
||||
if (!inBrowser) {
|
||||
return {} as ComponentInstance;
|
||||
}
|
||||
|
||||
const toast = getInstance();
|
||||
const parsedOptions = parseOptions(options);
|
||||
|
||||
@ -150,7 +148,7 @@ Toast.clear = (all?: boolean) => {
|
||||
} else if (!allowMultiple) {
|
||||
queue[0].clear();
|
||||
} else {
|
||||
queue.shift().clear();
|
||||
queue.shift()!.clear();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user