build: compile 1.4.0

This commit is contained in:
rex 2020-07-17 16:32:52 +08:00
parent 85fd5e68e8
commit 16cd540578
8 changed files with 71 additions and 80 deletions

View File

@ -41,10 +41,7 @@ VantComponent({
}, },
}, },
allowSameDay: Boolean, allowSameDay: Boolean,
confirmDisabledText: { confirmDisabledText: String,
type: String,
value: '确定',
},
type: { type: {
type: String, type: String,
value: 'single', value: 'single',

View File

@ -1,5 +1,4 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
const nextTick = () => new Promise((resolve) => setTimeout(resolve, 20));
VantComponent({ VantComponent({
classes: ['title-class', 'content-class'], classes: ['title-class', 'content-class'],
relation: { relation: {
@ -25,20 +24,17 @@ VantComponent({
}, },
}, },
data: { data: {
contentHeight: 0,
expanded: false, expanded: false,
transition: false, },
created() {
this.animation = wx.createAnimation({
duration: 0,
timingFunction: 'ease-in-out',
});
}, },
mounted() { mounted() {
this.updateExpanded() this.updateExpanded();
.then(nextTick) this.inited = true;
.then(() => {
const data = { transition: true };
if (this.data.expanded) {
data.contentHeight = 'auto';
}
this.setData(data);
});
}, },
methods: { methods: {
updateExpanded() { updateExpanded() {
@ -53,25 +49,37 @@ VantComponent({
const expanded = accordion const expanded = accordion
? value === currentName ? value === currentName
: (value || []).some((name) => name === currentName); : (value || []).some((name) => name === currentName);
const stack = [];
if (expanded !== this.data.expanded) { if (expanded !== this.data.expanded) {
stack.push(this.updateStyle(expanded)); this.updateStyle(expanded);
} }
stack.push(this.set({ index, expanded })); this.setData({ index, expanded });
return Promise.all(stack);
}, },
updateStyle(expanded) { updateStyle(expanded) {
return this.getRect('.van-collapse-item__content') const { inited } = this;
this.getRect('.van-collapse-item__content')
.then((rect) => rect.height) .then((rect) => rect.height)
.then((height) => { .then((height) => {
const { animation } = this;
if (expanded) { if (expanded) {
return this.set({ animation
contentHeight: height ? `${height}px` : 'auto', .height(height)
.top(1)
.step({
duration: inited ? 300 : 1,
})
.height('auto')
.step();
this.setData({
animation: animation.export(),
}); });
return;
} }
return this.set({ contentHeight: `${height}px` }) animation.height(height).top(0).step({ duration: 1 }).height(0).step({
.then(nextTick) duration: 300,
.then(() => this.set({ contentHeight: 0 })); });
this.setData({
animation: animation.export(),
});
}); });
}, },
onClick() { onClick() {
@ -83,12 +91,5 @@ VantComponent({
const currentName = name == null ? index : name; const currentName = name == null ? index : name;
this.parent.switch(currentName, !expanded); this.parent.switch(currentName, !expanded);
}, },
onTransitionEnd() {
if (this.data.expanded) {
this.setData({
contentHeight: 'auto',
});
}
},
}, },
}); });

View File

@ -31,9 +31,9 @@
/> />
</van-cell> </van-cell>
<view <view
class="{{ utils.bem('collapse-item__wrapper', { transition }) }}" class="{{ utils.bem('collapse-item__wrapper') }}"
style="height: {{ contentHeight }};" style="height: 0;"
bind:transitionend="onTransitionEnd" animation="{{ animation }}"
> >
<view <view
class="van-collapse-item__content content-class" class="van-collapse-item__content content-class"

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;transition:-webkit-transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s),-webkit-transform var(--collapse-item-transition-duration,.3s)}.van-collapse-item__title--expanded .van-cell__right-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c8c9cc!important;color:var(--collapse-item-title-disabled-color,#c8c9cc)!important}.van-collapse-item__title--disabled .van-cell--hover{background-color:#fff!important;background-color:var(--white,#fff)!important}.van-collapse-item__wrapper{overflow:hidden}.van-collapse-item__wrapper--transition{transition:height .3s ease-in-out}.van-collapse-item__content{padding:15px;padding:var(--collapse-item-content-padding,15px);color:#969799;color:var(--collapse-item-content-text-color,#969799);font-size:13px;font-size:var(--collapse-item-content-font-size,13px);line-height:1.5;line-height:var(--collapse-item-content-line-height,1.5);background-color:#fff;background-color:var(--collapse-item-content-background-color,#fff)} @import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;transition:-webkit-transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s),-webkit-transform var(--collapse-item-transition-duration,.3s)}.van-collapse-item__title--expanded .van-cell__right-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c8c9cc!important;color:var(--collapse-item-title-disabled-color,#c8c9cc)!important}.van-collapse-item__title--disabled .van-cell--hover{background-color:#fff!important;background-color:var(--white,#fff)!important}.van-collapse-item__wrapper{overflow:hidden}.van-collapse-item__content{padding:15px;padding:var(--collapse-item-content-padding,15px);color:#969799;color:var(--collapse-item-content-text-color,#969799);font-size:13px;font-size:var(--collapse-item-content-font-size,13px);line-height:1.5;line-height:var(--collapse-item-content-line-height,1.5);background-color:#fff;background-color:var(--collapse-item-content-background-color,#fff)}

View File

@ -203,8 +203,8 @@ VantComponent({
return `${hour}:${minute}`; return `${hour}:${minute}`;
} }
// date type // date type
value = Math.max(new Date(value).getTime(), data.minDate); value = Math.max(value, data.minDate);
value = Math.min(new Date(value).getTime(), data.maxDate); value = Math.min(value, data.maxDate);
return value; return value;
}, },
getBoundary(type, innerValue) { getBoundary(type, innerValue) {

View File

@ -1,11 +1,6 @@
'use strict'; 'use strict';
Object.defineProperty(exports, '__esModule', { value: true }); Object.defineProperty(exports, '__esModule', { value: true });
var component_1 = require('../common/component'); var component_1 = require('../common/component');
var nextTick = function () {
return new Promise(function (resolve) {
return setTimeout(resolve, 20);
});
};
component_1.VantComponent({ component_1.VantComponent({
classes: ['title-class', 'content-class'], classes: ['title-class', 'content-class'],
relation: { relation: {
@ -31,21 +26,17 @@ component_1.VantComponent({
}, },
}, },
data: { data: {
contentHeight: 0,
expanded: false, expanded: false,
transition: false, },
created: function () {
this.animation = wx.createAnimation({
duration: 0,
timingFunction: 'ease-in-out',
});
}, },
mounted: function () { mounted: function () {
var _this = this; this.updateExpanded();
this.updateExpanded() this.inited = true;
.then(nextTick)
.then(function () {
var data = { transition: true };
if (_this.data.expanded) {
data.contentHeight = 'auto';
}
_this.setData(data);
});
}, },
methods: { methods: {
updateExpanded: function () { updateExpanded: function () {
@ -65,31 +56,40 @@ component_1.VantComponent({
: (value || []).some(function (name) { : (value || []).some(function (name) {
return name === currentName; return name === currentName;
}); });
var stack = [];
if (expanded !== this.data.expanded) { if (expanded !== this.data.expanded) {
stack.push(this.updateStyle(expanded)); this.updateStyle(expanded);
} }
stack.push(this.set({ index: index, expanded: expanded })); this.setData({ index: index, expanded: expanded });
return Promise.all(stack);
}, },
updateStyle: function (expanded) { updateStyle: function (expanded) {
var _this = this; var _this = this;
return this.getRect('.van-collapse-item__content') var inited = this.inited;
this.getRect('.van-collapse-item__content')
.then(function (rect) { .then(function (rect) {
return rect.height; return rect.height;
}) })
.then(function (height) { .then(function (height) {
var animation = _this.animation;
if (expanded) { if (expanded) {
return _this.set({ animation
contentHeight: height ? height + 'px' : 'auto', .height(height)
.top(1)
.step({
duration: inited ? 300 : 1,
})
.height('auto')
.step();
_this.setData({
animation: animation.export(),
}); });
return;
} }
return _this animation.height(height).top(0).step({ duration: 1 }).height(0).step({
.set({ contentHeight: height + 'px' }) duration: 300,
.then(nextTick) });
.then(function () { _this.setData({
return _this.set({ contentHeight: 0 }); animation: animation.export(),
}); });
}); });
}, },
onClick: function () { onClick: function () {
@ -103,12 +103,5 @@ component_1.VantComponent({
var currentName = name == null ? index : name; var currentName = name == null ? index : name;
this.parent.switch(currentName, !expanded); this.parent.switch(currentName, !expanded);
}, },
onTransitionEnd: function () {
if (this.data.expanded) {
this.setData({
contentHeight: 'auto',
});
}
},
}, },
}); });

View File

@ -31,9 +31,9 @@
/> />
</van-cell> </van-cell>
<view <view
class="{{ utils.bem('collapse-item__wrapper', { transition }) }}" class="{{ utils.bem('collapse-item__wrapper') }}"
style="height: {{ contentHeight }};" style="height: 0;"
bind:transitionend="onTransitionEnd" animation="{{ animation }}"
> >
<view <view
class="van-collapse-item__content content-class" class="van-collapse-item__content content-class"

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;transition:-webkit-transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s),-webkit-transform var(--collapse-item-transition-duration,.3s)}.van-collapse-item__title--expanded .van-cell__right-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c8c9cc!important;color:var(--collapse-item-title-disabled-color,#c8c9cc)!important}.van-collapse-item__title--disabled .van-cell--hover{background-color:#fff!important;background-color:var(--white,#fff)!important}.van-collapse-item__wrapper{overflow:hidden}.van-collapse-item__wrapper--transition{transition:height .3s ease-in-out}.van-collapse-item__content{padding:15px;padding:var(--collapse-item-content-padding,15px);color:#969799;color:var(--collapse-item-content-text-color,#969799);font-size:13px;font-size:var(--collapse-item-content-font-size,13px);line-height:1.5;line-height:var(--collapse-item-content-line-height,1.5);background-color:#fff;background-color:var(--collapse-item-content-background-color,#fff)} @import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;transition:-webkit-transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s),-webkit-transform var(--collapse-item-transition-duration,.3s)}.van-collapse-item__title--expanded .van-cell__right-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c8c9cc!important;color:var(--collapse-item-title-disabled-color,#c8c9cc)!important}.van-collapse-item__title--disabled .van-cell--hover{background-color:#fff!important;background-color:var(--white,#fff)!important}.van-collapse-item__wrapper{overflow:hidden}.van-collapse-item__content{padding:15px;padding:var(--collapse-item-content-padding,15px);color:#969799;color:var(--collapse-item-content-text-color,#969799);font-size:13px;font-size:var(--collapse-item-content-font-size,13px);line-height:1.5;line-height:var(--collapse-item-content-line-height,1.5);background-color:#fff;background-color:var(--collapse-item-content-background-color,#fff)}