mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
build: compile 1.11.3-beta.0
This commit is contained in:
parent
ff8fe1cb69
commit
7c0c9e43f7
4
dist/action-sheet/index.js
vendored
4
dist/action-sheet/index.js
vendored
@ -36,6 +36,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onSelect(event) {
|
onSelect(event) {
|
||||||
|
1
dist/action-sheet/index.wxml
vendored
1
dist/action-sheet/index.wxml
vendored
@ -9,6 +9,7 @@
|
|||||||
custom-class="van-action-sheet custom-class"
|
custom-class="van-action-sheet custom-class"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
||||||
|
4
dist/calendar/index.js
vendored
4
dist/calendar/index.js
vendored
@ -113,6 +113,10 @@ VantComponent({
|
|||||||
value: 0,
|
value: 0,
|
||||||
},
|
},
|
||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
subtitle: '',
|
subtitle: '',
|
||||||
|
1
dist/calendar/index.wxml
vendored
1
dist/calendar/index.wxml
vendored
@ -13,6 +13,7 @@
|
|||||||
closeable="{{ showTitle || showSubtitle }}"
|
closeable="{{ showTitle || showSubtitle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:enter="onOpen"
|
bind:enter="onOpen"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:after-enter="onOpened"
|
bind:after-enter="onOpened"
|
||||||
|
1
dist/cascader/index.js
vendored
1
dist/cascader/index.js
vendored
@ -49,6 +49,7 @@ VantComponent({
|
|||||||
value: defaultFieldNames,
|
value: defaultFieldNames,
|
||||||
observer: 'updateFieldNames',
|
observer: 'updateFieldNames',
|
||||||
},
|
},
|
||||||
|
useTitleSlot: Boolean,
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
tabs: [],
|
tabs: [],
|
||||||
|
3
dist/cascader/index.wxml
vendored
3
dist/cascader/index.wxml
vendored
@ -1,7 +1,8 @@
|
|||||||
<wxs src="./index.wxs" module="utils" />
|
<wxs src="./index.wxs" module="utils" />
|
||||||
|
|
||||||
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
||||||
<text class="van-cascader__title"><slot name="title"></slot>{{ title }}</text>
|
<slot name="title" wx:if="{{ useTitleSlot }}"></slot>
|
||||||
|
<text class="van-cascader__title" wx:else>{{ title }}</text>
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ closeable }}"
|
wx:if="{{ closeable }}"
|
||||||
name="{{ closeIcon }}"
|
name="{{ closeIcon }}"
|
||||||
|
4
dist/dialog/index.js
vendored
4
dist/dialog/index.js
vendored
@ -65,6 +65,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'scale',
|
value: 'scale',
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
loading: {
|
loading: {
|
||||||
|
1
dist/dialog/index.wxml
vendored
1
dist/dialog/index.wxml
vendored
@ -9,6 +9,7 @@
|
|||||||
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
|
4
dist/goods-action-button/index.js
vendored
4
dist/goods-action-button/index.js
vendored
@ -19,6 +19,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'danger',
|
value: 'danger',
|
||||||
},
|
},
|
||||||
|
customStyle: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClick(event) {
|
onClick(event) {
|
||||||
|
1
dist/goods-action-button/index.wxml
vendored
1
dist/goods-action-button/index.wxml
vendored
@ -12,6 +12,7 @@
|
|||||||
open-type="{{ openType }}"
|
open-type="{{ openType }}"
|
||||||
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
||||||
custom-class="van-goods-action-button__inner custom-class"
|
custom-class="van-goods-action-button__inner custom-class"
|
||||||
|
custom-style="{{customStyle}}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
|
79
dist/mixins/transition.js
vendored
79
dist/mixins/transition.js
vendored
@ -46,59 +46,66 @@ export function transition(showDefaultValue) {
|
|||||||
value ? this.enter() : this.leave();
|
value ? this.enter() : this.leave();
|
||||||
},
|
},
|
||||||
enter() {
|
enter() {
|
||||||
const { duration, name } = this.data;
|
this.waitEnterEndPromise = new Promise((resolve) => {
|
||||||
const classNames = getClassNames(name);
|
const { duration, name } = this.data;
|
||||||
const currentDuration = isObj(duration) ? duration.enter : duration;
|
const classNames = getClassNames(name);
|
||||||
if (this.status === 'enter') {
|
const currentDuration = isObj(duration) ? duration.enter : duration;
|
||||||
return;
|
if (this.status === 'enter') {
|
||||||
}
|
|
||||||
this.status = 'enter';
|
|
||||||
this.$emit('before-enter');
|
|
||||||
requestAnimationFrame(() => {
|
|
||||||
if (this.status !== 'enter') {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$emit('enter');
|
this.status = 'enter';
|
||||||
this.setData({
|
this.$emit('before-enter');
|
||||||
inited: true,
|
|
||||||
display: true,
|
|
||||||
classes: classNames.enter,
|
|
||||||
currentDuration,
|
|
||||||
});
|
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
if (this.status !== 'enter') {
|
if (this.status !== 'enter') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.transitionEnded = false;
|
this.$emit('enter');
|
||||||
this.setData({ classes: classNames['enter-to'] });
|
this.setData({
|
||||||
|
inited: true,
|
||||||
|
display: true,
|
||||||
|
classes: classNames.enter,
|
||||||
|
currentDuration,
|
||||||
|
});
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
if (this.status !== 'enter') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.transitionEnded = false;
|
||||||
|
this.setData({ classes: classNames['enter-to'] });
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
leave() {
|
leave() {
|
||||||
if (!this.data.display) {
|
if (!this.waitEnterEndPromise)
|
||||||
return;
|
return;
|
||||||
}
|
this.waitEnterEndPromise.then(() => {
|
||||||
const { duration, name } = this.data;
|
if (!this.data.display) {
|
||||||
const classNames = getClassNames(name);
|
|
||||||
const currentDuration = isObj(duration) ? duration.leave : duration;
|
|
||||||
this.status = 'leave';
|
|
||||||
this.$emit('before-leave');
|
|
||||||
requestAnimationFrame(() => {
|
|
||||||
if (this.status !== 'leave') {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$emit('leave');
|
const { duration, name } = this.data;
|
||||||
this.setData({
|
const classNames = getClassNames(name);
|
||||||
classes: classNames.leave,
|
const currentDuration = isObj(duration) ? duration.leave : duration;
|
||||||
currentDuration,
|
this.status = 'leave';
|
||||||
});
|
this.$emit('before-leave');
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
if (this.status !== 'leave') {
|
if (this.status !== 'leave') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.transitionEnded = false;
|
this.$emit('leave');
|
||||||
setTimeout(() => this.onTransitionEnd(), currentDuration);
|
this.setData({
|
||||||
this.setData({ classes: classNames['leave-to'] });
|
classes: classNames.leave,
|
||||||
|
currentDuration,
|
||||||
|
});
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
if (this.status !== 'leave') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.transitionEnded = false;
|
||||||
|
setTimeout(() => this.onTransitionEnd(), currentDuration);
|
||||||
|
this.setData({ classes: classNames['leave-to'] });
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
4
dist/share-sheet/index.js
vendored
4
dist/share-sheet/index.js
vendored
@ -36,6 +36,10 @@ VantComponent({
|
|||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClickOverlay() {
|
onClickOverlay() {
|
||||||
|
1
dist/share-sheet/index.wxml
vendored
1
dist/share-sheet/index.wxml
vendored
@ -11,6 +11,7 @@
|
|||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:click-overlay="onClickOverlay"
|
bind:click-overlay="onClickOverlay"
|
||||||
>
|
>
|
||||||
|
2
dist/uploader/shared.js
vendored
2
dist/uploader/shared.js
vendored
@ -40,7 +40,7 @@ export const mediaProps = {
|
|||||||
},
|
},
|
||||||
mediaType: {
|
mediaType: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['image', 'video'],
|
value: ['image', 'video', 'mix'],
|
||||||
},
|
},
|
||||||
maxDuration: {
|
maxDuration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
2
dist/uploader/utils.js
vendored
2
dist/uploader/utils.js
vendored
@ -33,7 +33,7 @@ function formatVideo(res) {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
function formatMedia(res) {
|
function formatMedia(res) {
|
||||||
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: res.type, url: item.tempFilePath, thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath })));
|
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: item.fileType, url: item.tempFilePath, thumb: item.fileType === 'video' ? item.thumbTempFilePath : item.tempFilePath })));
|
||||||
}
|
}
|
||||||
function formatFile(res) {
|
function formatFile(res) {
|
||||||
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { url: item.path })));
|
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { url: item.path })));
|
||||||
|
@ -38,6 +38,10 @@ var button_1 = require("../mixins/button");
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onSelect: function (event) {
|
onSelect: function (event) {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
custom-class="van-action-sheet custom-class"
|
custom-class="van-action-sheet custom-class"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
||||||
|
@ -129,6 +129,10 @@ var getTime = function (date) {
|
|||||||
value: 0,
|
value: 0,
|
||||||
},
|
},
|
||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
subtitle: '',
|
subtitle: '',
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
closeable="{{ showTitle || showSubtitle }}"
|
closeable="{{ showTitle || showSubtitle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:enter="onOpen"
|
bind:enter="onOpen"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:after-enter="onOpened"
|
bind:after-enter="onOpened"
|
||||||
|
@ -60,6 +60,7 @@ var defaultFieldNames = {
|
|||||||
value: defaultFieldNames,
|
value: defaultFieldNames,
|
||||||
observer: 'updateFieldNames',
|
observer: 'updateFieldNames',
|
||||||
},
|
},
|
||||||
|
useTitleSlot: Boolean,
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
tabs: [],
|
tabs: [],
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
<wxs src="./index.wxs" module="utils" />
|
<wxs src="./index.wxs" module="utils" />
|
||||||
|
|
||||||
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
||||||
<text class="van-cascader__title"><slot name="title"></slot>{{ title }}</text>
|
<slot name="title" wx:if="{{ useTitleSlot }}"></slot>
|
||||||
|
<text class="van-cascader__title" wx:else>{{ title }}</text>
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ closeable }}"
|
wx:if="{{ closeable }}"
|
||||||
name="{{ closeIcon }}"
|
name="{{ closeIcon }}"
|
||||||
|
@ -67,6 +67,10 @@ var utils_1 = require("../common/utils");
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'scale',
|
value: 'scale',
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
loading: {
|
loading: {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
|
@ -21,6 +21,10 @@ var link_1 = require("../mixins/link");
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'danger',
|
value: 'danger',
|
||||||
},
|
},
|
||||||
|
customStyle: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClick: function (event) {
|
onClick: function (event) {
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
open-type="{{ openType }}"
|
open-type="{{ openType }}"
|
||||||
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
||||||
custom-class="van-goods-action-button__inner custom-class"
|
custom-class="van-goods-action-button__inner custom-class"
|
||||||
|
custom-style="{{customStyle}}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
|
@ -50,60 +50,67 @@ function transition(showDefaultValue) {
|
|||||||
},
|
},
|
||||||
enter: function () {
|
enter: function () {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
var _a = this.data, duration = _a.duration, name = _a.name;
|
this.waitEnterEndPromise = new Promise(function (resolve) {
|
||||||
var classNames = getClassNames(name);
|
var _a = _this.data, duration = _a.duration, name = _a.name;
|
||||||
var currentDuration = (0, validator_1.isObj)(duration) ? duration.enter : duration;
|
var classNames = getClassNames(name);
|
||||||
if (this.status === 'enter') {
|
var currentDuration = (0, validator_1.isObj)(duration) ? duration.enter : duration;
|
||||||
return;
|
if (_this.status === 'enter') {
|
||||||
}
|
|
||||||
this.status = 'enter';
|
|
||||||
this.$emit('before-enter');
|
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
|
||||||
if (_this.status !== 'enter') {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.$emit('enter');
|
_this.status = 'enter';
|
||||||
_this.setData({
|
_this.$emit('before-enter');
|
||||||
inited: true,
|
|
||||||
display: true,
|
|
||||||
classes: classNames.enter,
|
|
||||||
currentDuration: currentDuration,
|
|
||||||
});
|
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
if (_this.status !== 'enter') {
|
if (_this.status !== 'enter') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.transitionEnded = false;
|
_this.$emit('enter');
|
||||||
_this.setData({ classes: classNames['enter-to'] });
|
_this.setData({
|
||||||
|
inited: true,
|
||||||
|
display: true,
|
||||||
|
classes: classNames.enter,
|
||||||
|
currentDuration: currentDuration,
|
||||||
|
});
|
||||||
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
|
if (_this.status !== 'enter') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_this.transitionEnded = false;
|
||||||
|
_this.setData({ classes: classNames['enter-to'] });
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
leave: function () {
|
leave: function () {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
if (!this.data.display) {
|
if (!this.waitEnterEndPromise)
|
||||||
return;
|
return;
|
||||||
}
|
this.waitEnterEndPromise.then(function () {
|
||||||
var _a = this.data, duration = _a.duration, name = _a.name;
|
if (!_this.data.display) {
|
||||||
var classNames = getClassNames(name);
|
|
||||||
var currentDuration = (0, validator_1.isObj)(duration) ? duration.leave : duration;
|
|
||||||
this.status = 'leave';
|
|
||||||
this.$emit('before-leave');
|
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
|
||||||
if (_this.status !== 'leave') {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.$emit('leave');
|
var _a = _this.data, duration = _a.duration, name = _a.name;
|
||||||
_this.setData({
|
var classNames = getClassNames(name);
|
||||||
classes: classNames.leave,
|
var currentDuration = (0, validator_1.isObj)(duration) ? duration.leave : duration;
|
||||||
currentDuration: currentDuration,
|
_this.status = 'leave';
|
||||||
});
|
_this.$emit('before-leave');
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
if (_this.status !== 'leave') {
|
if (_this.status !== 'leave') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.transitionEnded = false;
|
_this.$emit('leave');
|
||||||
setTimeout(function () { return _this.onTransitionEnd(); }, currentDuration);
|
_this.setData({
|
||||||
_this.setData({ classes: classNames['leave-to'] });
|
classes: classNames.leave,
|
||||||
|
currentDuration: currentDuration,
|
||||||
|
});
|
||||||
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
|
if (_this.status !== 'leave') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_this.transitionEnded = false;
|
||||||
|
setTimeout(function () { return _this.onTransitionEnd(); }, currentDuration);
|
||||||
|
_this.setData({ classes: classNames['leave-to'] });
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -38,6 +38,10 @@ var component_1 = require("../common/component");
|
|||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClickOverlay: function () {
|
onClickOverlay: function () {
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:click-overlay="onClickOverlay"
|
bind:click-overlay="onClickOverlay"
|
||||||
>
|
>
|
||||||
|
@ -43,7 +43,7 @@ exports.mediaProps = {
|
|||||||
},
|
},
|
||||||
mediaType: {
|
mediaType: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['image', 'video'],
|
value: ['image', 'video', 'mix'],
|
||||||
},
|
},
|
||||||
maxDuration: {
|
maxDuration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
@ -49,7 +49,7 @@ function formatVideo(res) {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
function formatMedia(res) {
|
function formatMedia(res) {
|
||||||
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: res.type, url: item.tempFilePath, thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath })); });
|
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: item.fileType, url: item.tempFilePath, thumb: item.fileType === 'video' ? item.thumbTempFilePath : item.tempFilePath })); });
|
||||||
}
|
}
|
||||||
function formatFile(res) {
|
function formatFile(res) {
|
||||||
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['path'])), { url: item.path })); });
|
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['path'])), { url: item.path })); });
|
||||||
|
Loading…
x
Reference in New Issue
Block a user