mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Notify): set or reset default config (#5028)
This commit is contained in:
parent
0d3694c9d7
commit
06c2457513
@ -31,6 +31,8 @@ const defaultOptions: NotifyOptions = {
|
|||||||
onClose: () => {},
|
onClose: () => {},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let currentOptions: NotifyOptions = { ...defaultOptions };
|
||||||
|
|
||||||
function parseOptions(
|
function parseOptions(
|
||||||
message?: NotifyOptions | string
|
message?: NotifyOptions | string
|
||||||
): Partial<NotifyOptions> {
|
): Partial<NotifyOptions> {
|
||||||
@ -47,7 +49,7 @@ function getContext() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default function Notify(options: NotifyOptions | string) {
|
export default function Notify(options: NotifyOptions | string) {
|
||||||
options = { ...defaultOptions, ...parseOptions(options) };
|
options = { ...currentOptions, ...parseOptions(options) };
|
||||||
|
|
||||||
const context = options.context || getContext();
|
const context = options.context || getContext();
|
||||||
const notify = context.selectComponent(options.selector);
|
const notify = context.selectComponent(options.selector);
|
||||||
@ -74,3 +76,11 @@ Notify.clear = function (options?: NotifyOptions) {
|
|||||||
notify.hide();
|
notify.hide();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Notify.setDefaultOptions = (options: NotifyOptions) => {
|
||||||
|
Object.assign(currentOptions, options);
|
||||||
|
};
|
||||||
|
|
||||||
|
Notify.resetDefaultOptions = () => {
|
||||||
|
currentOptions = { ...defaultOptions };
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user