mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Notify: add context prop (#914)
This commit is contained in:
parent
1fb41206e0
commit
f2527d75de
@ -49,6 +49,8 @@ const Dialog: Dialog = options => {
|
||||
...options
|
||||
});
|
||||
queue.push(dialog);
|
||||
} else {
|
||||
console.warn('未找到 van-dialog 节点,请确认 selector 及 context 是否正确');
|
||||
}
|
||||
});
|
||||
};
|
||||
|
@ -48,6 +48,7 @@ Notify({
|
||||
| selector | 自定义选择器 | `String` | `van-notify` |
|
||||
| color | 字体颜色 | `String` | `#fff` | |
|
||||
| backgroundColor | 背景色 | `String` | `#f44` |
|
||||
| context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | `Object` | 当前页面 |
|
||||
|
||||
### 更新日志
|
||||
|
||||
|
@ -3,7 +3,8 @@ import { isObj } from '../common/utils';
|
||||
type NotifyOptions = {
|
||||
selector?: string;
|
||||
duration?: number;
|
||||
}
|
||||
context?: any;
|
||||
};
|
||||
|
||||
const defaultOptions = {
|
||||
selector: '#van-notify',
|
||||
@ -14,17 +15,22 @@ function parseOptions(text) {
|
||||
return isObj(text) ? text : { text };
|
||||
}
|
||||
|
||||
export default function Notify(options: NotifyOptions = {}) {
|
||||
function getContext() {
|
||||
const pages = getCurrentPages();
|
||||
const ctx = pages[pages.length - 1];
|
||||
return pages[pages.length - 1];
|
||||
}
|
||||
|
||||
export default function Notify(options: NotifyOptions = {}) {
|
||||
options = Object.assign({}, defaultOptions, parseOptions(options));
|
||||
|
||||
const el = ctx.selectComponent(options.selector);
|
||||
const context = options.context || getContext();
|
||||
const notify = context.selectComponent(options.selector);
|
||||
delete options.selector;
|
||||
|
||||
if (el) {
|
||||
el.setData(options);
|
||||
el.show();
|
||||
if (notify) {
|
||||
notify.setData(options);
|
||||
notify.show();
|
||||
} else {
|
||||
console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user