mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
feat(toast): option context support function (#5022)
This commit is contained in:
parent
06c2457513
commit
8220552f66
@ -1,15 +1,14 @@
|
||||
import { isObj } from '../common/validator';
|
||||
|
||||
type ToastMessage = string | number;
|
||||
type ToastContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance
|
||||
|
||||
interface ToastOptions {
|
||||
show?: boolean;
|
||||
type?: string;
|
||||
mask?: boolean;
|
||||
zIndex?: number;
|
||||
context?:
|
||||
| WechatMiniprogram.Component.TrivialInstance
|
||||
| WechatMiniprogram.Page.TrivialInstance;
|
||||
context?: () => ToastContext | ToastContext;
|
||||
position?: string;
|
||||
duration?: number;
|
||||
selector?: string;
|
||||
@ -50,7 +49,7 @@ function Toast(toastOptions: ToastOptions | ToastMessage) {
|
||||
...parseOptions(toastOptions),
|
||||
} as ToastOptions;
|
||||
|
||||
const context = options.context || getContext();
|
||||
const context = (typeof options.context === 'function' ? options.context() : options.context) || getContext();
|
||||
const toast = context.selectComponent(options.selector as string);
|
||||
|
||||
if (!toast) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user