mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +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';
|
import { isObj } from '../common/validator';
|
||||||
|
|
||||||
type ToastMessage = string | number;
|
type ToastMessage = string | number;
|
||||||
|
type ToastContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance
|
||||||
|
|
||||||
interface ToastOptions {
|
interface ToastOptions {
|
||||||
show?: boolean;
|
show?: boolean;
|
||||||
type?: string;
|
type?: string;
|
||||||
mask?: boolean;
|
mask?: boolean;
|
||||||
zIndex?: number;
|
zIndex?: number;
|
||||||
context?:
|
context?: () => ToastContext | ToastContext;
|
||||||
| WechatMiniprogram.Component.TrivialInstance
|
|
||||||
| WechatMiniprogram.Page.TrivialInstance;
|
|
||||||
position?: string;
|
position?: string;
|
||||||
duration?: number;
|
duration?: number;
|
||||||
selector?: string;
|
selector?: string;
|
||||||
@ -50,7 +49,7 @@ function Toast(toastOptions: ToastOptions | ToastMessage) {
|
|||||||
...parseOptions(toastOptions),
|
...parseOptions(toastOptions),
|
||||||
} as 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);
|
const toast = context.selectComponent(options.selector as string);
|
||||||
|
|
||||||
if (!toast) {
|
if (!toast) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user