From 06c2457513d3cd763d171af15a335216c9a48e5d Mon Sep 17 00:00:00 2001 From: uxuip <110730129+uxuip@users.noreply.github.com> Date: Wed, 7 Sep 2022 22:42:54 +0800 Subject: [PATCH] feat(Notify): set or reset default config (#5028) --- packages/notify/notify.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/notify/notify.ts b/packages/notify/notify.ts index 1c2bf9e4..97902821 100644 --- a/packages/notify/notify.ts +++ b/packages/notify/notify.ts @@ -31,6 +31,8 @@ const defaultOptions: NotifyOptions = { onClose: () => {}, }; +let currentOptions: NotifyOptions = { ...defaultOptions }; + function parseOptions( message?: NotifyOptions | string ): Partial { @@ -47,7 +49,7 @@ function getContext() { } export default function Notify(options: NotifyOptions | string) { - options = { ...defaultOptions, ...parseOptions(options) }; + options = { ...currentOptions, ...parseOptions(options) }; const context = options.context || getContext(); const notify = context.selectComponent(options.selector); @@ -74,3 +76,11 @@ Notify.clear = function (options?: NotifyOptions) { notify.hide(); } }; + +Notify.setDefaultOptions = (options: NotifyOptions) => { + Object.assign(currentOptions, options); +}; + +Notify.resetDefaultOptions = () => { + currentOptions = { ...defaultOptions }; +};