mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Transition: overlay still show after closed (#1404)
fix #1377 + Transition: fix overlay still show after closed + Dialog: add new transition none
This commit is contained in:
parent
66679ef6a1
commit
12dbaa56ce
@ -39,6 +39,7 @@
|
|||||||
async-close
|
async-close
|
||||||
show="{{ show }}"
|
show="{{ show }}"
|
||||||
show-cancel-button
|
show-cancel-button
|
||||||
|
transition="fade"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
confirm-button-open-type="getUserInfo"
|
confirm-button-open-type="getUserInfo"
|
||||||
bind:getuserinfo="getUserInfo"
|
bind:getuserinfo="getUserInfo"
|
||||||
|
@ -140,7 +140,7 @@ Page({
|
|||||||
| closeOnClickOverlay | 点击蒙层时是否关闭弹窗 | `Boolean` | `false` |
|
| closeOnClickOverlay | 点击蒙层时是否关闭弹窗 | `Boolean` | `false` |
|
||||||
| asyncClose | 是否异步关闭弹窗,开启后需要手动控制弹窗的关闭 | `Boolean` | `false` |
|
| asyncClose | 是否异步关闭弹窗,开启后需要手动控制弹窗的关闭 | `Boolean` | `false` |
|
||||||
| context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | `Object` | 当前页面 |
|
| context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | `Object` | 当前页面 |
|
||||||
| transition | 动画名称,可选值为`fade` | `String` | `scale` |
|
| transition | 动画名称,可选值为`fade` `none` | `String` | `scale` |
|
||||||
| app-parameter | 打开 APP 时,向 APP 传递的参数 | `String` | - | `confirmButtonOpenType="launchApp"` |
|
| app-parameter | 打开 APP 时,向 APP 传递的参数 | `String` | - | `confirmButtonOpenType="launchApp"` |
|
||||||
| lang | 指定返回用户信息的语言,zh_CN 简体中文,<br>zh_TW 繁体中文,en 英文 | `String` | `en` | `confirmButtonOpenType="getUserInfo"` |
|
| lang | 指定返回用户信息的语言,zh_CN 简体中文,<br>zh_TW 繁体中文,en 英文 | `String` | `en` | `confirmButtonOpenType="getUserInfo"` |
|
||||||
| session-from | 会话来源 | `String` | - | `confirmButtonOpenType="contact"` |
|
| session-from | 会话来源 | `String` | - | `confirmButtonOpenType="contact"` |
|
||||||
@ -192,13 +192,3 @@ Page({
|
|||||||
| bind:getphonenumber | 获取用户手机号回调 | - |
|
| bind:getphonenumber | 获取用户手机号回调 | - |
|
||||||
| bind:error | 当使用开放能力时,发生错误的回调 | - |
|
| bind:error | 当使用开放能力时,发生错误的回调 | - |
|
||||||
| bind:opensetting | 在打开授权设置页后回调 | - |
|
| bind:opensetting | 在打开授权设置页后回调 | - |
|
||||||
|
|
||||||
### 更新日志
|
|
||||||
|
|
||||||
| 版本 | 类型 | 内容 |
|
|
||||||
|-----------|-----------|-----------|
|
|
||||||
| 0.3.0 | feature | 新增组件 |
|
|
||||||
| 0.3.2 | improvement | 新增弹出动画 |
|
|
||||||
| 0.3.2 | feature | 新增 z-index 属性 |
|
|
||||||
| 0.3.3 | bugfix | 修复 Promise 状态错误的问题 |
|
|
||||||
| 0.3.4 | feature | 支持 open-type 回调事件 |
|
|
||||||
|
@ -7,7 +7,7 @@ const getClassNames = (name: string) => ({
|
|||||||
'leave-to': `van-${name}-leave-to van-${name}-leave-active leave-to-class leave-active-class`
|
'leave-to': `van-${name}-leave-to van-${name}-leave-active leave-to-class leave-active-class`
|
||||||
});
|
});
|
||||||
|
|
||||||
const requestAnimationFrame = (cb: Function) => setTimeout(cb, 1000 / 60);
|
const nextTick = () => new Promise(resolve => setTimeout(resolve, 1000 / 30));
|
||||||
|
|
||||||
export const transition = function(showDefaultValue: boolean) {
|
export const transition = function(showDefaultValue: boolean) {
|
||||||
return Behavior({
|
return Behavior({
|
||||||
@ -61,38 +61,47 @@ export const transition = function(showDefaultValue: boolean) {
|
|||||||
show() {
|
show() {
|
||||||
const { classNames, duration } = this.data;
|
const { classNames, duration } = this.data;
|
||||||
|
|
||||||
this.set({
|
Promise.resolve()
|
||||||
inited: true,
|
.then(nextTick)
|
||||||
display: true,
|
.then(() =>
|
||||||
classes: classNames.enter,
|
this.set({
|
||||||
currentDuration: isObj(duration) ? duration.enter : duration
|
inited: true,
|
||||||
}).then(() => {
|
display: true,
|
||||||
requestAnimationFrame(() => {
|
classes: classNames.enter,
|
||||||
|
currentDuration: isObj(duration) ? duration.enter : duration
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.then(nextTick)
|
||||||
|
.then(() =>
|
||||||
this.set({
|
this.set({
|
||||||
classes: classNames['enter-to']
|
classes: classNames['enter-to']
|
||||||
});
|
})
|
||||||
});
|
);
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
leave() {
|
leave() {
|
||||||
const { classNames, duration } = this.data;
|
const { classNames, duration } = this.data;
|
||||||
|
|
||||||
this.set({
|
Promise.resolve()
|
||||||
classes: classNames.leave,
|
.then(nextTick)
|
||||||
currentDuration: isObj(duration) ? duration.leave : duration
|
.then(() =>
|
||||||
}).then(() => {
|
this.set({
|
||||||
requestAnimationFrame(() => {
|
classes: classNames.leave,
|
||||||
|
currentDuration: isObj(duration) ? duration.leave : duration
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.then(nextTick)
|
||||||
|
.then(() =>
|
||||||
this.set({
|
this.set({
|
||||||
classes: classNames['leave-to']
|
classes: classNames['leave-to']
|
||||||
});
|
})
|
||||||
});
|
);
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onTransitionEnd() {
|
onTransitionEnd() {
|
||||||
if (!this.data.show) {
|
if (!this.data.show) {
|
||||||
this.set({ display: false });
|
this.set({ display: false });
|
||||||
|
this.$emit('transitionEnd');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -116,3 +116,14 @@
|
|||||||
.van-right-leave-to {
|
.van-right-leave-to {
|
||||||
transform: translate3d(100%, -50%, 0);
|
transform: translate3d(100%, -50%, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.van-none-enter-active,
|
||||||
|
.van-none-leave-active {
|
||||||
|
transition-duration: 1ms !important;
|
||||||
|
transition-property: opacity;
|
||||||
|
}
|
||||||
|
|
||||||
|
.van-none-enter,
|
||||||
|
.van-none-leave-to {
|
||||||
|
opacity: 0.999;
|
||||||
|
}
|
||||||
|
@ -53,10 +53,6 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onTransitionEnd() {
|
|
||||||
!this.data.show && this.$emit('transitionEnd');
|
|
||||||
},
|
|
||||||
|
|
||||||
observeClass() {
|
observeClass() {
|
||||||
const { transition, position } = this.data;
|
const { transition, position } = this.data;
|
||||||
this.updateClasses(transition || position);
|
this.updateClasses(transition || position);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
show="{{ show }}"
|
show="{{ show }}"
|
||||||
z-index="{{ zIndex }}"
|
z-index="{{ zIndex }}"
|
||||||
custom-style="{{ overlayStyle }}"
|
custom-style="{{ overlayStyle }}"
|
||||||
duration="{{ duration }}"
|
duration="{{ transition === 'none' ? 1 : duration }}"
|
||||||
bind:click="onClickOverlay"
|
bind:click="onClickOverlay"
|
||||||
/>
|
/>
|
||||||
<view
|
<view
|
||||||
|
Loading…
x
Reference in New Issue
Block a user