diff --git a/dist/notify/notify.d.ts b/dist/notify/notify.d.ts index fea8e22d..671195a5 100644 --- a/dist/notify/notify.d.ts +++ b/dist/notify/notify.d.ts @@ -12,5 +12,8 @@ interface NotifyOptions { onOpened?: () => void; onClose?: () => void; } -export default function Notify(options: NotifyOptions | string): void; -export {}; +declare function Notify(options: NotifyOptions | string): any; +declare namespace Notify { + var clear: (options?: NotifyOptions) => void; +} +export default Notify; diff --git a/dist/notify/notify.js b/dist/notify/notify.js index 704e037e..140690b6 100644 --- a/dist/notify/notify.js +++ b/dist/notify/notify.js @@ -27,8 +27,15 @@ export default function Notify(options) { if (notify) { notify.set(options); notify.show(); + return notify; } - else { - console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确'); - } + console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确'); } +Notify.clear = function (options) { + options = Object.assign({}, defaultOptions, parseOptions(options)); + const context = options.context || getContext(); + const notify = context.selectComponent(options.selector); + if (notify) { + notify.hide(); + } +}; diff --git a/lib/notify/notify.js b/lib/notify/notify.js index 96118bc2..285ee85e 100644 --- a/lib/notify/notify.js +++ b/lib/notify/notify.js @@ -29,9 +29,16 @@ function Notify(options) { if (notify) { notify.set(options); notify.show(); + return notify; } - else { - console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确'); - } + console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确'); } exports.default = Notify; +Notify.clear = function (options) { + options = Object.assign({}, defaultOptions, parseOptions(options)); + var context = options.context || getContext(); + var notify = context.selectComponent(options.selector); + if (notify) { + notify.hide(); + } +};