[improvement] Notify: add context prop (#914)

This commit is contained in:
neverland 2018-11-16 21:10:38 +08:00 committed by GitHub
parent 1fb41206e0
commit f2527d75de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 7 deletions

View File

@ -49,6 +49,8 @@ const Dialog: Dialog = options => {
...options
});
queue.push(dialog);
} else {
console.warn('未找到 van-dialog 节点,请确认 selector 及 context 是否正确');
}
});
};

View File

@ -48,6 +48,7 @@ Notify({
| selector | 自定义选择器 | `String` | `van-notify` |
| color | 字体颜色 | `String` | `#fff` | |
| backgroundColor | 背景色 | `String` | `#f44` |
| context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | `Object` | 当前页面 |
### 更新日志

View File

@ -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 是否正确');
}
}