feat(Notify): set or reset default config (#5028)

This commit is contained in:
uxuip 2022-09-07 22:42:54 +08:00 committed by GitHub
parent 0d3694c9d7
commit 06c2457513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 };
};