breaking change(Dialog): adjust before-close usage

This commit is contained in:
chenjiahan 2020-09-06 10:16:54 +08:00
parent c9f0f11028
commit 21c30cbbf8
6 changed files with 49 additions and 34 deletions

View File

@ -171,6 +171,10 @@ Vue 3.0 中增加了 `Teleport` 组件,提供将组件渲染到任意 DOM 位
- 蓝色按钮对应的类型由 `info` 调整为 `primary`
- 绿色按钮对应的类型由 `primary` 调整为 `success`
#### Dialog
- `before-close` 属性用法调整,不再传入 done 函数,而是通过返回 Promise 来控制
#### Picker
- 移除 change 事件的第一个参数picker 实例)

View File

@ -1,6 +1,7 @@
import { reactive } from 'vue';
// Utils
import { callInterceptor } from '../utils/interceptor';
import { createNamespace, addUnit, pick } from '../utils';
import { BORDER_TOP, BORDER_LEFT } from '../utils/constant';
@ -82,11 +83,16 @@ export default createComponent({
if (props.beforeClose) {
loading[action] = true;
props.beforeClose(action, (result) => {
if (result !== false && loading[action]) {
callInterceptor({
interceptor: props.beforeClose,
args: [action],
done() {
close(action);
}
loading[action] = false;
loading[action] = false;
},
canceled() {
loading[action] = false;
},
});
} else {
close(action);

View File

@ -72,13 +72,12 @@ Dialog.alert({
### Asnyc Close
```js
function beforeClose(action, done) {
if (action === 'confirm') {
setTimeout(done, 1000);
} else {
done();
}
}
const beforeClose = (action, done) =>
new Promsie((resolve) => {
setTimeout(() => {
resolve(action === 'confirm');
}, 1000);
});
Dialog.confirm({
title: 'Title',
@ -185,7 +184,7 @@ export default {
| lazy-render | Whether to lazy render util appeared | _boolean_ | `true` |
| lock-scroll | Whether to lock background scroll | _boolean_ | `true` |
| allow-html `v2.8.7` | Whether to allow HTML rendering in message | _boolean_ | `true` |
| before-close | Callback before close,<br>call done() to close dialog,<br>call done(false) to cancel loading | (action: string, done: Function) => void | - |
| before-close | Callback before close | _(action) => boolean \| Promise_ | - |
| transition | Transition, equivalent to `name` prop of [transtion](https://vuejs.org/v2/api/#transition) | _string_ | - |
| teleport | Return the mount node for Dialog | _string \| Element_ | - |

View File

@ -100,13 +100,17 @@ Dialog.alert({
通过 `beforeClose` 属性可以传入一个回调函数,在弹窗关闭前进行特定操作。
```js
function beforeClose(action, done) {
if (action === 'confirm') {
setTimeout(done, 1000);
} else {
done();
}
}
const beforeClose = (action, done) =>
new Promsie((resolve) => {
setTimeout(() => {
if (action === 'confirm') {
resolve(true);
} else {
// 拦截取消操作
resolve(false);
}
}, 1000);
});
Dialog.confirm({
title: '标题',
@ -217,7 +221,7 @@ export default {
| lazy-render | 是否在显示弹层时才渲染节点 | _boolean_ | `true` |
| lock-scroll | 是否锁定背景滚动 | _boolean_ | `true` |
| allow-html `v2.8.7` | 是否允许 message 内容中渲染 HTML | _boolean_ | `true` |
| before-close | 关闭前的回调函数,<br>调用 done() 后关闭弹窗,<br>调用 done(false) 阻止弹窗关闭 | _(action, done) => void_ | - |
| before-close | 关闭前的回调函数,返回 `false` 可阻止关闭,支持返回 Promise | _(action) => boolean \| Promise_ | - |
| transition | 动画类名,等价于 [transtion](https://cn.vuejs.org/v2/api/index.html#transition) 的`name`属性 | _string_ | - |
| teleport | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | _string \| Element_ | - |

View File

@ -11,8 +11,8 @@
<van-cell is-link :title="t('alert2')" @click="onClickRound2" />
</demo-block>
<demo-block card :title="t('asyncClose')">
<van-cell is-link :title="t('asyncClose')" @click="onClickAsyncClose" />
<demo-block card :title="t('beforeClose')">
<van-cell is-link :title="t('beforeClose')" @click="onClickBeforeClose" />
</demo-block>
<demo-block card :title="t('componentCall')">
@ -36,7 +36,7 @@ export default {
alert1: '提示弹窗',
alert2: '提示弹窗(无标题)',
confirm: '确认弹窗',
asyncClose: '异步关闭',
beforeClose: '异步关闭',
roundButton: '圆角按钮样式',
componentCall: '组件调用',
content: '代码是写出来给人看的,附带能在机器上运行',
@ -45,7 +45,7 @@ export default {
alert1: 'Alert',
alert2: 'Alert without title',
confirm: 'Confirm dialog',
asyncClose: 'Async Close',
beforeClose: 'Async Close',
roundButton: 'Round Button Style',
componentCall: 'Component Call',
},
@ -95,14 +95,11 @@ export default {
});
},
onClickAsyncClose() {
function beforeClose(action, done) {
if (action === 'confirm') {
setTimeout(done, 1000);
} else {
done();
}
}
onClickBeforeClose() {
const beforeClose = (action) =>
new Promise((resolve) => {
setTimeout(() => resolve(action === 'confirm'), 1000);
});
this.$dialog.confirm({
title: this.t('title'),

View File

@ -2,10 +2,11 @@ import { isPromise, noop } from '.';
export function callInterceptor(options: {
interceptor?: (...args: any[]) => Promise<boolean> | boolean;
done: () => void;
args: any[];
done: () => void;
canceled?: () => void;
}) {
const { interceptor, args, done } = options;
const { interceptor, args, done, canceled } = options;
if (interceptor) {
const returnVal = interceptor(...args);
@ -15,11 +16,15 @@ export function callInterceptor(options: {
.then((value) => {
if (value) {
done();
} else if (canceled) {
canceled();
}
})
.catch(noop);
} else if (returnVal) {
done();
} else if (canceled) {
canceled();
}
} else {
done();