build: compile 1.3.0

This commit is contained in:
rex 2020-05-08 14:31:59 +08:00
parent dd1adc288f
commit e2e4538453
220 changed files with 12317 additions and 11320 deletions

View File

@ -10,32 +10,32 @@ VantComponent({
description: String, description: String,
round: { round: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 100 value: 100,
}, },
actions: { actions: {
type: Array, type: Array,
value: [] value: [],
}, },
overlay: { overlay: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
closeOnClickOverlay: { closeOnClickOverlay: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
closeOnClickAction: { closeOnClickAction: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
safeAreaInsetBottom: { safeAreaInsetBottom: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
methods: { methods: {
onSelect(event) { onSelect(event) {
@ -57,6 +57,6 @@ VantComponent({
onClickOverlay() { onClickOverlay() {
this.$emit('click-overlay'); this.$emit('click-overlay');
this.onClose(); this.onClose();
} },
} },
}); });

84
dist/area/index.js vendored
View File

@ -3,25 +3,29 @@ import { pickerProps } from '../picker/shared';
const COLUMNSPLACEHOLDERCODE = '000000'; const COLUMNSPLACEHOLDERCODE = '000000';
VantComponent({ VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: Object.assign(Object.assign({}, pickerProps), { value: { props: Object.assign(Object.assign({}, pickerProps), {
value: {
type: String, type: String,
observer(value) { observer(value) {
this.code = value; this.code = value;
this.setValues(); this.setValues();
}, },
}, areaList: { },
areaList: {
type: Object, type: Object,
value: {}, value: {},
observer: 'setValues' observer: 'setValues',
}, columnsNum: { },
columnsNum: {
type: null, type: null,
value: 3, value: 3,
observer(value) { observer(value) {
this.setData({ this.setData({
displayColumns: this.data.columns.slice(0, +value) displayColumns: this.data.columns.slice(0, +value),
}); });
} },
}, columnsPlaceholder: { },
columnsPlaceholder: {
type: Array, type: Array,
observer(val) { observer(val) {
this.setData({ this.setData({
@ -29,14 +33,15 @@ VantComponent({
province: val[0] || '', province: val[0] || '',
city: val[1] || '', city: val[1] || '',
county: val[2] || '', county: val[2] || '',
} },
}); });
} },
} }), },
}),
data: { data: {
columns: [{ values: [] }, { values: [] }, { values: [] }], columns: [{ values: [] }, { values: [] }, { values: [] }],
displayColumns: [{ values: [] }, { values: [] }, { values: [] }], displayColumns: [{ values: [] }, { values: [] }, { values: [] }],
typeToColumnsPlaceholder: {} typeToColumnsPlaceholder: {},
}, },
mounted() { mounted() {
setTimeout(() => { setTimeout(() => {
@ -69,8 +74,7 @@ VantComponent({
const { columnsPlaceholder } = this.data; const { columnsPlaceholder } = this.data;
return values.map((value, index) => { return values.map((value, index) => {
// save undefined value // save undefined value
if (!value) if (!value) return value;
return value;
value = JSON.parse(JSON.stringify(value)); value = JSON.parse(JSON.stringify(value));
if (!value.code || value.name === columnsPlaceholder[index]) { if (!value.code || value.name === columnsPlaceholder[index]) {
value.code = ''; value.code = '';
@ -86,7 +90,7 @@ VantComponent({
this.$emit('change', { this.$emit('change', {
picker, picker,
values: this.parseOutputValues(picker.getValues()), values: this.parseOutputValues(picker.getValues()),
index index,
}); });
}); });
}, },
@ -101,23 +105,28 @@ VantComponent({
return result; return result;
} }
const list = this.getConfig(type); const list = this.getConfig(type);
result = Object.keys(list).map(code => ({ result = Object.keys(list).map((code) => ({
code, code,
name: list[code] name: list[code],
})); }));
if (code) { if (code) {
// oversea code // oversea code
if (code[0] === '9' && type === 'city') { if (code[0] === '9' && type === 'city') {
code = '9'; code = '9';
} }
result = result.filter(item => item.code.indexOf(code) === 0); result = result.filter((item) => item.code.indexOf(code) === 0);
} }
if (typeToColumnsPlaceholder[type] && result.length) { if (typeToColumnsPlaceholder[type] && result.length) {
// set columns placeholder // set columns placeholder
const codeFill = type === 'province' ? '' : type === 'city' ? COLUMNSPLACEHOLDERCODE.slice(2, 4) : COLUMNSPLACEHOLDERCODE.slice(4, 6); const codeFill =
type === 'province'
? ''
: type === 'city'
? COLUMNSPLACEHOLDERCODE.slice(2, 4)
: COLUMNSPLACEHOLDERCODE.slice(4, 6);
result.unshift({ result.unshift({
code: `${code}${codeFill}`, code: `${code}${codeFill}`,
name: typeToColumnsPlaceholder[type] name: typeToColumnsPlaceholder[type],
}); });
} }
return result; return result;
@ -143,11 +152,9 @@ VantComponent({
if (!code) { if (!code) {
if (this.data.columnsPlaceholder.length) { if (this.data.columnsPlaceholder.length) {
code = COLUMNSPLACEHOLDERCODE; code = COLUMNSPLACEHOLDERCODE;
} } else if (Object.keys(county)[0]) {
else if (Object.keys(county)[0]) {
code = Object.keys(county)[0]; code = Object.keys(county)[0];
} } else {
else {
code = ''; code = '';
} }
} }
@ -163,19 +170,27 @@ VantComponent({
if (city.length && code.slice(2, 4) === '00') { if (city.length && code.slice(2, 4) === '00') {
[{ code }] = city; [{ code }] = city;
} }
stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false)); stack.push(
picker.setColumnValues(
2,
this.getList('county', code.slice(0, 4)),
false
)
);
return Promise.all(stack) return Promise.all(stack)
.catch(() => { }) .catch(() => {})
.then(() => picker.setIndexes([ .then(() =>
picker.setIndexes([
this.getIndex('province', code), this.getIndex('province', code),
this.getIndex('city', code), this.getIndex('city', code),
this.getIndex('county', code) this.getIndex('county', code),
])) ])
.catch(() => { }); )
.catch(() => {});
}, },
getValues() { getValues() {
const picker = this.getPicker(); const picker = this.getPicker();
return picker ? picker.getValues().filter(value => !!value) : []; return picker ? picker.getValues().filter((value) => !!value) : [];
}, },
getDetail() { getDetail() {
const values = this.getValues(); const values = this.getValues();
@ -184,7 +199,7 @@ VantComponent({
country: '', country: '',
province: '', province: '',
city: '', city: '',
county: '' county: '',
}; };
if (!values.length) { if (!values.length) {
return area; return area;
@ -194,8 +209,7 @@ VantComponent({
if (area.code[0] === '9') { if (area.code[0] === '9') {
area.country = names[1] || ''; area.country = names[1] || '';
area.province = names[2] || ''; area.province = names[2] || '';
} } else {
else {
area.province = names[0] || ''; area.province = names[0] || '';
area.city = names[1] || ''; area.city = names[1] || '';
area.county = names[2] || ''; area.county = names[2] || '';
@ -205,6 +219,6 @@ VantComponent({
reset(code) { reset(code) {
this.code = code || ''; this.code = code || '';
return this.setValues(); return this.setValues();
} },
} },
}); });

22
dist/button/index.js vendored
View File

@ -5,7 +5,7 @@ VantComponent({
mixins: [button, openType], mixins: [button, openType],
classes: ['hover-class', 'loading-class'], classes: ['hover-class', 'loading-class'],
data: { data: {
baseStyle: '' baseStyle: '',
}, },
props: { props: {
icon: String, icon: String,
@ -20,19 +20,20 @@ VantComponent({
customStyle: String, customStyle: String,
loadingType: { loadingType: {
type: String, type: String,
value: 'circular' value: 'circular',
}, },
type: { type: {
type: String, type: String,
value: 'default' value: 'default',
}, },
dataset: null,
size: { size: {
type: String, type: String,
value: 'normal' value: 'normal',
}, },
loadingSize: { loadingSize: {
type: String, type: String,
value: '20px' value: '20px',
}, },
color: { color: {
type: String, type: String,
@ -47,16 +48,15 @@ VantComponent({
// hide border when color is linear-gradient // hide border when color is linear-gradient
if (color.indexOf('gradient') !== -1) { if (color.indexOf('gradient') !== -1) {
style += 'border: 0;'; style += 'border: 0;';
} } else {
else {
style += `border-color: ${color};`; style += `border-color: ${color};`;
} }
} }
if (style !== this.data.baseStyle) { if (style !== this.data.baseStyle) {
this.setData({ baseStyle: style }); this.setData({ baseStyle: style });
} }
} },
} },
}, },
methods: { methods: {
onClick() { onClick() {
@ -64,6 +64,6 @@ VantComponent({
this.$emit('click'); this.$emit('click');
} }
}, },
noop() { } noop() {},
} },
}); });

View File

@ -2,11 +2,12 @@
<button <button
id="{{ id }}" id="{{ id }}"
data-detail="{{ dataset }}"
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}" class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
hover-class="van-button--active hover-class" hover-class="van-button--active hover-class"
lang="{{ lang }}" lang="{{ lang }}"
style="{{ baseStyle }} {{ customStyle }}" style="{{ baseStyle }} {{ customStyle }}"
open-type="{{ openType }}" open-type="{{ disabled ? '' : openType }}"
business-id="{{ businessId }}" business-id="{{ businessId }}"
session-from="{{ sessionFrom }}" session-from="{{ sessionFrom }}"
send-message-title="{{ sendMessageTitle }}" send-message-title="{{ sendMessageTitle }}"
@ -16,12 +17,12 @@
app-parameter="{{ appParameter }}" app-parameter="{{ appParameter }}"
aria-label="{{ ariaLabel }}" aria-label="{{ ariaLabel }}"
bindtap="{{ !disabled ? 'onClick' : 'noop' }}" bindtap="{{ !disabled ? 'onClick' : 'noop' }}"
bindgetuserinfo="{{ !disabled ? 'bindGetUserInfo' : 'noop' }}" bindgetuserinfo="bindGetUserInfo"
bindcontact="{{ !disabled ? 'bindContact' : 'noop' }}" bindcontact="bindContact"
bindgetphonenumber="{{ !disabled ? 'bindGetPhoneNumber' : 'noop' }}" bindgetphonenumber="bindGetPhoneNumber"
binderror="{{ !disabled ? 'bindError' : 'noop' }}" binderror="bindError"
bindlaunchapp="{{ !disabled ? 'bindLaunchApp' : 'noop' }}" bindlaunchapp="bindLaunchApp"
bindopensetting="{{ !disabled ? 'bindOpenSetting' : 'noop' }}" bindopensetting="bindOpenSetting"
> >
<block wx:if="{{ loading }}"> <block wx:if="{{ loading }}">
<van-loading <van-loading

View File

@ -3,14 +3,14 @@ VantComponent({
props: { props: {
title: { title: {
type: String, type: String,
value: '日期选择' value: '日期选择',
}, },
subtitle: String, subtitle: String,
showTitle: Boolean, showTitle: Boolean,
showSubtitle: Boolean showSubtitle: Boolean,
}, },
data: { data: {
weekdays: ['日', '一', '二', '三', '四', '五', '六'] weekdays: ['日', '一', '二', '三', '四', '五', '六'],
}, },
methods: {} methods: {},
}); });

View File

@ -1,41 +1,46 @@
import { VantComponent } from '../../../common/component'; import { VantComponent } from '../../../common/component';
import { getMonthEndDay, compareDay, getPrevDay, getNextDay } from '../../utils'; import {
getMonthEndDay,
compareDay,
getPrevDay,
getNextDay,
} from '../../utils';
VantComponent({ VantComponent({
props: { props: {
date: { date: {
type: null, type: null,
observer: 'setDays' observer: 'setDays',
}, },
type: { type: {
type: String, type: String,
observer: 'setDays' observer: 'setDays',
}, },
color: String, color: String,
minDate: { minDate: {
type: null, type: null,
observer: 'setDays' observer: 'setDays',
}, },
maxDate: { maxDate: {
type: null, type: null,
observer: 'setDays' observer: 'setDays',
}, },
showMark: Boolean, showMark: Boolean,
rowHeight: [Number, String], rowHeight: [Number, String],
formatter: { formatter: {
type: null, type: null,
observer: 'setDays' observer: 'setDays',
}, },
currentDate: { currentDate: {
type: [null, Array], type: [null, Array],
observer: 'setDays' observer: 'setDays',
}, },
allowSameDay: Boolean, allowSameDay: Boolean,
showSubtitle: Boolean, showSubtitle: Boolean,
showMonthTitle: Boolean showMonthTitle: Boolean,
}, },
data: { data: {
visible: true, visible: true,
days: [] days: [],
}, },
methods: { methods: {
onClick(event) { onClick(event) {
@ -50,7 +55,10 @@ VantComponent({
const startDate = new Date(this.data.date); const startDate = new Date(this.data.date);
const year = startDate.getFullYear(); const year = startDate.getFullYear();
const month = startDate.getMonth(); const month = startDate.getMonth();
const totalDay = getMonthEndDay(startDate.getFullYear(), startDate.getMonth() + 1); const totalDay = getMonthEndDay(
startDate.getFullYear(),
startDate.getMonth() + 1
);
for (let day = 1; day <= totalDay; day++) { for (let day = 1; day <= totalDay; day++) {
const date = new Date(year, month, day); const date = new Date(year, month, day);
const type = this.getDayType(date); const type = this.getDayType(date);
@ -58,7 +66,7 @@ VantComponent({
date, date,
type, type,
text: day, text: day,
bottomInfo: this.getBottomInfo(type) bottomInfo: this.getBottomInfo(type),
}; };
if (this.data.formatter) { if (this.data.formatter) {
config = this.data.formatter(config); config = this.data.formatter(config);
@ -72,7 +80,8 @@ VantComponent({
if (!Array.isArray(currentDate)) { if (!Array.isArray(currentDate)) {
return ''; return '';
} }
const isSelected = date => currentDate.some(item => compareDay(item, date) === 0); const isSelected = (date) =>
currentDate.some((item) => compareDay(item, date) === 0);
if (isSelected(day)) { if (isSelected(day)) {
const prevDay = getPrevDay(day); const prevDay = getPrevDay(day);
const nextDay = getNextDay(day); const nextDay = getNextDay(day);
@ -143,6 +152,6 @@ VantComponent({
return '开始/结束'; return '开始/结束';
} }
} }
} },
} },
}); });

107
dist/calendar/index.js vendored
View File

@ -1,11 +1,21 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { ROW_HEIGHT, getNextDay, compareDay, copyDates, calcDateNum, formatMonthTitle, compareMonth, getMonths, getDayByOffset } from './utils'; import {
ROW_HEIGHT,
getNextDay,
compareDay,
copyDates,
calcDateNum,
formatMonthTitle,
compareMonth,
getMonths,
getDayByOffset,
} from './utils';
import Toast from '../toast/toast'; import Toast from '../toast/toast';
VantComponent({ VantComponent({
props: { props: {
title: { title: {
type: String, type: String,
value: '日期选择' value: '日期选择',
}, },
color: String, color: String,
show: { show: {
@ -15,12 +25,12 @@ VantComponent({
this.initRect(); this.initRect();
this.scrollIntoView(); this.scrollIntoView();
} }
} },
}, },
formatter: null, formatter: null,
confirmText: { confirmText: {
type: String, type: String,
value: '确定' value: '确定',
}, },
rangePrompt: String, rangePrompt: String,
defaultDate: { defaultDate: {
@ -28,76 +38,80 @@ VantComponent({
observer(val) { observer(val) {
this.setData({ currentDate: val }); this.setData({ currentDate: val });
this.scrollIntoView(); this.scrollIntoView();
} },
}, },
allowSameDay: Boolean, allowSameDay: Boolean,
confirmDisabledText: String, confirmDisabledText: String,
type: { type: {
type: String, type: String,
value: 'single', value: 'single',
observer: 'reset' observer: 'reset',
}, },
minDate: { minDate: {
type: null, type: null,
value: Date.now() value: Date.now(),
}, },
maxDate: { maxDate: {
type: null, type: null,
value: new Date(new Date().getFullYear(), new Date().getMonth() + 6, new Date().getDate()).getTime() value: new Date(
new Date().getFullYear(),
new Date().getMonth() + 6,
new Date().getDate()
).getTime(),
}, },
position: { position: {
type: String, type: String,
value: 'bottom' value: 'bottom',
}, },
rowHeight: { rowHeight: {
type: [Number, String], type: [Number, String],
value: ROW_HEIGHT value: ROW_HEIGHT,
}, },
round: { round: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
poppable: { poppable: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
showMark: { showMark: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
showTitle: { showTitle: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
showConfirm: { showConfirm: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
showSubtitle: { showSubtitle: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
safeAreaInsetBottom: { safeAreaInsetBottom: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
closeOnClickOverlay: { closeOnClickOverlay: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
maxRange: { maxRange: {
type: [Number, String], type: [Number, String],
value: null value: null,
} },
}, },
data: { data: {
subtitle: '', subtitle: '',
currentDate: null, currentDate: null,
scrollIntoView: '' scrollIntoView: '',
}, },
created() { created() {
this.setData({ this.setData({
currentDate: this.getInitialDate() currentDate: this.getInitialDate(),
}); });
}, },
mounted() { mounted() {
@ -117,11 +131,11 @@ VantComponent({
} }
const contentObserver = this.createIntersectionObserver({ const contentObserver = this.createIntersectionObserver({
thresholds: [0, 0.1, 0.9, 1], thresholds: [0, 0.1, 0.9, 1],
observeAll: true observeAll: true,
}); });
this.contentObserver = contentObserver; this.contentObserver = contentObserver;
contentObserver.relativeTo('.van-calendar__body'); contentObserver.relativeTo('.van-calendar__body');
contentObserver.observe('.month', res => { contentObserver.observe('.month', (res) => {
if (res.boundingClientRect.top <= res.relativeRect.top) { if (res.boundingClientRect.top <= res.relativeRect.top) {
// @ts-ignore // @ts-ignore
this.setData({ subtitle: formatMonthTitle(res.dataset.date) }); this.setData({ subtitle: formatMonthTitle(res.dataset.date) });
@ -134,7 +148,7 @@ VantComponent({
const [startDay, endDay] = defaultDate || []; const [startDay, endDay] = defaultDate || [];
return [ return [
startDay || minDate, startDay || minDate,
endDay || getNextDay(new Date(minDate)).getTime() endDay || getNextDay(new Date(minDate)).getTime(),
]; ];
} }
if (type === 'multiple') { if (type === 'multiple') {
@ -144,7 +158,14 @@ VantComponent({
}, },
scrollIntoView() { scrollIntoView() {
setTimeout(() => { setTimeout(() => {
const { currentDate, type, show, poppable, minDate, maxDate } = this.data; const {
currentDate,
type,
show,
poppable,
minDate,
maxDate,
} = this.data;
const targetDate = type === 'single' ? currentDate : currentDate[0]; const targetDate = type === 'single' ? currentDate : currentDate[0];
const displayed = show || !poppable; const displayed = show || !poppable;
if (!targetDate || !displayed) { if (!targetDate || !displayed) {
@ -181,19 +202,15 @@ VantComponent({
const compareToStart = compareDay(date, startDay); const compareToStart = compareDay(date, startDay);
if (compareToStart === 1) { if (compareToStart === 1) {
this.select([startDay, date], true); this.select([startDay, date], true);
} } else if (compareToStart === -1) {
else if (compareToStart === -1) {
this.select([date, null]); this.select([date, null]);
} } else if (allowSameDay) {
else if (allowSameDay) {
this.select([date, date]); this.select([date, date]);
} }
} } else {
else {
this.select([date, null]); this.select([date, null]);
} }
} } else if (type === 'multiple') {
else if (type === 'multiple') {
let selectedIndex; let selectedIndex;
const selected = currentDate.some((dateItem, index) => { const selected = currentDate.some((dateItem, index) => {
const equal = compareDay(dateItem, date) === 0; const equal = compareDay(dateItem, date) === 0;
@ -206,12 +223,10 @@ VantComponent({
const cancelDate = currentDate.splice(selectedIndex, 1); const cancelDate = currentDate.splice(selectedIndex, 1);
this.setData({ currentDate }); this.setData({ currentDate });
this.unselect(cancelDate); this.unselect(cancelDate);
} } else {
else {
this.select([...currentDate, date]); this.select([...currentDate, date]);
} }
} } else {
else {
this.select(date, true); this.select(date, true);
} }
}, },
@ -227,9 +242,11 @@ VantComponent({
if (!valid) { if (!valid) {
// auto selected to max range if showConfirm // auto selected to max range if showConfirm
if (this.data.showConfirm) { if (this.data.showConfirm) {
this.emit([date[0], getDayByOffset(date[0], this.data.maxRange - 1)]); this.emit([
} date[0],
else { getDayByOffset(date[0], this.data.maxRange - 1),
]);
} else {
this.emit(date); this.emit(date);
} }
return; return;
@ -243,7 +260,7 @@ VantComponent({
emit(date) { emit(date) {
const getTime = (date) => (date instanceof Date ? date.getTime() : date); const getTime = (date) => (date instanceof Date ? date.getTime() : date);
this.setData({ this.setData({
currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date) currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date),
}); });
this.$emit('select', copyDates(date)); this.$emit('select', copyDates(date));
}, },
@ -252,7 +269,7 @@ VantComponent({
if (maxRange && calcDateNum(date) > maxRange) { if (maxRange && calcDateNum(date) > maxRange) {
Toast({ Toast({
context: this, context: this,
message: rangePrompt || `选择天数不能超过 ${maxRange}` message: rangePrompt || `选择天数不能超过 ${maxRange}`,
}); });
return false; return false;
} }
@ -265,6 +282,6 @@ VantComponent({
wx.nextTick(() => { wx.nextTick(() => {
this.$emit('confirm', copyDates(this.data.currentDate)); this.$emit('confirm', copyDates(this.data.currentDate));
}); });
} },
} },
}); });

View File

@ -1,7 +1,13 @@
export declare const ROW_HEIGHT = 64; export declare const ROW_HEIGHT = 64;
export declare function formatMonthTitle(date: Date): string; export declare function formatMonthTitle(date: Date): string;
export declare function compareMonth(date1: Date | number, date2: Date | number): 1 | 0 | -1; export declare function compareMonth(
export declare function compareDay(day1: Date | number, day2: Date | number): 1 | 0 | -1; date1: Date | number,
date2: Date | number
): 0 | 1 | -1;
export declare function compareDay(
day1: Date | number,
day2: Date | number
): 0 | 1 | -1;
export declare function getDayByOffset(date: Date, offset: number): Date; export declare function getDayByOffset(date: Date, offset: number): Date;
export declare function getPrevDay(date: Date): Date; export declare function getPrevDay(date: Date): Date;
export declare function getNextDay(date: Date): Date; export declare function getNextDay(date: Date): Date;

View File

@ -54,7 +54,7 @@ export function calcDateNum(date) {
} }
export function copyDates(dates) { export function copyDates(dates) {
if (Array.isArray(dates)) { if (Array.isArray(dates)) {
return dates.map(date => { return dates.map((date) => {
if (date === null) { if (date === null) {
return date; return date;
} }

16
dist/card/index.js vendored
View File

@ -7,7 +7,7 @@ VantComponent({
'thumb-class', 'thumb-class',
'title-class', 'title-class',
'price-class', 'price-class',
'origin-price-class' 'origin-price-class',
], ],
mixins: [link], mixins: [link],
props: { props: {
@ -18,7 +18,7 @@ VantComponent({
title: String, title: String,
price: { price: {
type: String, type: String,
observer: 'updatePrice' observer: 'updatePrice',
}, },
centered: Boolean, centered: Boolean,
lazyLoad: Boolean, lazyLoad: Boolean,
@ -26,12 +26,12 @@ VantComponent({
originPrice: String, originPrice: String,
thumbMode: { thumbMode: {
type: String, type: String,
value: 'aspectFit' value: 'aspectFit',
}, },
currency: { currency: {
type: String, type: String,
value: '¥' value: '¥',
} },
}, },
methods: { methods: {
updatePrice() { updatePrice() {
@ -39,11 +39,11 @@ VantComponent({
const priceArr = price.toString().split('.'); const priceArr = price.toString().split('.');
this.setData({ this.setData({
integerStr: priceArr[0], integerStr: priceArr[0],
decimalStr: priceArr[1] ? `.${priceArr[1]}` : '' decimalStr: priceArr[1] ? `.${priceArr[1]}` : '',
}); });
}, },
onClickThumb() { onClickThumb() {
this.jumpLink('thumbLink'); this.jumpLink('thumbLink');
} },
} },
}); });

View File

@ -4,7 +4,7 @@ VantComponent({
title: String, title: String,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
} },
} },
}); });

10
dist/cell/index.js vendored
View File

@ -6,7 +6,7 @@ VantComponent({
'label-class', 'label-class',
'value-class', 'value-class',
'right-icon-class', 'right-icon-class',
'hover-class' 'hover-class',
], ],
mixins: [link], mixins: [link],
props: { props: {
@ -25,13 +25,13 @@ VantComponent({
useLabelSlot: Boolean, useLabelSlot: Boolean,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
methods: { methods: {
onClick(event) { onClick(event) {
this.$emit('click', event.detail); this.$emit('click', event.detail);
this.jumpLink(); this.jumpLink();
} },
} },
}); });

View File

@ -13,12 +13,12 @@ VantComponent({
max: Number, max: Number,
value: { value: {
type: Array, type: Array,
observer: 'updateChildren' observer: 'updateChildren',
}, },
disabled: { disabled: {
type: Boolean, type: Boolean,
observer: 'updateChildren' observer: 'updateChildren',
} },
}, },
methods: { methods: {
updateChildren() { updateChildren() {
@ -28,8 +28,8 @@ VantComponent({
const { value, disabled } = this.data; const { value, disabled } = this.data;
child.setData({ child.setData({
value: value.indexOf(child.data.name) !== -1, value: value.indexOf(child.data.name) !== -1,
parentDisabled: disabled parentDisabled: disabled,
}); });
} },
} },
}); });

View File

@ -20,22 +20,21 @@ VantComponent({
labelDisabled: Boolean, labelDisabled: Boolean,
shape: { shape: {
type: String, type: String,
value: 'round' value: 'round',
}, },
iconSize: { iconSize: {
type: null, type: null,
value: 20 value: 20,
} },
}, },
data: { data: {
parentDisabled: false parentDisabled: false,
}, },
methods: { methods: {
emitChange(value) { emitChange(value) {
if (this.parent) { if (this.parent) {
this.setParentValue(this.parent, value); this.setParentValue(this.parent, value);
} } else {
else {
emit(this, value); emit(this, value);
} }
}, },
@ -63,14 +62,13 @@ VantComponent({
parentValue.push(name); parentValue.push(name);
emit(parent, parentValue); emit(parent, parentValue);
} }
} } else {
else {
const index = parentValue.indexOf(name); const index = parentValue.indexOf(name);
if (index !== -1) { if (index !== -1) {
parentValue.splice(index, 1); parentValue.splice(index, 1);
emit(parent, parentValue); emit(parent, parentValue);
} }
} }
} },
} },
}); });

34
dist/circle/index.js vendored
View File

@ -12,16 +12,16 @@ VantComponent({
text: String, text: String,
lineCap: { lineCap: {
type: String, type: String,
value: 'round' value: 'round',
}, },
value: { value: {
type: Number, type: Number,
value: 0, value: 0,
observer: 'reRender' observer: 'reRender',
}, },
speed: { speed: {
type: Number, type: Number,
value: 50 value: 50,
}, },
size: { size: {
type: Number, type: Number,
@ -30,28 +30,28 @@ VantComponent({
fill: String, fill: String,
layerColor: { layerColor: {
type: String, type: String,
value: WHITE value: WHITE,
}, },
color: { color: {
type: [String, Object], type: [String, Object],
value: BLUE, value: BLUE,
observer: 'setHoverColor' observer: 'setHoverColor',
}, },
type: { type: {
type: String, type: String,
value: '' value: '',
}, },
strokeWidth: { strokeWidth: {
type: Number, type: Number,
value: 4 value: 4,
}, },
clockwise: { clockwise: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
hoverColor: BLUE hoverColor: BLUE,
}, },
methods: { methods: {
getContext() { getContext() {
@ -68,7 +68,9 @@ VantComponent({
const LinearColor = context.createLinearGradient(size, 0, 0, 0); const LinearColor = context.createLinearGradient(size, 0, 0, 0);
Object.keys(color) Object.keys(color)
.sort((a, b) => parseFloat(a) - parseFloat(b)) .sort((a, b) => parseFloat(a) - parseFloat(b))
.map(key => LinearColor.addColorStop(parseFloat(key) / 100, color[key])); .map((key) =>
LinearColor.addColorStop(parseFloat(key) / 100, color[key])
);
hoverColor = LinearColor; hoverColor = LinearColor;
} }
this.setData({ hoverColor }); this.setData({ hoverColor });
@ -125,13 +127,11 @@ VantComponent({
if (this.currentValue !== value) { if (this.currentValue !== value) {
if (this.currentValue < value) { if (this.currentValue < value) {
this.currentValue += STEP; this.currentValue += STEP;
} } else {
else {
this.currentValue -= STEP; this.currentValue -= STEP;
} }
this.drawCircle(this.currentValue); this.drawCircle(this.currentValue);
} } else {
else {
this.clearInterval(); this.clearInterval();
} }
}, 1000 / speed); }, 1000 / speed);
@ -141,7 +141,7 @@ VantComponent({
clearInterval(this.interval); clearInterval(this.interval);
this.interval = null; this.interval = null;
} }
} },
}, },
created() { created() {
const { value } = this.data; const { value } = this.data;
@ -151,5 +151,5 @@ VantComponent({
destroyed() { destroyed() {
this.ctx = null; this.ctx = null;
this.clearInterval(); this.clearInterval();
} },
}); });

12
dist/col/index.js vendored
View File

@ -7,18 +7,20 @@ VantComponent({
}, },
props: { props: {
span: Number, span: Number,
offset: Number offset: Number,
}, },
data: { data: {
viewStyle: '' viewStyle: '',
}, },
methods: { methods: {
setGutter(gutter) { setGutter(gutter) {
const padding = `${gutter / 2}px`; const padding = `${gutter / 2}px`;
const viewStyle = gutter ? `padding-left: ${padding}; padding-right: ${padding};` : ''; const viewStyle = gutter
? `padding-left: ${padding}; padding-right: ${padding};`
: '';
if (viewStyle !== this.data.viewStyle) { if (viewStyle !== this.data.viewStyle) {
this.setData({ viewStyle }); this.setData({ viewStyle });
} }
} },
} },
}); });

View File

@ -1,5 +1,5 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
const nextTick = () => new Promise(resolve => setTimeout(resolve, 20)); const nextTick = () => new Promise((resolve) => setTimeout(resolve, 20));
VantComponent({ VantComponent({
classes: ['title-class', 'content-class'], classes: ['title-class', 'content-class'],
relation: { relation: {
@ -17,17 +17,17 @@ VantComponent({
clickable: Boolean, clickable: Boolean,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
isLink: { isLink: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
contentHeight: 0, contentHeight: 0,
expanded: false, expanded: false,
transition: false transition: false,
}, },
mounted() { mounted() {
this.updateExpanded() this.updateExpanded()
@ -66,7 +66,7 @@ VantComponent({
.then((height) => { .then((height) => {
if (expanded) { if (expanded) {
return this.set({ return this.set({
contentHeight: height ? `${height}px` : 'auto' contentHeight: height ? `${height}px` : 'auto',
}); });
} }
return this.set({ contentHeight: `${height}px` }) return this.set({ contentHeight: `${height}px` })
@ -86,9 +86,9 @@ VantComponent({
onTransitionEnd() { onTransitionEnd() {
if (this.data.expanded) { if (this.data.expanded) {
this.setData({ this.setData({
contentHeight: 'auto' contentHeight: 'auto',
}); });
} }
} },
} },
}); });

View File

@ -8,16 +8,16 @@ VantComponent({
props: { props: {
value: { value: {
type: null, type: null,
observer: 'updateExpanded' observer: 'updateExpanded',
}, },
accordion: { accordion: {
type: Boolean, type: Boolean,
observer: 'updateExpanded' observer: 'updateExpanded',
}, },
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
methods: { methods: {
updateExpanded() { updateExpanded() {
@ -31,12 +31,11 @@ VantComponent({
name = expanded name = expanded
? (value || []).concat(name) ? (value || []).concat(name)
: (value || []).filter((activeName) => activeName !== name); : (value || []).filter((activeName) => activeName !== name);
} } else {
else {
name = expanded ? name : ''; name = expanded ? name : '';
} }
this.$emit('change', name); this.$emit('change', name);
this.$emit('input', name); this.$emit('input', name);
} },
} },
}); });

View File

@ -14,12 +14,12 @@ const relationFunctions = {
this.children.push(child); this.children.push(child);
}, },
unlinked(child) { unlinked(child) {
this.children = (this.children || []).filter(it => it !== child); this.children = (this.children || []).filter((it) => it !== child);
}, },
}, },
}; };
function mapKeys(source, target, map) { function mapKeys(source, target, map) {
Object.keys(map).forEach(key => { Object.keys(map).forEach((key) => {
if (source[key]) { if (source[key]) {
target[map[key]] = source[key]; target[map[key]] = source[key];
} }
@ -52,7 +52,7 @@ function makeRelation(options, vantOptions, relation) {
relationFunctions[type].unlinked.bind(this)(node); relationFunctions[type].unlinked.bind(this)(node);
unlinked && unlinked.bind(this)(node); unlinked && unlinked.bind(this)(node);
}, },
} },
}); });
} }
function VantComponent(vantOptions = {}) { function VantComponent(vantOptions = {}) {
@ -67,7 +67,7 @@ function VantComponent(vantOptions = {}) {
mounted: 'ready', mounted: 'ready',
relations: 'relations', relations: 'relations',
destroyed: 'detached', destroyed: 'detached',
classes: 'externalClasses' classes: 'externalClasses',
}); });
const { relation } = vantOptions; const { relation } = vantOptions;
if (relation) { if (relation) {
@ -84,7 +84,7 @@ function VantComponent(vantOptions = {}) {
options.behaviors.push('wx://form-field'); options.behaviors.push('wx://form-field');
} }
if (options.properties) { if (options.properties) {
Object.keys(options.properties).forEach(name => { Object.keys(options.properties).forEach((name) => {
if (Array.isArray(options.properties[name])) { if (Array.isArray(options.properties[name])) {
// miniprogram do not allow multi type // miniprogram do not allow multi type
options.properties[name] = null; options.properties[name] = null;
@ -94,7 +94,7 @@ function VantComponent(vantOptions = {}) {
// add default options // add default options
options.options = { options.options = {
multipleSlots: true, multipleSlots: true,
addGlobalClass: true addGlobalClass: true,
}; };
Component(options); Component(options);
} }

View File

@ -1 +1 @@
.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{display:table;clear:both;content:""}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid #eee;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px} page{font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,Segoe UI,Arial,Roboto,PingFang SC,Hiragino Sans GB,Microsoft Yahei,sans-serif}.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{display:table;clear:both;content:""}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid #eee;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}

1
dist/common/style/normalize.wxss vendored Normal file
View File

@ -0,0 +1 @@
page{font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,Segoe UI,Arial,Roboto,PingFang SC,Hiragino Sans GB,Microsoft Yahei,sans-serif}

View File

@ -4,5 +4,5 @@ export declare function isObj(x: any): boolean;
export declare function isNumber(value: any): boolean; export declare function isNumber(value: any): boolean;
export declare function range(num: number, min: number, max: number): number; export declare function range(num: number, min: number, max: number): number;
export declare function nextTick(fn: Function): void; export declare function nextTick(fn: Function): void;
export declare function getSystemInfoSync(): WechatMiniprogram.GetSystemInfoSuccessCallbackResult; export declare function getSystemInfoSync(): WechatMiniprogram.GetSystemInfoSyncResult;
export declare function addUnit(value?: string | number): string | undefined; export declare function addUnit(value?: string | number): string | undefined;

1
dist/common/version.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export declare function canIUseModel(): boolean;

27
dist/common/version.js vendored Normal file
View File

@ -0,0 +1,27 @@
import { getSystemInfoSync } from './utils';
function compareVersion(v1, v2) {
v1 = v1.split('.');
v2 = v2.split('.');
const len = Math.max(v1.length, v2.length);
while (v1.length < len) {
v1.push('0');
}
while (v2.length < len) {
v2.push('0');
}
for (let i = 0; i < len; i++) {
const num1 = parseInt(v1[i], 10);
const num2 = parseInt(v2[i], 10);
if (num1 > num2) {
return 1;
}
if (num1 < num2) {
return -1;
}
}
return 0;
}
export function canIUseModel() {
const system = getSystemInfoSync();
return compareVersion(system.SDKVersion, '2.9.3') >= 0;
}

View File

@ -9,20 +9,20 @@ VantComponent({
millisecond: Boolean, millisecond: Boolean,
time: { time: {
type: Number, type: Number,
observer: 'reset' observer: 'reset',
}, },
format: { format: {
type: String, type: String,
value: 'HH:mm:ss' value: 'HH:mm:ss',
}, },
autoStart: { autoStart: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
timeData: parseTimeData(0), timeData: parseTimeData(0),
formattedTime: '0' formattedTime: '0',
}, },
destroyed() { destroyed() {
clearTimeout(this.tid); clearTimeout(this.tid);
@ -55,8 +55,7 @@ VantComponent({
tick() { tick() {
if (this.data.millisecond) { if (this.data.millisecond) {
this.microTick(); this.microTick();
} } else {
else {
this.macroTick(); this.macroTick();
} }
}, },
@ -89,12 +88,12 @@ VantComponent({
this.$emit('change', timeData); this.$emit('change', timeData);
} }
this.setData({ this.setData({
formattedTime: parseFormat(this.data.format, timeData) formattedTime: parseFormat(this.data.format, timeData),
}); });
if (remain === 0) { if (remain === 0) {
this.pause(); this.pause();
this.$emit('finish'); this.$emit('finish');
} }
} },
} },
}); });

View File

@ -20,7 +20,7 @@ export function parseTimeData(time) {
hours, hours,
minutes, minutes,
seconds, seconds,
milliseconds milliseconds,
}; };
} }
export function parseFormat(format, timeData) { export function parseFormat(format, timeData) {
@ -28,26 +28,22 @@ export function parseFormat(format, timeData) {
let { hours, minutes, seconds, milliseconds } = timeData; let { hours, minutes, seconds, milliseconds } = timeData;
if (format.indexOf('DD') === -1) { if (format.indexOf('DD') === -1) {
hours += days * 24; hours += days * 24;
} } else {
else {
format = format.replace('DD', padZero(days)); format = format.replace('DD', padZero(days));
} }
if (format.indexOf('HH') === -1) { if (format.indexOf('HH') === -1) {
minutes += hours * 60; minutes += hours * 60;
} } else {
else {
format = format.replace('HH', padZero(hours)); format = format.replace('HH', padZero(hours));
} }
if (format.indexOf('mm') === -1) { if (format.indexOf('mm') === -1) {
seconds += minutes * 60; seconds += minutes * 60;
} } else {
else {
format = format.replace('mm', padZero(minutes)); format = format.replace('mm', padZero(minutes));
} }
if (format.indexOf('ss') === -1) { if (format.indexOf('ss') === -1) {
milliseconds += seconds * 1000; milliseconds += seconds * 1000;
} } else {
else {
format = format.replace('ss', padZero(seconds)); format = format.replace('ss', padZero(seconds));
} }
return format.replace('SSS', padZero(milliseconds, 3)); return format.replace('SSS', padZero(milliseconds, 3));

View File

@ -20,8 +20,7 @@ function times(n, iteratee) {
return result; return result;
} }
function getTrueValue(formattedValue) { function getTrueValue(formattedValue) {
if (!formattedValue) if (!formattedValue) return;
return;
while (isNaN(parseInt(formattedValue, 10))) { while (isNaN(parseInt(formattedValue, 10))) {
formattedValue = formattedValue.slice(1); formattedValue = formattedValue.slice(1);
} }
@ -33,47 +32,59 @@ function getMonthEndDay(year, month) {
const defaultFormatter = (_, value) => value; const defaultFormatter = (_, value) => value;
VantComponent({ VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: Object.assign(Object.assign({}, pickerProps), { value: { props: Object.assign(Object.assign({}, pickerProps), {
value: {
type: null, type: null,
observer: 'updateValue' observer: 'updateValue',
}, filter: null, type: { },
filter: null,
type: {
type: String, type: String,
value: 'datetime', value: 'datetime',
observer: 'updateValue' observer: 'updateValue',
}, showToolbar: { },
showToolbar: {
type: Boolean, type: Boolean,
value: true value: true,
}, formatter: { },
formatter: {
type: null, type: null,
value: defaultFormatter value: defaultFormatter,
}, minDate: { },
minDate: {
type: Number, type: Number,
value: new Date(currentYear - 10, 0, 1).getTime(), value: new Date(currentYear - 10, 0, 1).getTime(),
observer: 'updateValue' observer: 'updateValue',
}, maxDate: { },
maxDate: {
type: Number, type: Number,
value: new Date(currentYear + 10, 11, 31).getTime(), value: new Date(currentYear + 10, 11, 31).getTime(),
observer: 'updateValue' observer: 'updateValue',
}, minHour: { },
minHour: {
type: Number, type: Number,
value: 0, value: 0,
observer: 'updateValue' observer: 'updateValue',
}, maxHour: { },
maxHour: {
type: Number, type: Number,
value: 23, value: 23,
observer: 'updateValue' observer: 'updateValue',
}, minMinute: { },
minMinute: {
type: Number, type: Number,
value: 0, value: 0,
observer: 'updateValue' observer: 'updateValue',
}, maxMinute: { },
maxMinute: {
type: Number, type: Number,
value: 59, value: 59,
observer: 'updateValue' observer: 'updateValue',
} }), },
}),
data: { data: {
innerValue: Date.now(), innerValue: Date.now(),
columns: [] columns: [],
}, },
methods: { methods: {
updateValue() { updateValue() {
@ -84,8 +95,7 @@ VantComponent({
this.updateColumnValue(val).then(() => { this.updateColumnValue(val).then(() => {
this.$emit('input', val); this.$emit('input', val);
}); });
} } else {
else {
this.updateColumns(); this.updateColumns();
} }
}, },
@ -94,21 +104,22 @@ VantComponent({
this.picker = this.selectComponent('.van-datetime-picker'); this.picker = this.selectComponent('.van-datetime-picker');
const { picker } = this; const { picker } = this;
const { setColumnValues } = picker; const { setColumnValues } = picker;
picker.setColumnValues = (...args) => setColumnValues.apply(picker, [...args, false]); picker.setColumnValues = (...args) =>
setColumnValues.apply(picker, [...args, false]);
} }
return this.picker; return this.picker;
}, },
updateColumns() { updateColumns() {
const { formatter = defaultFormatter } = this.data; const { formatter = defaultFormatter } = this.data;
const results = this.getOriginColumns().map(column => ({ const results = this.getOriginColumns().map((column) => ({
values: column.values.map(value => formatter(column.type, value)) values: column.values.map((value) => formatter(column.type, value)),
})); }));
return this.set({ columns: results }); return this.set({ columns: results });
}, },
getOriginColumns() { getOriginColumns() {
const { filter } = this.data; const { filter } = this.data;
const results = this.getRanges().map(({ type, range }) => { const results = this.getRanges().map(({ type, range }) => {
let values = times(range[1] - range[0] + 1, index => { let values = times(range[1] - range[0] + 1, (index) => {
let value = range[0] + index; let value = range[0] + index;
value = type === 'year' ? `${value}` : padZero(value); value = type === 'year' ? `${value}` : padZero(value);
return value; return value;
@ -126,42 +137,52 @@ VantComponent({
return [ return [
{ {
type: 'hour', type: 'hour',
range: [data.minHour, data.maxHour] range: [data.minHour, data.maxHour],
}, },
{ {
type: 'minute', type: 'minute',
range: [data.minMinute, data.maxMinute] range: [data.minMinute, data.maxMinute],
} },
]; ];
} }
const { maxYear, maxDate, maxMonth, maxHour, maxMinute } = this.getBoundary('max', data.innerValue); const {
const { minYear, minDate, minMonth, minHour, minMinute } = this.getBoundary('min', data.innerValue); maxYear,
maxDate,
maxMonth,
maxHour,
maxMinute,
} = this.getBoundary('max', data.innerValue);
const {
minYear,
minDate,
minMonth,
minHour,
minMinute,
} = this.getBoundary('min', data.innerValue);
const result = [ const result = [
{ {
type: 'year', type: 'year',
range: [minYear, maxYear] range: [minYear, maxYear],
}, },
{ {
type: 'month', type: 'month',
range: [minMonth, maxMonth] range: [minMonth, maxMonth],
}, },
{ {
type: 'day', type: 'day',
range: [minDate, maxDate] range: [minDate, maxDate],
}, },
{ {
type: 'hour', type: 'hour',
range: [minHour, maxHour] range: [minHour, maxHour],
}, },
{ {
type: 'minute', type: 'minute',
range: [minMinute, maxMinute] range: [minMinute, maxMinute],
} },
]; ];
if (data.type === 'date') if (data.type === 'date') result.splice(3, 2);
result.splice(3, 2); if (data.type === 'year-month') result.splice(2, 3);
if (data.type === 'year-month')
result.splice(2, 3);
return result; return result;
}, },
correctValue(value) { correctValue(value) {
@ -170,8 +191,7 @@ VantComponent({
const isDateType = data.type !== 'time'; const isDateType = data.type !== 'time';
if (isDateType && !isValidDate(value)) { if (isDateType && !isValidDate(value)) {
value = data.minDate; value = data.minDate;
} } else if (!isDateType && !value) {
else if (!isDateType && !value) {
const { minHour } = data; const { minHour } = data;
value = `${padZero(minHour)}:00`; value = `${padZero(minHour)}:00`;
} }
@ -218,7 +238,7 @@ VantComponent({
[`${type}Month`]: month, [`${type}Month`]: month,
[`${type}Date`]: date, [`${type}Date`]: date,
[`${type}Hour`]: hour, [`${type}Hour`]: hour,
[`${type}Minute`]: minute [`${type}Minute`]: minute,
}; };
}, },
onCancel() { onCancel() {
@ -233,9 +253,9 @@ VantComponent({
const picker = this.getPicker(); const picker = this.getPicker();
if (data.type === 'time') { if (data.type === 'time') {
const indexes = picker.getIndexes(); const indexes = picker.getIndexes();
value = `${+data.columns[0].values[indexes[0]]}:${+data.columns[1].values[indexes[1]]}`; value = `${+data.columns[0].values[indexes[0]]}:${+data.columns[1]
} .values[indexes[1]]}`;
else { } else {
const values = picker.getValues(); const values = picker.getValues();
const year = getTrueValue(values[0]); const year = getTrueValue(values[0]);
const month = getTrueValue(values[1]); const month = getTrueValue(values[1]);
@ -265,33 +285,33 @@ VantComponent({
const picker = this.getPicker(); const picker = this.getPicker();
if (type === 'time') { if (type === 'time') {
const pair = value.split(':'); const pair = value.split(':');
values = [ values = [formatter('hour', pair[0]), formatter('minute', pair[1])];
formatter('hour', pair[0]), } else {
formatter('minute', pair[1])
];
}
else {
const date = new Date(value); const date = new Date(value);
values = [ values = [
formatter('year', `${date.getFullYear()}`), formatter('year', `${date.getFullYear()}`),
formatter('month', padZero(date.getMonth() + 1)) formatter('month', padZero(date.getMonth() + 1)),
]; ];
if (type === 'date') { if (type === 'date') {
values.push(formatter('day', padZero(date.getDate()))); values.push(formatter('day', padZero(date.getDate())));
} }
if (type === 'datetime') { if (type === 'datetime') {
values.push(formatter('day', padZero(date.getDate())), formatter('hour', padZero(date.getHours())), formatter('minute', padZero(date.getMinutes()))); values.push(
formatter('day', padZero(date.getDate())),
formatter('hour', padZero(date.getHours())),
formatter('minute', padZero(date.getMinutes()))
);
} }
} }
return this.set({ innerValue: value }) return this.set({ innerValue: value })
.then(() => this.updateColumns()) .then(() => this.updateColumns())
.then(() => picker.setValues(values)); .then(() => picker.setValues(values));
} },
}, },
created() { created() {
const innerValue = this.correctValue(this.data.value); const innerValue = this.correctValue(this.data.value);
this.updateColumnValue(innerValue).then(() => { this.updateColumnValue(innerValue).then(() => {
this.$emit('input', innerValue); this.$emit('input', innerValue);
}); });
} },
}); });

24
dist/dialog/dialog.js vendored
View File

@ -3,7 +3,7 @@ function getContext() {
const pages = getCurrentPages(); const pages = getCurrentPages();
return pages[pages.length - 1]; return pages[pages.length - 1];
} }
const Dialog = options => { const Dialog = (options) => {
options = Object.assign(Object.assign({}, Dialog.currentOptions), options); options = Object.assign(Object.assign({}, Dialog.currentOptions), options);
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
const context = options.context || getContext(); const context = options.context || getContext();
@ -11,11 +11,14 @@ const Dialog = options => {
delete options.context; delete options.context;
delete options.selector; delete options.selector;
if (dialog) { if (dialog) {
dialog.setData(Object.assign({ onCancel: reject, onConfirm: resolve }, options)); dialog.setData(
Object.assign({ onCancel: reject, onConfirm: resolve }, options)
);
queue.push(dialog); queue.push(dialog);
} } else {
else { console.warn(
console.warn('未找到 van-dialog 节点,请确认 selector 及 context 是否正确'); '未找到 van-dialog 节点,请确认 selector 及 context 是否正确'
);
} }
}); });
}; };
@ -38,22 +41,23 @@ Dialog.defaultOptions = {
showConfirmButton: true, showConfirmButton: true,
showCancelButton: false, showCancelButton: false,
closeOnClickOverlay: false, closeOnClickOverlay: false,
confirmButtonOpenType: '' confirmButtonOpenType: '',
}; };
Dialog.alert = Dialog; Dialog.alert = Dialog;
Dialog.confirm = options => Dialog(Object.assign({ showCancelButton: true }, options)); Dialog.confirm = (options) =>
Dialog(Object.assign({ showCancelButton: true }, options));
Dialog.close = () => { Dialog.close = () => {
queue.forEach(dialog => { queue.forEach((dialog) => {
dialog.close(); dialog.close();
}); });
queue = []; queue = [];
}; };
Dialog.stopLoading = () => { Dialog.stopLoading = () => {
queue.forEach(dialog => { queue.forEach((dialog) => {
dialog.stopLoading(); dialog.stopLoading();
}); });
}; };
Dialog.setDefaultOptions = options => { Dialog.setDefaultOptions = (options) => {
Object.assign(Dialog.currentOptions, options); Object.assign(Dialog.currentOptions, options);
}; };
Dialog.resetDefaultOptions = () => { Dialog.resetDefaultOptions = () => {

40
dist/dialog/index.js vendored
View File

@ -9,7 +9,7 @@ VantComponent({
type: Boolean, type: Boolean,
observer(show) { observer(show) {
!show && this.stopLoading(); !show && this.stopLoading();
} },
}, },
title: String, title: String,
message: String, message: String,
@ -26,42 +26,42 @@ VantComponent({
width: null, width: null,
zIndex: { zIndex: {
type: Number, type: Number,
value: 2000 value: 2000,
}, },
confirmButtonText: { confirmButtonText: {
type: String, type: String,
value: '确认' value: '确认',
}, },
cancelButtonText: { cancelButtonText: {
type: String, type: String,
value: '取消' value: '取消',
}, },
confirmButtonColor: { confirmButtonColor: {
type: String, type: String,
value: BLUE value: BLUE,
}, },
cancelButtonColor: { cancelButtonColor: {
type: String, type: String,
value: GRAY value: GRAY,
}, },
showConfirmButton: { showConfirmButton: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
overlay: { overlay: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
transition: { transition: {
type: String, type: String,
value: 'scale' value: 'scale',
} },
}, },
data: { data: {
loading: { loading: {
confirm: false, confirm: false,
cancel: false cancel: false,
} },
}, },
methods: { methods: {
onConfirm() { onConfirm() {
@ -76,22 +76,22 @@ VantComponent({
handleAction(action) { handleAction(action) {
if (this.data.asyncClose) { if (this.data.asyncClose) {
this.setData({ this.setData({
[`loading.${action}`]: true [`loading.${action}`]: true,
}); });
} }
this.onClose(action); this.onClose(action);
}, },
close() { close() {
this.setData({ this.setData({
show: false show: false,
}); });
}, },
stopLoading() { stopLoading() {
this.setData({ this.setData({
loading: { loading: {
confirm: false, confirm: false,
cancel: false cancel: false,
} },
}); });
}, },
onClose(action) { onClose(action) {
@ -101,10 +101,12 @@ VantComponent({
this.$emit('close', action); this.$emit('close', action);
// 把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading // 把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading
this.$emit(action, { dialog: this }); this.$emit(action, { dialog: this });
const callback = this.data[action === 'confirm' ? 'onConfirm' : 'onCancel']; const callback = this.data[
action === 'confirm' ? 'onConfirm' : 'onCancel'
];
if (callback) { if (callback) {
callback(this); callback(this);
} }
} },
} },
}); });

View File

@ -16,7 +16,7 @@
class="van-dialog__header {{ message || useSlot ? '' : 'van-dialog--isolated' }}" class="van-dialog__header {{ message || useSlot ? '' : 'van-dialog--isolated' }}"
> >
<slot wx:if="{{ useTitleSlot }}" name="title" /> <slot wx:if="{{ useTitleSlot }}" name="title" />
<block wx:elif="{{ title }}"> {{ title }}</block> <block wx:elif="{{ title }}">{{ title }}</block>
</view> </view>
<slot wx:if="{{ useSlot }}" /> <slot wx:if="{{ useSlot }}" />

18
dist/divider/index.js vendored
View File

@ -3,31 +3,31 @@ VantComponent({
props: { props: {
dashed: { dashed: {
type: Boolean, type: Boolean,
value: false value: false,
}, },
hairline: { hairline: {
type: Boolean, type: Boolean,
value: false value: false,
}, },
contentPosition: { contentPosition: {
type: String, type: String,
value: '' value: '',
}, },
fontSize: { fontSize: {
type: Number, type: Number,
value: '' value: '',
}, },
borderColor: { borderColor: {
type: String, type: String,
value: '' value: '',
}, },
textColor: { textColor: {
type: String, type: String,
value: '' value: '',
}, },
customStyle: { customStyle: {
type: String, type: String,
value: '' value: '',
} },
} },
}); });

View File

@ -7,34 +7,34 @@ VantComponent({
current: 'dropdown-item', current: 'dropdown-item',
linked() { linked() {
this.updateDataFromParent(); this.updateDataFromParent();
} },
}, },
props: { props: {
value: { value: {
type: null, type: null,
observer: 'rerender' observer: 'rerender',
}, },
title: { title: {
type: String, type: String,
observer: 'rerender' observer: 'rerender',
}, },
disabled: Boolean, disabled: Boolean,
titleClass: { titleClass: {
type: String, type: String,
observer: 'rerender' observer: 'rerender',
}, },
options: { options: {
type: Array, type: Array,
value: [], value: [],
observer: 'rerender' observer: 'rerender',
}, },
popupStyle: String popupStyle: String,
}, },
data: { data: {
transition: true, transition: true,
showPopup: false, showPopup: false,
showWrapper: false, showWrapper: false,
displayTitle: '' displayTitle: '',
}, },
methods: { methods: {
rerender() { rerender() {
@ -44,13 +44,19 @@ VantComponent({
}, },
updateDataFromParent() { updateDataFromParent() {
if (this.parent) { if (this.parent) {
const { overlay, duration, activeColor, closeOnClickOverlay, direction } = this.parent.data; const {
overlay,
duration,
activeColor,
closeOnClickOverlay,
direction,
} = this.parent.data;
this.setData({ this.setData({
overlay, overlay,
duration, duration,
activeColor, activeColor,
closeOnClickOverlay, closeOnClickOverlay,
direction direction,
}); });
} }
}, },
@ -95,10 +101,9 @@ VantComponent({
this.setData({ wrapperStyle, showWrapper: true }); this.setData({ wrapperStyle, showWrapper: true });
this.rerender(); this.rerender();
}); });
} } else {
else {
this.rerender(); this.rerender();
} }
} },
} },
}); });

View File

@ -12,44 +12,44 @@ VantComponent({
}, },
unlinked() { unlinked() {
this.updateItemListData(); this.updateItemListData();
} },
}, },
props: { props: {
activeColor: { activeColor: {
type: String, type: String,
observer: 'updateChildrenData' observer: 'updateChildrenData',
}, },
overlay: { overlay: {
type: Boolean, type: Boolean,
value: true, value: true,
observer: 'updateChildrenData' observer: 'updateChildrenData',
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 10 value: 10,
}, },
duration: { duration: {
type: Number, type: Number,
value: 200, value: 200,
observer: 'updateChildrenData' observer: 'updateChildrenData',
}, },
direction: { direction: {
type: String, type: String,
value: 'down', value: 'down',
observer: 'updateChildrenData' observer: 'updateChildrenData',
}, },
closeOnClickOverlay: { closeOnClickOverlay: {
type: Boolean, type: Boolean,
value: true, value: true,
observer: 'updateChildrenData' observer: 'updateChildrenData',
}, },
closeOnClickOutside: { closeOnClickOutside: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
itemListData: [] itemListData: [],
}, },
beforeCreate() { beforeCreate() {
const { windowHeight } = wx.getSystemInfoSync(); const { windowHeight } = wx.getSystemInfoSync();
@ -57,12 +57,12 @@ VantComponent({
ARRAY.push(this); ARRAY.push(this);
}, },
destroyed() { destroyed() {
ARRAY = ARRAY.filter(item => item !== this); ARRAY = ARRAY.filter((item) => item !== this);
}, },
methods: { methods: {
updateItemListData() { updateItemListData() {
this.setData({ this.setData({
itemListData: this.children.map((child) => child.data) itemListData: this.children.map((child) => child.data),
}); });
}, },
updateChildrenData() { updateChildrenData() {
@ -75,8 +75,7 @@ VantComponent({
const { showPopup } = item.data; const { showPopup } = item.data;
if (index === active) { if (index === active) {
item.toggle(); item.toggle();
} } else if (showPopup) {
else if (showPopup) {
item.toggle(false, { immediate: true }); item.toggle(false, { immediate: true });
} }
}); });
@ -94,8 +93,7 @@ VantComponent({
let wrapperStyle = `z-index: ${zIndex};`; let wrapperStyle = `z-index: ${zIndex};`;
if (direction === 'down') { if (direction === 'down') {
wrapperStyle += `top: ${addUnit(offset)};`; wrapperStyle += `top: ${addUnit(offset)};`;
} } else {
else {
wrapperStyle += `bottom: ${addUnit(offset)};`; wrapperStyle += `bottom: ${addUnit(offset)};`;
} }
return wrapperStyle; return wrapperStyle;
@ -105,15 +103,17 @@ VantComponent({
const { index } = event.currentTarget.dataset; const { index } = event.currentTarget.dataset;
const child = this.children[index]; const child = this.children[index];
if (!child.data.disabled) { if (!child.data.disabled) {
ARRAY.forEach(menuItem => { ARRAY.forEach((menuItem) => {
if (menuItem && if (
menuItem &&
menuItem.data.closeOnClickOutside && menuItem.data.closeOnClickOutside &&
menuItem !== this) { menuItem !== this
) {
menuItem.close(); menuItem.close();
} }
}); });
this.toggleItem(index); this.toggleItem(index);
} }
} },
} },
}); });

58
dist/field/index.js vendored
View File

@ -1,25 +1,55 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { commonProps, inputProps, textareaProps } from './props'; import { commonProps, inputProps, textareaProps } from './props';
import { canIUseModel } from '../common/version';
VantComponent({ VantComponent({
field: true, field: true,
classes: ['input-class', 'right-icon-class'], classes: ['input-class', 'right-icon-class'],
props: Object.assign(Object.assign(Object.assign(Object.assign({}, commonProps), inputProps), textareaProps), { size: String, icon: String, label: String, error: Boolean, center: Boolean, isLink: Boolean, leftIcon: String, rightIcon: String, autosize: [Boolean, Object], readonly: { props: Object.assign(
Object.assign(
Object.assign(Object.assign({}, commonProps), inputProps),
textareaProps
),
{
size: String,
icon: String,
label: String,
error: Boolean,
center: Boolean,
isLink: Boolean,
leftIcon: String,
rightIcon: String,
autosize: [Boolean, Object],
readonly: {
type: Boolean, type: Boolean,
observer: 'setShowClear' observer: 'setShowClear',
}, required: Boolean, iconClass: String, clearable: { },
required: Boolean,
iconClass: String,
clearable: {
type: Boolean, type: Boolean,
observer: 'setShowClear' observer: 'setShowClear',
}, clickable: Boolean, inputAlign: String, customStyle: String, errorMessage: String, arrowDirection: String, showWordLimit: Boolean, errorMessageAlign: String, border: { },
clickable: Boolean,
inputAlign: String,
customStyle: String,
errorMessage: String,
arrowDirection: String,
showWordLimit: Boolean,
errorMessageAlign: String,
border: {
type: Boolean, type: Boolean,
value: true value: true,
}, titleWidth: { },
titleWidth: {
type: String, type: String,
value: '90px' value: '90px',
} }), },
}
),
data: { data: {
focused: false, focused: false,
innerValue: '', innerValue: '',
showClear: false showClear: false,
}, },
created() { created() {
this.value = this.data.value; this.value = this.data.value;
@ -75,7 +105,9 @@ VantComponent({
this.$emit('keyboardheightchange', event.detail); this.$emit('keyboardheightchange', event.detail);
}, },
emitChange() { emitChange() {
if (canIUseModel()) {
this.setData({ value: this.value }); this.setData({ value: this.value });
}
wx.nextTick(() => { wx.nextTick(() => {
this.$emit('input', this.value); this.$emit('input', this.value);
this.$emit('change', this.value); this.$emit('change', this.value);
@ -85,9 +117,9 @@ VantComponent({
const { clearable, readonly } = this.data; const { clearable, readonly } = this.data;
const { focused, value } = this; const { focused, value } = this;
this.setData({ this.setData({
showClear: !!clearable && !!focused && !!value && !readonly showClear: !!clearable && !!focused && !!value && !readonly,
}); });
}, },
noop() { } noop() {},
} },
}); });

View File

@ -98,7 +98,7 @@
<view wx:if="{{ showWordLimit && maxlength }}" class="van-field__word-limit"> <view wx:if="{{ showWordLimit && maxlength }}" class="van-field__word-limit">
<view class="{{ utils.bem('field__word-num', { full: value.length >= maxlength }) }}">{{ value.length }}</view>/{{ maxlength }} <view class="{{ utils.bem('field__word-num', { full: value.length >= maxlength }) }}">{{ value.length }}</view>/{{ maxlength }}
</view> </view>
<view wx:if="{{ errorMessage }}" class="van-field__error-message {{ utils.bem('field__error', [errorMessageAlign, { disabled, error }]) }}"> <view wx:if="{{ errorMessage }}" class="{{ utils.bem('field__error-message', [errorMessageAlign, { disabled, error }]) }}">
{{ errorMessage }} {{ errorMessage }}
</view> </view>
</van-cell> </van-cell>

24
dist/field/props.js vendored
View File

@ -6,7 +6,7 @@ export const commonProps = {
this.setData({ innerValue: value }); this.setData({ innerValue: value });
this.value = value; this.value = value;
} }
} },
}, },
placeholder: String, placeholder: String,
placeholderStyle: String, placeholderStyle: String,
@ -14,50 +14,50 @@ export const commonProps = {
disabled: Boolean, disabled: Boolean,
maxlength: { maxlength: {
type: Number, type: Number,
value: -1 value: -1,
}, },
cursorSpacing: { cursorSpacing: {
type: Number, type: Number,
value: 50 value: 50,
}, },
autoFocus: Boolean, autoFocus: Boolean,
focus: Boolean, focus: Boolean,
cursor: { cursor: {
type: Number, type: Number,
value: -1 value: -1,
}, },
selectionStart: { selectionStart: {
type: Number, type: Number,
value: -1 value: -1,
}, },
selectionEnd: { selectionEnd: {
type: Number, type: Number,
value: -1 value: -1,
}, },
adjustPosition: { adjustPosition: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
holdKeyboard: Boolean holdKeyboard: Boolean,
}; };
export const inputProps = { export const inputProps = {
type: { type: {
type: String, type: String,
value: 'text' value: 'text',
}, },
password: Boolean, password: Boolean,
confirmType: String, confirmType: String,
confirmHold: Boolean confirmHold: Boolean,
}; };
export const textareaProps = { export const textareaProps = {
autoHeight: Boolean, autoHeight: Boolean,
fixed: Boolean, fixed: Boolean,
showConfirmBar: { showConfirmBar: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
disableDefaultPadding: { disableDefaultPadding: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
}; };

View File

@ -17,8 +17,8 @@ VantComponent({
plain: Boolean, plain: Boolean,
type: { type: {
type: String, type: String,
value: 'danger' value: 'danger',
} },
}, },
mounted() { mounted() {
this.updateStyle(); this.updateStyle();
@ -34,8 +34,8 @@ VantComponent({
const index = children.indexOf(this); const index = children.indexOf(this);
this.setData({ this.setData({
isFirst: index === 0, isFirst: index === 0,
isLast: index === length - 1 isLast: index === length - 1,
}); });
} },
} },
}); });

View File

@ -11,12 +11,12 @@ VantComponent({
info: String, info: String,
icon: String, icon: String,
disabled: Boolean, disabled: Boolean,
loading: Boolean loading: Boolean,
}, },
methods: { methods: {
onClick(event) { onClick(event) {
this.$emit('click', event.detail); this.$emit('click', event.detail);
this.jumpLink(); this.jumpLink();
} },
} },
}); });

View File

@ -8,7 +8,7 @@ VantComponent({
props: { props: {
safeAreaInsetBottom: { safeAreaInsetBottom: {
type: Boolean, type: Boolean,
value: true value: true,
} },
} },
}); });

View File

@ -14,7 +14,7 @@ VantComponent({
dot: Boolean, dot: Boolean,
info: null, info: null,
text: String, text: String,
useSlot: Boolean useSlot: Boolean,
}, },
data: { data: {
viewStyle: '', viewStyle: '',
@ -59,12 +59,12 @@ VantComponent({
border, border,
square, square,
gutter, gutter,
clickable clickable,
}); });
}, },
onClick() { onClick() {
this.$emit('click'); this.$emit('click');
this.jumpLink(); this.jumpLink();
} },
} },
}); });

20
dist/grid/index.js vendored
View File

@ -9,32 +9,32 @@ VantComponent({
props: { props: {
square: { square: {
type: Boolean, type: Boolean,
observer: 'updateChildren' observer: 'updateChildren',
}, },
gutter: { gutter: {
type: [Number, String], type: [Number, String],
value: 0, value: 0,
observer: 'updateChildren' observer: 'updateChildren',
}, },
clickable: { clickable: {
type: Boolean, type: Boolean,
observer: 'updateChildren' observer: 'updateChildren',
}, },
columnNum: { columnNum: {
type: Number, type: Number,
value: 4, value: 4,
observer: 'updateChildren' observer: 'updateChildren',
}, },
center: { center: {
type: Boolean, type: Boolean,
value: true, value: true,
observer: 'updateChildren' observer: 'updateChildren',
}, },
border: { border: {
type: Boolean, type: Boolean,
value: true, value: true,
observer: 'updateChildren' observer: 'updateChildren',
} },
}, },
data: { data: {
viewStyle: '', viewStyle: '',
@ -43,7 +43,7 @@ VantComponent({
const { gutter } = this.data; const { gutter } = this.data;
if (gutter) { if (gutter) {
this.setData({ this.setData({
viewStyle: `padding-left: ${addUnit(gutter)}` viewStyle: `padding-left: ${addUnit(gutter)}`,
}); });
} }
}, },
@ -52,6 +52,6 @@ VantComponent({
this.children.forEach((child) => { this.children.forEach((child) => {
child.updateStyle(); child.updateStyle();
}); });
} },
} },
}); });

12
dist/icon/index.js vendored
View File

@ -8,20 +8,20 @@ VantComponent({
customStyle: String, customStyle: String,
classPrefix: { classPrefix: {
type: String, type: String,
value: 'van-icon' value: 'van-icon',
}, },
name: { name: {
type: String, type: String,
observer(val) { observer(val) {
this.setData({ this.setData({
isImageName: val.indexOf('/') !== -1 isImageName: val.indexOf('/') !== -1,
}); });
} },
} },
}, },
methods: { methods: {
onClick() { onClick() {
this.$emit('click'); this.$emit('click');
} },
} },
}); });

26
dist/image/index.js vendored
View File

@ -8,7 +8,7 @@ const FIT_MODE_MAP = {
cover: 'aspectFill', cover: 'aspectFill',
contain: 'aspectFit', contain: 'aspectFit',
widthFix: 'widthFix', widthFix: 'widthFix',
heightFix: 'heightFix' heightFix: 'heightFix',
}; };
VantComponent({ VantComponent({
mixins: [button, openType], mixins: [button, openType],
@ -19,18 +19,18 @@ VantComponent({
observer() { observer() {
this.setData({ this.setData({
error: false, error: false,
loading: true loading: true,
}); });
} },
}, },
round: Boolean, round: Boolean,
width: { width: {
type: null, type: null,
observer: 'setStyle' observer: 'setStyle',
}, },
height: { height: {
type: null, type: null,
observer: 'setStyle' observer: 'setStyle',
}, },
radius: null, radius: null,
lazyLoad: Boolean, lazyLoad: Boolean,
@ -40,16 +40,16 @@ VantComponent({
fit: { fit: {
type: String, type: String,
value: 'fill', value: 'fill',
observer: 'setMode' observer: 'setMode',
}, },
showError: { showError: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
showLoading: { showLoading: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
error: false, error: false,
@ -83,19 +83,19 @@ VantComponent({
}, },
onLoad(event) { onLoad(event) {
this.setData({ this.setData({
loading: false loading: false,
}); });
this.$emit('load', event.detail); this.$emit('load', event.detail);
}, },
onError(event) { onError(event) {
this.setData({ this.setData({
loading: false, loading: false,
error: true error: true,
}); });
this.$emit('error', event.detail); this.$emit('error', event.detail);
}, },
onClick(event) { onClick(event) {
this.$emit('click', event.detail); this.$emit('click', event.detail);
} },
} },
}); });

View File

@ -3,28 +3,28 @@ VantComponent({
relation: { relation: {
name: 'index-bar', name: 'index-bar',
type: 'ancestor', type: 'ancestor',
current: 'index-anchor' current: 'index-anchor',
}, },
props: { props: {
useSlot: Boolean, useSlot: Boolean,
index: null index: null,
}, },
data: { data: {
active: false, active: false,
wrapperStyle: '', wrapperStyle: '',
anchorStyle: '' anchorStyle: '',
}, },
methods: { methods: {
scrollIntoView(scrollTop) { scrollIntoView(scrollTop) {
this.getBoundingClientRect().then((rect) => { this.getBoundingClientRect().then((rect) => {
wx.pageScrollTo({ wx.pageScrollTo({
duration: 0, duration: 0,
scrollTop: scrollTop + rect.top - this.parent.data.stickyOffsetTop scrollTop: scrollTop + rect.top - this.parent.data.stickyOffsetTop,
}); });
}); });
}, },
getBoundingClientRect() { getBoundingClientRect() {
return this.getRect('.van-index-anchor-wrapper'); return this.getRect('.van-index-anchor-wrapper');
} },
} },
}); });

View File

@ -19,39 +19,39 @@ VantComponent({
}, },
unlinked() { unlinked() {
this.updateData(); this.updateData();
} },
}, },
props: { props: {
sticky: { sticky: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 1 value: 1,
}, },
highlightColor: { highlightColor: {
type: String, type: String,
value: GREEN value: GREEN,
}, },
stickyOffsetTop: { stickyOffsetTop: {
type: Number, type: Number,
value: 0 value: 0,
}, },
indexList: { indexList: {
type: Array, type: Array,
value: indexList() value: indexList(),
} },
}, },
mixins: [ mixins: [
pageScrollMixin(function (event) { pageScrollMixin(function (event) {
this.scrollTop = event.scrollTop || 0; this.scrollTop = event.scrollTop || 0;
this.onScroll(); this.onScroll();
}) }),
], ],
data: { data: {
activeAnchorIndex: null, activeAnchorIndex: null,
showSidebar: false showSidebar: false,
}, },
created() { created() {
this.scrollTop = 0; this.scrollTop = 0;
@ -64,7 +64,7 @@ VantComponent({
} }
this.timer = setTimeout(() => { this.timer = setTimeout(() => {
this.setData({ this.setData({
showSidebar: !!this.children.length showSidebar: !!this.children.length,
}); });
this.setRect().then(() => { this.setRect().then(() => {
this.onScroll(); this.onScroll();
@ -76,38 +76,40 @@ VantComponent({
return Promise.all([ return Promise.all([
this.setAnchorsRect(), this.setAnchorsRect(),
this.setListRect(), this.setListRect(),
this.setSiderbarRect() this.setSiderbarRect(),
]); ]);
}, },
setAnchorsRect() { setAnchorsRect() {
return Promise.all(this.children.map(anchor => anchor return Promise.all(
.getRect('.van-index-anchor-wrapper') this.children.map((anchor) =>
.then((rect) => { anchor.getRect('.van-index-anchor-wrapper').then((rect) => {
Object.assign(anchor, { Object.assign(anchor, {
height: rect.height, height: rect.height,
top: rect.top + this.scrollTop top: rect.top + this.scrollTop,
}); });
}))); })
)
);
}, },
setListRect() { setListRect() {
return this.getRect('.van-index-bar').then((rect) => { return this.getRect('.van-index-bar').then((rect) => {
Object.assign(this, { Object.assign(this, {
height: rect.height, height: rect.height,
top: rect.top + this.scrollTop top: rect.top + this.scrollTop,
}); });
}); });
}, },
setSiderbarRect() { setSiderbarRect() {
return this.getRect('.van-index-bar__sidebar').then(res => { return this.getRect('.van-index-bar__sidebar').then((res) => {
this.sidebar = { this.sidebar = {
height: res.height, height: res.height,
top: res.top top: res.top,
}; };
}); });
}, },
setDiffData({ target, data }) { setDiffData({ target, data }) {
const diffData = {}; const diffData = {};
Object.keys(data).forEach(key => { Object.keys(data).forEach((key) => {
if (target.data[key] !== data[key]) { if (target.data[key] !== data[key]) {
diffData[key] = data[key]; diffData[key] = data[key];
} }
@ -117,11 +119,9 @@ VantComponent({
} }
}, },
getAnchorRect(anchor) { getAnchorRect(anchor) {
return anchor return anchor.getRect('.van-index-anchor-wrapper').then((rect) => ({
.getRect('.van-index-anchor-wrapper')
.then((rect) => ({
height: rect.height, height: rect.height,
top: rect.top top: rect.top,
})); }));
}, },
getActiveAnchorIndex() { getActiveAnchorIndex() {
@ -146,8 +146,8 @@ VantComponent({
this.setDiffData({ this.setDiffData({
target: this, target: this,
data: { data: {
activeAnchorIndex: active activeAnchorIndex: active,
} },
}); });
if (sticky) { if (sticky) {
let isActiveAnchorSticky = false; let isActiveAnchorSticky = false;
@ -177,14 +177,14 @@ VantComponent({
data: { data: {
active: true, active: true,
anchorStyle, anchorStyle,
wrapperStyle wrapperStyle,
} },
}); });
} } else if (index === active - 1) {
else if (index === active - 1) {
const currentAnchor = children[index]; const currentAnchor = children[index];
const currentOffsetTop = currentAnchor.top; const currentOffsetTop = currentAnchor.top;
const targetOffsetTop = index === children.length - 1 const targetOffsetTop =
index === children.length - 1
? this.top ? this.top
: children[index + 1].top; : children[index + 1].top;
const parentOffsetHeight = targetOffsetTop - currentOffsetTop; const parentOffsetHeight = targetOffsetTop - currentOffsetTop;
@ -199,18 +199,17 @@ VantComponent({
target: item, target: item,
data: { data: {
active: true, active: true,
anchorStyle anchorStyle,
} },
}); });
} } else {
else {
this.setDiffData({ this.setDiffData({
target: item, target: item,
data: { data: {
active: false, active: false,
anchorStyle: '', anchorStyle: '',
wrapperStyle: '' wrapperStyle: '',
} },
}); });
} }
}); });
@ -226,8 +225,7 @@ VantComponent({
let index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight); let index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
if (index < 0) { if (index < 0) {
index = 0; index = 0;
} } else if (index > sidebarLength - 1) {
else if (index > sidebarLength - 1) {
index = sidebarLength - 1; index = sidebarLength - 1;
} }
this.scrollToAnchor(index); this.scrollToAnchor(index);
@ -240,11 +238,13 @@ VantComponent({
return; return;
} }
this.scrollToAnchorIndex = index; this.scrollToAnchorIndex = index;
const anchor = this.children.find((item) => item.data.index === this.data.indexList[index]); const anchor = this.children.find(
(item) => item.data.index === this.data.indexList[index]
);
if (anchor) { if (anchor) {
anchor.scrollIntoView(this.scrollTop); anchor.scrollIntoView(this.scrollTop);
this.$emit('select', anchor.data.index); this.$emit('select', anchor.data.index);
} }
} },
} },
}); });

4
dist/info/index.js vendored
View File

@ -3,6 +3,6 @@ VantComponent({
props: { props: {
dot: Boolean, dot: Boolean,
info: null, info: null,
customStyle: String customStyle: String,
} },
}); });

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;box-sizing:border-box;white-space:nowrap;text-align:center;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:PingFang SC,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,PingFang SC,Helvetica Neue,Arial,sans-serif);line-height:14px;line-height:calc(var(--info-size, 16px) - var(--info-border-width, 1px)*2);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-color,#ee0a24)} @import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;box-sizing:border-box;white-space:nowrap;text-align:center;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif);line-height:14px;line-height:calc(var(--info-size, 16px) - var(--info-border-width, 1px)*2);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-color,#ee0a24)}

View File

@ -5,10 +5,10 @@ VantComponent({
vertical: Boolean, vertical: Boolean,
type: { type: {
type: String, type: String,
value: 'circular' value: 'circular',
}, },
size: String, size: String,
textSize: String textSize: String,
}, },
data: { data: {
array12: Array.from({ length: 12 }), array12: Array.from({ length: 12 }),

13
dist/mixins/basic.js vendored
View File

@ -5,13 +5,14 @@ export const basic = Behavior({
}, },
set(data, callback) { set(data, callback) {
this.setData(data, callback); this.setData(data, callback);
return new Promise(resolve => wx.nextTick(resolve)); return new Promise((resolve) => wx.nextTick(resolve));
}, },
getRect(selector, all) { getRect(selector, all) {
return new Promise(resolve => { return new Promise((resolve) => {
wx.createSelectorQuery() wx.createSelectorQuery()
.in(this)[all ? 'selectAll' : 'select'](selector) .in(this)
.boundingClientRect(rect => { [all ? 'selectAll' : 'select'](selector)
.boundingClientRect((rect) => {
if (all && Array.isArray(rect) && rect.length) { if (all && Array.isArray(rect) && rect.length) {
resolve(rect); resolve(rect);
} }
@ -21,6 +22,6 @@ export const basic = Behavior({
}) })
.exec(); .exec();
}); });
} },
} },
}); });

View File

@ -10,6 +10,6 @@ export const button = Behavior({
sendMessageImg: String, sendMessageImg: String,
showMessageCard: Boolean, showMessageCard: Boolean,
appParameter: String, appParameter: String,
ariaLabel: String ariaLabel: String,
} },
}); });

8
dist/mixins/link.js vendored
View File

@ -3,8 +3,8 @@ export const link = Behavior({
url: String, url: String,
linkType: { linkType: {
type: String, type: String,
value: 'navigateTo' value: 'navigateTo',
} },
}, },
methods: { methods: {
jumpLink(urlKey = 'url') { jumpLink(urlKey = 'url') {
@ -12,6 +12,6 @@ export const link = Behavior({
if (url) { if (url) {
wx[this.data.linkType]({ url }); wx[this.data.linkType]({ url });
} }
} },
} },
}); });

View File

@ -1,6 +1,6 @@
export const openType = Behavior({ export const openType = Behavior({
properties: { properties: {
openType: String openType: String,
}, },
methods: { methods: {
bindGetUserInfo(event) { bindGetUserInfo(event) {
@ -21,5 +21,5 @@ export const openType = Behavior({
bindOpenSetting(event) { bindOpenSetting(event) {
this.$emit('opensetting', event.detail); this.$emit('opensetting', event.detail);
}, },
} },
}); });

View File

@ -10,19 +10,24 @@ function onPageScroll(event) {
} }
}); });
} }
export const pageScrollMixin = (scroller) => Behavior({ export const pageScrollMixin = (scroller) =>
Behavior({
attached() { attached() {
const page = getCurrentPage(); const page = getCurrentPage();
if (Array.isArray(page.vanPageScroller)) { if (Array.isArray(page.vanPageScroller)) {
page.vanPageScroller.push(scroller.bind(this)); page.vanPageScroller.push(scroller.bind(this));
} } else {
else { page.vanPageScroller =
page.vanPageScroller = [page.onPageScroll, scroller.bind(this)]; typeof page.onPageScroll === 'function'
? [page.onPageScroll.bind(page), scroller.bind(this)]
: [scroller.bind(this)];
} }
page.onPageScroll = onPageScroll; page.onPageScroll = onPageScroll;
}, },
detached() { detached() {
const page = getCurrentPage(); const page = getCurrentPage();
page.vanPageScroller = (page.vanPageScroller || []).filter(item => item !== scroller); page.vanPageScroller = (page.vanPageScroller || []).filter(
} (item) => item !== scroller
}); );
},
});

View File

@ -29,7 +29,8 @@ export const touch = Behavior({
this.deltaY = touch.clientY - this.startY; this.deltaY = touch.clientY - this.startY;
this.offsetX = Math.abs(this.deltaX); this.offsetX = Math.abs(this.deltaX);
this.offsetY = Math.abs(this.deltaY); this.offsetY = Math.abs(this.deltaY);
this.direction = this.direction || getDirection(this.offsetX, this.offsetY); this.direction =
} this.direction || getDirection(this.offsetX, this.offsetY);
} },
},
}); });

View File

@ -1 +1 @@
export declare const transition: (showDefaultValue: boolean) => any; export declare const transition: (showDefaultValue: boolean) => string;

View File

@ -3,9 +3,9 @@ const getClassNames = (name) => ({
enter: `van-${name}-enter van-${name}-enter-active enter-class enter-active-class`, enter: `van-${name}-enter van-${name}-enter-active enter-class enter-active-class`,
'enter-to': `van-${name}-enter-to van-${name}-enter-active enter-to-class enter-active-class`, 'enter-to': `van-${name}-enter-to van-${name}-enter-active enter-to-class enter-active-class`,
leave: `van-${name}-leave van-${name}-leave-active leave-class leave-active-class`, leave: `van-${name}-leave van-${name}-leave-active leave-class leave-active-class`,
'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 nextTick = () => new Promise(resolve => setTimeout(resolve, 1000 / 30)); const nextTick = () => new Promise((resolve) => setTimeout(resolve, 1000 / 30));
export const transition = function (showDefaultValue) { export const transition = function (showDefaultValue) {
return Behavior({ return Behavior({
properties: { properties: {
@ -14,23 +14,23 @@ export const transition = function (showDefaultValue) {
show: { show: {
type: Boolean, type: Boolean,
value: showDefaultValue, value: showDefaultValue,
observer: 'observeShow' observer: 'observeShow',
}, },
// @ts-ignore // @ts-ignore
duration: { duration: {
type: null, type: null,
value: 300, value: 300,
observer: 'observeDuration' observer: 'observeDuration',
}, },
name: { name: {
type: String, type: String,
value: 'fade' value: 'fade',
} },
}, },
data: { data: {
type: '', type: '',
inited: false, inited: false,
display: false display: false,
}, },
methods: { methods: {
observeShow(value, old) { observeShow(value, old) {
@ -54,7 +54,7 @@ export const transition = function (showDefaultValue) {
inited: true, inited: true,
display: true, display: true,
classes: classNames.enter, classes: classNames.enter,
currentDuration currentDuration,
}); });
}) })
.then(nextTick) .then(nextTick)
@ -62,10 +62,10 @@ export const transition = function (showDefaultValue) {
this.checkStatus('enter'); this.checkStatus('enter');
this.transitionEnded = false; this.transitionEnded = false;
this.setData({ this.setData({
classes: classNames['enter-to'] classes: classNames['enter-to'],
}); });
}) })
.catch(() => { }); .catch(() => {});
}, },
leave() { leave() {
if (!this.data.display) { if (!this.data.display) {
@ -83,7 +83,7 @@ export const transition = function (showDefaultValue) {
this.$emit('leave'); this.$emit('leave');
this.setData({ this.setData({
classes: classNames.leave, classes: classNames.leave,
currentDuration currentDuration,
}); });
}) })
.then(nextTick) .then(nextTick)
@ -92,10 +92,10 @@ export const transition = function (showDefaultValue) {
this.transitionEnded = false; this.transitionEnded = false;
setTimeout(() => this.onTransitionEnd(), currentDuration); setTimeout(() => this.onTransitionEnd(), currentDuration);
this.setData({ this.setData({
classes: classNames['leave-to'] classes: classNames['leave-to'],
}); });
}) })
.catch(() => { }); .catch(() => {});
}, },
checkStatus(status) { checkStatus(status) {
if (status !== this.status) { if (status !== this.status) {
@ -112,7 +112,7 @@ export const transition = function (showDefaultValue) {
if (!show && display) { if (!show && display) {
this.setData({ display: false }); this.setData({ display: false });
} }
} },
} },
}); });
}; };

20
dist/nav-bar/index.js vendored
View File

@ -5,37 +5,37 @@ VantComponent({
title: String, title: String,
fixed: { fixed: {
type: Boolean, type: Boolean,
observer: 'setHeight' observer: 'setHeight',
}, },
placeholder: { placeholder: {
type: Boolean, type: Boolean,
observer: 'setHeight' observer: 'setHeight',
}, },
leftText: String, leftText: String,
rightText: String, rightText: String,
leftArrow: Boolean, leftArrow: Boolean,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 1 value: 1,
}, },
safeAreaInsetTop: { safeAreaInsetTop: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
statusBarHeight: 0, statusBarHeight: 0,
height: 44 height: 44,
}, },
created() { created() {
const { statusBarHeight } = wx.getSystemInfoSync(); const { statusBarHeight } = wx.getSystemInfoSync();
this.setData({ this.setData({
statusBarHeight, statusBarHeight,
height: 44 + statusBarHeight height: 44 + statusBarHeight,
}); });
}, },
mounted() { mounted() {
@ -57,6 +57,6 @@ VantComponent({
this.setData({ height: res.height }); this.setData({ height: res.height });
}); });
}); });
} },
} },
}); });

View File

@ -14,19 +14,19 @@ VantComponent({
}, },
mode: { mode: {
type: String, type: String,
value: '' value: '',
}, },
url: { url: {
type: String, type: String,
value: '' value: '',
}, },
openType: { openType: {
type: String, type: String,
value: 'navigate' value: 'navigate',
}, },
delay: { delay: {
type: Number, type: Number,
value: 1 value: 1,
}, },
speed: { speed: {
type: Number, type: Number,
@ -35,33 +35,33 @@ VantComponent({
wx.nextTick(() => { wx.nextTick(() => {
this.init(); this.init();
}); });
} },
}, },
scrollable: { scrollable: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
leftIcon: { leftIcon: {
type: String, type: String,
value: '' value: '',
}, },
color: { color: {
type: String, type: String,
value: FONT_COLOR value: FONT_COLOR,
}, },
backgroundColor: { backgroundColor: {
type: String, type: String,
value: BG_COLOR value: BG_COLOR,
}, },
wrapable: Boolean wrapable: Boolean,
}, },
data: { data: {
show: true show: true,
}, },
created() { created() {
this.resetAnimation = wx.createAnimation({ this.resetAnimation = wx.createAnimation({
duration: 0, duration: 0,
timingFunction: 'linear' timingFunction: 'linear',
}); });
}, },
destroyed() { destroyed() {
@ -71,13 +71,15 @@ VantComponent({
init() { init() {
Promise.all([ Promise.all([
this.getRect('.van-notice-bar__content'), this.getRect('.van-notice-bar__content'),
this.getRect('.van-notice-bar__wrap') this.getRect('.van-notice-bar__wrap'),
]).then((rects) => { ]).then((rects) => {
const [contentRect, wrapRect] = rects; const [contentRect, wrapRect] = rects;
if (contentRect == null || if (
contentRect == null ||
wrapRect == null || wrapRect == null ||
!contentRect.width || !contentRect.width ||
!wrapRect.width) { !wrapRect.width
) {
return; return;
} }
const { speed, scrollable, delay } = this.data; const { speed, scrollable, delay } = this.data;
@ -89,7 +91,7 @@ VantComponent({
this.animation = wx.createAnimation({ this.animation = wx.createAnimation({
duration, duration,
timingFunction: 'linear', timingFunction: 'linear',
delay delay,
}); });
this.scroll(); this.scroll();
} }
@ -102,14 +104,14 @@ VantComponent({
animationData: this.resetAnimation animationData: this.resetAnimation
.translateX(this.wrapWidth) .translateX(this.wrapWidth)
.step() .step()
.export() .export(),
}); });
setTimeout(() => { setTimeout(() => {
this.setData({ this.setData({
animationData: this.animation animationData: this.animation
.translateX(-this.contentWidth) .translateX(-this.contentWidth)
.step() .step()
.export() .export(),
}); });
}, 20); }, 20);
this.timer = setTimeout(() => { this.timer = setTimeout(() => {
@ -123,6 +125,6 @@ VantComponent({
}, },
onClick(event) { onClick(event) {
this.$emit('click', event); this.$emit('click', event);
} },
} },
}); });

16
dist/notify/index.js vendored
View File

@ -6,25 +6,25 @@ VantComponent({
background: String, background: String,
type: { type: {
type: String, type: String,
value: 'danger' value: 'danger',
}, },
color: { color: {
type: String, type: String,
value: WHITE value: WHITE,
}, },
duration: { duration: {
type: Number, type: Number,
value: 3000 value: 3000,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 110 value: 110,
}, },
safeAreaInsetTop: { safeAreaInsetTop: {
type: Boolean, type: Boolean,
value: false value: false,
}, },
top: null top: null,
}, },
data: { data: {
show: false, show: false,
@ -56,6 +56,6 @@ VantComponent({
if (onClick) { if (onClick) {
onClick(event.detail); onClick(event.detail);
} }
} },
} },
}); });

16
dist/notify/notify.js vendored
View File

@ -9,9 +9,9 @@ const defaultOptions = {
top: 0, top: 0,
color: WHITE, color: WHITE,
safeAreaInsetTop: false, safeAreaInsetTop: false,
onClick: () => { }, onClick: () => {},
onOpened: () => { }, onOpened: () => {},
onClose: () => { } onClose: () => {},
}; };
function parseOptions(message) { function parseOptions(message) {
return typeof message === 'string' ? { message } : message; return typeof message === 'string' ? { message } : message;
@ -21,7 +21,10 @@ function getContext() {
return pages[pages.length - 1]; return pages[pages.length - 1];
} }
export default function Notify(options) { export default function Notify(options) {
options = Object.assign(Object.assign({}, defaultOptions), parseOptions(options)); options = Object.assign(
Object.assign({}, defaultOptions),
parseOptions(options)
);
const context = options.context || getContext(); const context = options.context || getContext();
const notify = context.selectComponent(options.selector); const notify = context.selectComponent(options.selector);
delete options.context; delete options.context;
@ -34,7 +37,10 @@ export default function Notify(options) {
console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确'); console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
} }
Notify.clear = function (options) { Notify.clear = function (options) {
options = Object.assign(Object.assign({}, defaultOptions), parseOptions(options)); options = Object.assign(
Object.assign({}, defaultOptions),
parseOptions(options)
);
const context = options.context || getContext(); const context = options.context || getContext();
const notify = context.selectComponent(options.selector); const notify = context.selectComponent(options.selector);
if (notify) { if (notify) {

10
dist/overlay/index.js vendored
View File

@ -5,18 +5,18 @@ VantComponent({
customStyle: String, customStyle: String,
duration: { duration: {
type: null, type: null,
value: 300 value: 300,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 1 value: 1,
} },
}, },
methods: { methods: {
onClick() { onClick() {
this.$emit('click'); this.$emit('click');
}, },
// for prevent touchmove // for prevent touchmove
noop() { } noop() {},
} },
}); });

4
dist/panel/index.js vendored
View File

@ -5,6 +5,6 @@ VantComponent({
desc: String, desc: String,
title: String, title: String,
status: String, status: String,
useFooterSlot: Boolean useFooterSlot: Boolean,
} },
}); });

View File

@ -10,15 +10,15 @@ VantComponent({
visibleItemCount: Number, visibleItemCount: Number,
initialOptions: { initialOptions: {
type: Array, type: Array,
value: [] value: [],
}, },
defaultIndex: { defaultIndex: {
type: Number, type: Number,
value: 0, value: 0,
observer(value) { observer(value) {
this.setIndex(value); this.setIndex(value);
} },
} },
}, },
data: { data: {
startY: 0, startY: 0,
@ -26,13 +26,13 @@ VantComponent({
duration: 0, duration: 0,
startOffset: 0, startOffset: 0,
options: [], options: [],
currentIndex: 0 currentIndex: 0,
}, },
created() { created() {
const { defaultIndex, initialOptions } = this.data; const { defaultIndex, initialOptions } = this.data;
this.set({ this.set({
currentIndex: defaultIndex, currentIndex: defaultIndex,
options: initialOptions options: initialOptions,
}).then(() => { }).then(() => {
this.setIndex(defaultIndex); this.setIndex(defaultIndex);
}); });
@ -45,21 +45,29 @@ VantComponent({
this.setData({ this.setData({
startY: event.touches[0].clientY, startY: event.touches[0].clientY,
startOffset: this.data.offset, startOffset: this.data.offset,
duration: 0 duration: 0,
}); });
}, },
onTouchMove(event) { onTouchMove(event) {
const { data } = this; const { data } = this;
const deltaY = event.touches[0].clientY - data.startY; const deltaY = event.touches[0].clientY - data.startY;
this.setData({ this.setData({
offset: range(data.startOffset + deltaY, -(this.getCount() * data.itemHeight), data.itemHeight) offset: range(
data.startOffset + deltaY,
-(this.getCount() * data.itemHeight),
data.itemHeight
),
}); });
}, },
onTouchEnd() { onTouchEnd() {
const { data } = this; const { data } = this;
if (data.offset !== data.startOffset) { if (data.offset !== data.startOffset) {
this.setData({ duration: DEFAULT_DURATION }); this.setData({ duration: DEFAULT_DURATION });
const index = range(Math.round(-data.offset / data.itemHeight), 0, this.getCount() - 1); const index = range(
Math.round(-data.offset / data.itemHeight),
0,
this.getCount() - 1
);
this.setIndex(index, true); this.setIndex(index, true);
} }
}, },
@ -72,12 +80,10 @@ VantComponent({
const count = this.getCount(); const count = this.getCount();
index = range(index, 0, count); index = range(index, 0, count);
for (let i = index; i < count; i++) { for (let i = index; i < count; i++) {
if (!this.isDisabled(data.options[i])) if (!this.isDisabled(data.options[i])) return i;
return i;
} }
for (let i = index - 1; i >= 0; i--) { for (let i = index - 1; i >= 0; i--) {
if (!this.isDisabled(data.options[i])) if (!this.isDisabled(data.options[i])) return i;
return i;
} }
}, },
isDisabled(option) { isDisabled(option) {
@ -112,6 +118,6 @@ VantComponent({
getValue() { getValue() {
const { data } = this; const { data } = this;
return data.options[data.currentIndex]; return data.options[data.currentIndex];
} },
} },
}); });

60
dist/picker/index.js vendored
View File

@ -2,35 +2,42 @@ import { VantComponent } from '../common/component';
import { pickerProps } from './shared'; import { pickerProps } from './shared';
VantComponent({ VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: Object.assign(Object.assign({}, pickerProps), { valueKey: { props: Object.assign(Object.assign({}, pickerProps), {
valueKey: {
type: String, type: String,
value: 'text' value: 'text',
}, toolbarPosition: { },
toolbarPosition: {
type: String, type: String,
value: 'top' value: 'top',
}, defaultIndex: { },
defaultIndex: {
type: Number, type: Number,
value: 0 value: 0,
}, columns: { },
columns: {
type: Array, type: Array,
value: [], value: [],
observer(columns = []) { observer(columns = []) {
this.simple = columns.length && !columns[0].values; this.simple = columns.length && !columns[0].values;
this.children = this.selectAllComponents('.van-picker__column'); this.children = this.selectAllComponents('.van-picker__column');
if (Array.isArray(this.children) && this.children.length) { if (Array.isArray(this.children) && this.children.length) {
this.setColumns().catch(() => { }); this.setColumns().catch(() => {});
} }
} },
} }), },
}),
beforeCreate() { beforeCreate() {
this.children = []; this.children = [];
}, },
methods: { methods: {
noop() { }, noop() {},
setColumns() { setColumns() {
const { data } = this; const { data } = this;
const columns = this.simple ? [{ values: data.columns }] : data.columns; const columns = this.simple ? [{ values: data.columns }] : data.columns;
const stack = columns.map((column, index) => this.setColumnValues(index, column.values)); const stack = columns.map((column, index) =>
this.setColumnValues(index, column.values)
);
return Promise.all(stack); return Promise.all(stack);
}, },
emit(event) { emit(event) {
@ -38,13 +45,12 @@ VantComponent({
if (this.simple) { if (this.simple) {
this.$emit(type, { this.$emit(type, {
value: this.getColumnValue(0), value: this.getColumnValue(0),
index: this.getColumnIndex(0) index: this.getColumnIndex(0),
}); });
} } else {
else {
this.$emit(type, { this.$emit(type, {
value: this.getValues(), value: this.getValues(),
index: this.getIndexes() index: this.getIndexes(),
}); });
} }
}, },
@ -53,14 +59,13 @@ VantComponent({
this.$emit('change', { this.$emit('change', {
picker: this, picker: this,
value: this.getColumnValue(0), value: this.getColumnValue(0),
index: this.getColumnIndex(0) index: this.getColumnIndex(0),
}); });
} } else {
else {
this.$emit('change', { this.$emit('change', {
picker: this, picker: this,
value: this.getValues(), value: this.getValues(),
index: event.currentTarget.dataset.index index: event.currentTarget.dataset.index,
}); });
} }
}, },
@ -103,7 +108,8 @@ VantComponent({
if (column == null) { if (column == null) {
return Promise.reject(new Error('setColumnValues: 对应列不存在')); return Promise.reject(new Error('setColumnValues: 对应列不存在'));
} }
const isSame = JSON.stringify(column.data.options) === JSON.stringify(options); const isSame =
JSON.stringify(column.data.options) === JSON.stringify(options);
if (isSame) { if (isSame) {
return Promise.resolve(); return Promise.resolve();
} }
@ -119,7 +125,9 @@ VantComponent({
}, },
// set values of all columns // set values of all columns
setValues(values) { setValues(values) {
const stack = values.map((value, index) => this.setColumnValue(index, value)); const stack = values.map((value, index) =>
this.setColumnValue(index, value)
);
return Promise.all(stack); return Promise.all(stack);
}, },
// get indexes of all columns // get indexes of all columns
@ -128,8 +136,10 @@ VantComponent({
}, },
// set indexes of all columns // set indexes of all columns
setIndexes(indexes) { setIndexes(indexes) {
const stack = indexes.map((optionIndex, columnIndex) => this.setColumnIndex(columnIndex, optionIndex)); const stack = indexes.map((optionIndex, columnIndex) =>
this.setColumnIndex(columnIndex, optionIndex)
);
return Promise.all(stack); return Promise.all(stack);
} },
} },
}); });

10
dist/picker/shared.js vendored
View File

@ -4,18 +4,18 @@ export const pickerProps = {
showToolbar: Boolean, showToolbar: Boolean,
cancelButtonText: { cancelButtonText: {
type: String, type: String,
value: '取消' value: '取消',
}, },
confirmButtonText: { confirmButtonText: {
type: String, type: String,
value: '确认' value: '确认',
}, },
visibleItemCount: { visibleItemCount: {
type: Number, type: Number,
value: 5 value: 5,
}, },
itemHeight: { itemHeight: {
type: Number, type: Number,
value: 44 value: 44,
} },
}; };

28
dist/popup/index.js vendored
View File

@ -8,7 +8,7 @@ VantComponent({
'leave-class', 'leave-class',
'leave-active-class', 'leave-active-class',
'leave-to-class', 'leave-to-class',
'close-icon-class' 'close-icon-class',
], ],
mixins: [transition(false)], mixins: [transition(false)],
props: { props: {
@ -18,41 +18,41 @@ VantComponent({
overlayStyle: String, overlayStyle: String,
transition: { transition: {
type: String, type: String,
observer: 'observeClass' observer: 'observeClass',
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 100 value: 100,
}, },
overlay: { overlay: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
closeIcon: { closeIcon: {
type: String, type: String,
value: 'cross' value: 'cross',
}, },
closeIconPosition: { closeIconPosition: {
type: String, type: String,
value: 'top-right' value: 'top-right',
}, },
closeOnClickOverlay: { closeOnClickOverlay: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
position: { position: {
type: String, type: String,
value: 'center', value: 'center',
observer: 'observeClass' observer: 'observeClass',
}, },
safeAreaInsetBottom: { safeAreaInsetBottom: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
safeAreaInsetTop: { safeAreaInsetTop: {
type: Boolean, type: Boolean,
value: false value: false,
} },
}, },
created() { created() {
this.observeClass(); this.observeClass();
@ -70,12 +70,12 @@ VantComponent({
observeClass() { observeClass() {
const { transition, position } = this.data; const { transition, position } = this.data;
const updateData = { const updateData = {
name: transition || position name: transition || position,
}; };
if (transition === 'none') { if (transition === 'none') {
updateData.duration = 0; updateData.duration = 0;
} }
this.setData(updateData); this.setData(updateData);
} },
} },
}); });

View File

@ -9,19 +9,19 @@ VantComponent({
trackColor: String, trackColor: String,
showPivot: { showPivot: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
color: { color: {
type: String, type: String,
value: BLUE value: BLUE,
}, },
textColor: { textColor: {
type: String, type: String,
value: '#fff' value: '#fff',
}, },
strokeWidth: { strokeWidth: {
type: null, type: null,
value: 4 value: 4,
} },
} },
}); });

View File

@ -12,12 +12,12 @@ VantComponent({
props: { props: {
value: { value: {
type: null, type: null,
observer: 'updateChildren' observer: 'updateChildren',
}, },
disabled: { disabled: {
type: Boolean, type: Boolean,
observer: 'updateChildren' observer: 'updateChildren',
} },
}, },
methods: { methods: {
updateChildren() { updateChildren() {
@ -27,8 +27,8 @@ VantComponent({
const { value, disabled } = this.data; const { value, disabled } = this.data;
child.setData({ child.setData({
value, value,
disabled: disabled || child.data.disabled disabled: disabled || child.data.disabled,
}); });
} },
} },
}); });

12
dist/radio/index.js vendored
View File

@ -15,17 +15,17 @@ VantComponent({
checkedColor: String, checkedColor: String,
labelPosition: { labelPosition: {
type: String, type: String,
value: 'right' value: 'right',
}, },
labelDisabled: Boolean, labelDisabled: Boolean,
shape: { shape: {
type: String, type: String,
value: 'round' value: 'round',
}, },
iconSize: { iconSize: {
type: null, type: null,
value: 20 value: 20,
} },
}, },
methods: { methods: {
emitChange(value) { emitChange(value) {
@ -43,6 +43,6 @@ VantComponent({
if (!disabled && !labelDisabled) { if (!disabled && !labelDisabled) {
this.emitChange(name); this.emitChange(name);
} }
} },
} },
}); });

37
dist/rate/index.js vendored
View File

@ -1,4 +1,5 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { canIUseModel } from '../common/version';
VantComponent({ VantComponent({
field: true, field: true,
classes: ['icon-class'], classes: ['icon-class'],
@ -9,7 +10,7 @@ VantComponent({
if (value !== this.data.innerValue) { if (value !== this.data.innerValue) {
this.setData({ innerValue: value }); this.setData({ innerValue: value });
} }
} },
}, },
readonly: Boolean, readonly: Boolean,
disabled: Boolean, disabled: Boolean,
@ -17,23 +18,23 @@ VantComponent({
size: null, size: null,
icon: { icon: {
type: String, type: String,
value: 'star' value: 'star',
}, },
voidIcon: { voidIcon: {
type: String, type: String,
value: 'star-o' value: 'star-o',
}, },
color: { color: {
type: String, type: String,
value: '#ffd21e' value: '#ffd21e',
}, },
voidColor: { voidColor: {
type: String, type: String,
value: '#c7c7c7' value: '#c7c7c7',
}, },
disabledColor: { disabledColor: {
type: String, type: String,
value: '#bdbdbd' value: '#bdbdbd',
}, },
count: { count: {
type: Number, type: Number,
@ -45,8 +46,8 @@ VantComponent({
gutter: null, gutter: null,
touchable: { touchable: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
innerValue: 0, innerValue: 0,
@ -58,23 +59,29 @@ VantComponent({
const { score } = event.currentTarget.dataset; const { score } = event.currentTarget.dataset;
if (!data.disabled && !data.readonly) { if (!data.disabled && !data.readonly) {
this.setData({ innerValue: score + 1 }); this.setData({ innerValue: score + 1 });
if (canIUseModel()) {
this.setData({ value: score + 1 });
}
wx.nextTick(() => {
this.$emit('input', score + 1); this.$emit('input', score + 1);
this.$emit('change', score + 1); this.$emit('change', score + 1);
});
} }
}, },
onTouchMove(event) { onTouchMove(event) {
const { touchable } = this.data; const { touchable } = this.data;
if (!touchable) if (!touchable) return;
return;
const { clientX } = event.touches[0]; const { clientX } = event.touches[0];
this.getRect('.van-rate__icon', true).then((list) => { this.getRect('.van-rate__icon', true).then((list) => {
const target = list const target = list
.sort(item => item.right - item.left) .sort((item) => item.right - item.left)
.find(item => clientX >= item.left && clientX <= item.right); .find((item) => clientX >= item.left && clientX <= item.right);
if (target != null) { if (target != null) {
this.onSelect(Object.assign(Object.assign({}, event), { currentTarget: target })); this.onSelect(
Object.assign(Object.assign({}, event), { currentTarget: target })
);
} }
}); });
} },
} },
}); });

12
dist/row/index.js vendored
View File

@ -8,13 +8,13 @@ VantComponent({
if (this.data.gutter) { if (this.data.gutter) {
target.setGutter(this.data.gutter); target.setGutter(this.data.gutter);
} }
} },
}, },
props: { props: {
gutter: { gutter: {
type: Number, type: Number,
observer: 'setGutter' observer: 'setGutter',
} },
}, },
data: { data: {
viewStyle: '', viewStyle: '',
@ -32,9 +32,9 @@ VantComponent({
? `margin-right: ${margin}; margin-left: ${margin};` ? `margin-right: ${margin}; margin-left: ${margin};`
: ''; : '';
this.setData({ viewStyle }); this.setData({ viewStyle });
this.getRelationNodes('../col/index').forEach(col => { this.getRelationNodes('../col/index').forEach((col) => {
col.setGutter(this.data.gutter); col.setGutter(this.data.gutter);
}); });
} },
} },
}); });

37
dist/search/index.js vendored
View File

@ -1,4 +1,5 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { canIUseModel } from '../common/version';
VantComponent({ VantComponent({
field: true, field: true,
classes: ['field-class', 'input-class', 'cancel-class'], classes: ['field-class', 'input-class', 'cancel-class'],
@ -15,35 +16,37 @@ VantComponent({
useRightIconSlot: Boolean, useRightIconSlot: Boolean,
leftIcon: { leftIcon: {
type: String, type: String,
value: 'search' value: 'search',
}, },
rightIcon: String, rightIcon: String,
placeholder: String, placeholder: String,
placeholderStyle: String, placeholderStyle: String,
actionText: { actionText: {
type: String, type: String,
value: '取消' value: '取消',
}, },
background: { background: {
type: String, type: String,
value: '#ffffff' value: '#ffffff',
}, },
maxlength: { maxlength: {
type: Number, type: Number,
value: -1 value: -1,
}, },
shape: { shape: {
type: String, type: String,
value: 'square' value: 'square',
}, },
clearable: { clearable: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
methods: { methods: {
onChange(event) { onChange(event) {
if (canIUseModel()) {
this.setData({ value: event.detail }); this.setData({ value: event.detail });
}
this.$emit('change', event.detail); this.$emit('change', event.detail);
}, },
onCancel() { onCancel() {
@ -52,22 +55,24 @@ VantComponent({
* https://github.com/youzan/@vant/weapp/issues/1768 * https://github.com/youzan/@vant/weapp/issues/1768
*/ */
setTimeout(() => { setTimeout(() => {
if (canIUseModel()) {
this.setData({ value: '' }); this.setData({ value: '' });
}
this.$emit('cancel'); this.$emit('cancel');
this.$emit('change', ''); this.$emit('change', '');
}, 200); }, 200);
}, },
onSearch() { onSearch(event) {
this.$emit('search', this.data.value); this.$emit('search', event.detail);
}, },
onFocus() { onFocus(event) {
this.$emit('focus'); this.$emit('focus', event.detail);
}, },
onBlur() { onBlur(event) {
this.$emit('blur'); this.$emit('blur', event.detail);
},
onClear(event) {
this.$emit('clear', event.detail);
}, },
onClear() {
this.$emit('clear');
}, },
}
}); });

View File

@ -1,9 +1,6 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
VantComponent({ VantComponent({
classes: [ classes: ['active-class', 'disabled-class'],
'active-class',
'disabled-class',
],
relation: { relation: {
type: 'ancestor', type: 'ancestor',
name: 'sidebar', name: 'sidebar',
@ -13,7 +10,7 @@ VantComponent({
dot: Boolean, dot: Boolean,
info: null, info: null,
title: String, title: String,
disabled: Boolean disabled: Boolean,
}, },
methods: { methods: {
onClick() { onClick() {
@ -29,6 +26,6 @@ VantComponent({
}, },
setActive(selected) { setActive(selected) {
return this.setData({ selected }); return this.setData({ selected });
} },
} },
}); });

10
dist/sidebar/index.js vendored
View File

@ -9,14 +9,14 @@ VantComponent({
}, },
unlinked() { unlinked() {
this.setActive(this.data.activeKey); this.setActive(this.data.activeKey);
} },
}, },
props: { props: {
activeKey: { activeKey: {
type: Number, type: Number,
value: 0, value: 0,
observer: 'setActive' observer: 'setActive',
} },
}, },
beforeCreate() { beforeCreate() {
this.currentActive = -1; this.currentActive = -1;
@ -36,6 +36,6 @@ VantComponent({
stack.push(children[activeKey].setActive(true)); stack.push(children[activeKey].setActive(true));
} }
return Promise.all(stack); return Promise.all(stack);
} },
} },
}); });

View File

@ -13,34 +13,34 @@ VantComponent({
avatar: Boolean, avatar: Boolean,
loading: { loading: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
animate: { animate: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
avatarSize: { avatarSize: {
type: String, type: String,
value: '32px' value: '32px',
}, },
avatarShape: { avatarShape: {
type: String, type: String,
value: 'round' value: 'round',
}, },
titleWidth: { titleWidth: {
type: String, type: String,
value: '40%' value: '40%',
}, },
rowWidth: { rowWidth: {
type: null, type: null,
value: '100%', value: '100%',
observer(val) { observer(val) {
this.setData({ isArray: val instanceof Array }); this.setData({ isArray: val instanceof Array });
} },
} },
}, },
data: { data: {
isArray: false, isArray: false,
rowArray: [], rowArray: [],
} },
}); });

41
dist/slider/index.js vendored
View File

@ -1,6 +1,6 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch'; import { touch } from '../mixins/touch';
import { addUnit } from '../common/utils'; import { canIUseModel } from '../common/version';
VantComponent({ VantComponent({
mixins: [touch], mixins: [touch],
props: { props: {
@ -10,42 +10,38 @@ VantComponent({
inactiveColor: String, inactiveColor: String,
max: { max: {
type: Number, type: Number,
value: 100 value: 100,
}, },
min: { min: {
type: Number, type: Number,
value: 0 value: 0,
}, },
step: { step: {
type: Number, type: Number,
value: 1 value: 1,
}, },
value: { value: {
type: Number, type: Number,
value: 0, value: 0,
observer(value) { observer: 'updateValue',
this.updateValue(value, false);
}
}, },
barHeight: { barHeight: {
type: null, type: null,
value: '2px' value: '2px',
} },
}, },
created() { created() {
this.updateValue(this.data.value); this.updateValue(this.data.value);
}, },
methods: { methods: {
onTouchStart(event) { onTouchStart(event) {
if (this.data.disabled) if (this.data.disabled) return;
return;
this.touchStart(event); this.touchStart(event);
this.startValue = this.format(this.data.value); this.startValue = this.format(this.data.value);
this.dragStatus = 'start'; this.dragStatus = 'start';
}, },
onTouchMove(event) { onTouchMove(event) {
if (this.data.disabled) if (this.data.disabled) return;
return;
if (this.dragStatus === 'start') { if (this.dragStatus === 'start') {
this.$emit('drag-start'); this.$emit('drag-start');
} }
@ -58,31 +54,29 @@ VantComponent({
}); });
}, },
onTouchEnd() { onTouchEnd() {
if (this.data.disabled) if (this.data.disabled) return;
return;
if (this.dragStatus === 'draging') { if (this.dragStatus === 'draging') {
this.updateValue(this.newValue, true); this.updateValue(this.newValue, true);
this.$emit('drag-end'); this.$emit('drag-end');
} }
}, },
onClick(event) { onClick(event) {
if (this.data.disabled) if (this.data.disabled) return;
return;
const { min } = this.data; const { min } = this.data;
this.getRect('.van-slider').then((rect) => { this.getRect('.van-slider').then((rect) => {
const value = ((event.detail.x - rect.left) / rect.width) * this.getRange() + min; const value =
((event.detail.x - rect.left) / rect.width) * this.getRange() + min;
this.updateValue(value, true); this.updateValue(value, true);
}); });
}, },
updateValue(value, end, drag) { updateValue(value, end, drag) {
value = this.format(value); value = this.format(value);
const { barHeight, min } = this.data; const { min } = this.data;
const width = `${((value - min) * 100) / this.getRange()}%`; const width = `${((value - min) * 100) / this.getRange()}%`;
this.setData({ this.setData({
value, value,
barStyle: ` barStyle: `
width: ${width}; width: ${width};
height: ${addUnit(barHeight)};
${drag ? 'transition: none;' : ''} ${drag ? 'transition: none;' : ''}
`, `,
}); });
@ -92,6 +86,9 @@ VantComponent({
if (end) { if (end) {
this.$emit('change', value); this.$emit('change', value);
} }
if ((drag || end) && canIUseModel()) {
this.setData({ value });
}
}, },
getRange() { getRange() {
const { max, min } = this.data; const { max, min } = this.data;
@ -100,6 +97,6 @@ VantComponent({
format(value) { format(value) {
const { max, min, step } = this.data; const { max, min, step } = this.data;
return Math.round(Math.max(min, Math.min(value, max)) / step) * step; return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
} },
} },
}); });

View File

@ -1,4 +1,5 @@
<wxs src="../wxs/utils.wxs" module="utils" /> <wxs src="../wxs/utils.wxs" module="utils" />
<wxs src="./index.wxs" module="computed" />
<view <view
class="custom-class {{ utils.bem('slider', { disabled }) }}" class="custom-class {{ utils.bem('slider', { disabled }) }}"
@ -7,7 +8,7 @@
> >
<view <view
class="van-slider__bar" class="van-slider__bar"
style="{{ barStyle }}; {{ activeColor ? 'background:' + activeColor : '' }}" style="{{ barStyle }};{{ computed.barStyle(barHeight, activeColor) }}"
> >
<view <view
class="van-slider__button-wrapper" class="van-slider__button-wrapper"

20
dist/slider/index.wxs vendored Normal file
View File

@ -0,0 +1,20 @@
/* eslint-disable */
var utils = require('../wxs/utils.wxs');
function barStyle(barHeight, activeColor) {
var styles = [['height', utils.addUnit(barHeight)]];
if (activeColor) {
styles.push(['background', activeColor]);
}
return styles
.map(function (item) {
return item.join(':');
})
.join(';');
}
module.exports = {
barStyle: barStyle,
};

45
dist/stepper/index.js vendored
View File

@ -20,11 +20,11 @@ VantComponent({
if (!equal(value, this.data.currentValue)) { if (!equal(value, this.data.currentValue)) {
this.setData({ currentValue: this.format(value) }); this.setData({ currentValue: this.format(value) });
} }
} },
}, },
integer: { integer: {
type: Boolean, type: Boolean,
observer: 'check' observer: 'check',
}, },
disabled: Boolean, disabled: Boolean,
inputWidth: null, inputWidth: null,
@ -34,43 +34,43 @@ VantComponent({
decimalLength: { decimalLength: {
type: Number, type: Number,
value: null, value: null,
observer: 'check' observer: 'check',
}, },
min: { min: {
type: null, type: null,
value: 1, value: 1,
observer: 'check' observer: 'check',
}, },
max: { max: {
type: null, type: null,
value: Number.MAX_SAFE_INTEGER, value: Number.MAX_SAFE_INTEGER,
observer: 'check' observer: 'check',
}, },
step: { step: {
type: null, type: null,
value: 1 value: 1,
}, },
showPlus: { showPlus: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
showMinus: { showMinus: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
disablePlus: Boolean, disablePlus: Boolean,
disableMinus: Boolean, disableMinus: Boolean,
longPress: { longPress: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
currentValue: '' currentValue: '',
}, },
created() { created() {
this.setData({ this.setData({
currentValue: this.format(this.data.value) currentValue: this.format(this.data.value),
}); });
}, },
methods: { methods: {
@ -82,13 +82,17 @@ VantComponent({
}, },
isDisabled(type) { isDisabled(type) {
if (type === 'plus') { if (type === 'plus') {
return (this.data.disabled || return (
this.data.disabled ||
this.data.disablePlus || this.data.disablePlus ||
this.data.currentValue >= this.data.max); this.data.currentValue >= this.data.max
);
} }
return (this.data.disabled || return (
this.data.disabled ||
this.data.disableMinus || this.data.disableMinus ||
this.data.currentValue <= this.data.min); this.data.currentValue <= this.data.min
);
}, },
onFocus(event) { onFocus(event) {
this.$emit('focus', event.detail); this.$emit('focus', event.detail);
@ -96,7 +100,10 @@ VantComponent({
onBlur(event) { onBlur(event) {
const value = this.format(event.detail.value); const value = this.format(event.detail.value);
this.emitChange(value); this.emitChange(value);
this.$emit('blur', Object.assign(Object.assign({}, event.detail), { value })); this.$emit(
'blur',
Object.assign(Object.assign({}, event.detail), { value })
);
}, },
// filter illegal characters // filter illegal characters
filter(value) { filter(value) {
@ -179,6 +186,6 @@ VantComponent({
return; return;
} }
clearTimeout(this.longPressTimer); clearTimeout(this.longPressTimer);
} },
} },
}); });

12
dist/steps/index.js vendored
View File

@ -8,26 +8,26 @@ VantComponent({
active: Number, active: Number,
direction: { direction: {
type: String, type: String,
value: 'horizontal' value: 'horizontal',
}, },
activeColor: { activeColor: {
type: String, type: String,
value: GREEN value: GREEN,
}, },
inactiveColor: { inactiveColor: {
type: String, type: String,
value: GRAY_DARK value: GRAY_DARK,
}, },
activeIcon: { activeIcon: {
type: String, type: String,
value: 'checked' value: 'checked',
}, },
inactiveIcon: String inactiveIcon: String,
}, },
methods: { methods: {
onClick(event) { onClick(event) {
const { index } = event.currentTarget.dataset; const { index } = event.currentTarget.dataset;
this.$emit('click-step', index); this.$emit('click-step', index);
} },
}, },
}); });

54
dist/sticky/index.js vendored
View File

@ -5,31 +5,40 @@ VantComponent({
props: { props: {
zIndex: { zIndex: {
type: Number, type: Number,
value: 99 value: 99,
}, },
offsetTop: { offsetTop: {
type: Number, type: Number,
value: 0, value: 0,
observer: 'onScroll' observer: 'onScroll',
}, },
disabled: { disabled: {
type: Boolean, type: Boolean,
observer: 'onScroll' observer: 'onScroll',
}, },
container: { container: {
type: null, type: null,
observer: 'onScroll' observer: 'onScroll',
} },
scrollTop: {
type: null,
observer(val) {
this.onScroll({ scrollTop: val });
},
},
}, },
mixins: [ mixins: [
pageScrollMixin(function (event) { pageScrollMixin(function (event) {
if (this.data.scrollTop != null) {
return;
}
this.onScroll(event); this.onScroll(event);
}) }),
], ],
data: { data: {
height: 0, height: 0,
fixed: false, fixed: false,
transform: 0 transform: 0,
}, },
mounted() { mounted() {
this.onScroll(); this.onScroll();
@ -40,38 +49,37 @@ VantComponent({
if (disabled) { if (disabled) {
this.setDataAfterDiff({ this.setDataAfterDiff({
fixed: false, fixed: false,
transform: 0 transform: 0,
}); });
return; return;
} }
this.scrollTop = scrollTop || this.scrollTop; this.scrollTop = scrollTop || this.scrollTop;
if (typeof container === 'function') { if (typeof container === 'function') {
Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(([root, container]) => { Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(
([root, container]) => {
if (offsetTop + root.height > container.height + container.top) { if (offsetTop + root.height > container.height + container.top) {
this.setDataAfterDiff({ this.setDataAfterDiff({
fixed: false, fixed: false,
transform: container.height - root.height transform: container.height - root.height,
}); });
} } else if (offsetTop >= root.top) {
else if (offsetTop >= root.top) {
this.setDataAfterDiff({ this.setDataAfterDiff({
fixed: true, fixed: true,
height: root.height, height: root.height,
transform: 0 transform: 0,
}); });
} } else {
else {
this.setDataAfterDiff({ fixed: false, transform: 0 }); this.setDataAfterDiff({ fixed: false, transform: 0 });
} }
}); }
);
return; return;
} }
this.getRect(ROOT_ELEMENT).then((root) => { this.getRect(ROOT_ELEMENT).then((root) => {
if (offsetTop >= root.top) { if (offsetTop >= root.top) {
this.setDataAfterDiff({ fixed: true, height: root.height }); this.setDataAfterDiff({ fixed: true, height: root.height });
this.transform = 0; this.transform = 0;
} } else {
else {
this.setDataAfterDiff({ fixed: false }); this.setDataAfterDiff({ fixed: false });
} }
}); });
@ -87,13 +95,15 @@ VantComponent({
this.setData(diff); this.setData(diff);
this.$emit('scroll', { this.$emit('scroll', {
scrollTop: this.scrollTop, scrollTop: this.scrollTop,
isFixed: data.fixed || this.data.fixed isFixed: data.fixed || this.data.fixed,
}); });
}); });
}, },
getContainerRect() { getContainerRect() {
const nodesRef = this.data.container(); const nodesRef = this.data.container();
return new Promise(resolve => nodesRef.boundingClientRect(resolve).exec()); return new Promise((resolve) =>
} nodesRef.boundingClientRect(resolve).exec()
} );
},
},
}); });

View File

@ -1,20 +1,16 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
VantComponent({ VantComponent({
classes: [ classes: ['bar-class', 'price-class', 'button-class'],
'bar-class',
'price-class',
'button-class'
],
props: { props: {
tip: { tip: {
type: null, type: null,
observer: 'updateTip' observer: 'updateTip',
}, },
tipIcon: String, tipIcon: String,
type: Number, type: Number,
price: { price: {
type: null, type: null,
observer: 'updatePrice' observer: 'updatePrice',
}, },
label: String, label: String,
loading: Boolean, loading: Boolean,
@ -22,31 +18,33 @@ VantComponent({
buttonText: String, buttonText: String,
currency: { currency: {
type: String, type: String,
value: '¥' value: '¥',
}, },
buttonType: { buttonType: {
type: String, type: String,
value: 'danger' value: 'danger',
}, },
decimalLength: { decimalLength: {
type: Number, type: Number,
value: 2, value: 2,
observer: 'updatePrice' observer: 'updatePrice',
}, },
suffixLabel: String, suffixLabel: String,
safeAreaInsetBottom: { safeAreaInsetBottom: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
methods: { methods: {
updatePrice() { updatePrice() {
const { price, decimalLength } = this.data; const { price, decimalLength } = this.data;
const priceStrArr = typeof price === 'number' && (price / 100).toFixed(decimalLength).split('.'); const priceStrArr =
typeof price === 'number' &&
(price / 100).toFixed(decimalLength).split('.');
this.setData({ this.setData({
hasPrice: typeof price === 'number', hasPrice: typeof price === 'number',
integerStr: priceStrArr && priceStrArr[0], integerStr: priceStrArr && priceStrArr[0],
decimalStr: decimalLength && priceStrArr ? `.${priceStrArr[1]}` : '' decimalStr: decimalLength && priceStrArr ? `.${priceStrArr[1]}` : '',
}); });
}, },
updateTip() { updateTip() {
@ -54,6 +52,6 @@ VantComponent({
}, },
onSubmit(event) { onSubmit(event) {
this.$emit('submit', event.detail); this.$emit('submit', event.detail);
} },
} },
}); });

View File

@ -16,7 +16,7 @@
<slot name="tip" /> <slot name="tip" />
</view> </view>
<view class="bar-class {{ utils.bem('submit-bar__bar', { safe: safeAreaInsetBottom }) }}"> <view class="bar-class van-submit-bar__bar">
<slot /> <slot />
<view wx:if="{{ hasPrice }}" class="van-submit-bar__text"> <view wx:if="{{ hasPrice }}" class="van-submit-bar__text">
<text>{{ label || '合计:' }}</text> <text>{{ label || '合计:' }}</text>
@ -39,4 +39,6 @@
{{ loading ? '' : buttonText }} {{ loading ? '' : buttonText }}
</van-button> </van-button>
</view> </view>
<view wx:if="{{ safeAreaInsetBottom }}" class="van-submit-bar__safe" />
</view> </view>

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-submit-bar{position:fixed;bottom:0;left:0;width:100%;-webkit-user-select:none;user-select:none;z-index:100;z-index:var(--submit-bar-z-index,100);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__tip{padding:10px;padding:var(--submit-bar-tip-padding,10px);color:#f56723;color:var(--submit-bar-tip-color,#f56723);font-size:12px;font-size:var(--submit-bar-tip-font-size,12px);line-height:1.5;line-height:var(--submit-bar-tip-line-height,1.5);background-color:#fff7cc;background-color:var(--submit-bar-tip-background-color,#fff7cc)}.van-submit-bar__tip:empty{display:none}.van-submit-bar__tip-icon{width:12px;height:12px;margin-right:4px;vertical-align:middle;font-size:12px;font-size:var(--submit-bar-tip-icon-size,12px);min-width:18px;min-width:calc(var(--submit-bar-tip-icon-size, 12px)*1.5)}.van-submit-bar__tip-text{display:inline;vertical-align:middle}.van-submit-bar__bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;padding:0 16px;padding:var(--submit-bar-padding,0 16px);height:50px;height:var(--submit-bar-height,50px);font-size:14px;font-size:var(--submit-bar-text-font-size,14px);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__bar--safe{padding-bottom:env(safe-area-inset-bottom)}.van-submit-bar__text{-webkit-flex:1;flex:1;text-align:right;color:#323233;color:var(--submit-bar-text-color,#323233);padding-right:12px;padding-right:var(--padding-sm,12px)}.van-submit-bar__price,.van-submit-bar__text{font-weight:500;font-weight:var(--font-weight-bold,500)}.van-submit-bar__price{color:#ee0a24;color:var(--submit-bar-price-color,#ee0a24);font-size:12px;font-size:var(--submit-bar-price-font-size,12px)}.van-submit-bar__price-integer{font-size:20px;font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-submit-bar__currency{font-size:12px;font-size:var(--submit-bar-currency-font-size,12px)}.van-submit-bar__suffix-label{margin-left:5px}.van-submit-bar__button{width:110px;width:var(--submit-bar-button-width,110px);font-weight:500;font-weight:var(--font-weight-bold,500);--button-default-height:40px!important;--button-default-height:var(--submit-bar-button-height,40px)!important;--button-line-height:40px!important;--button-line-height:var(--submit-bar-button-height,40px)!important} @import '../common/index.wxss';.van-submit-bar{position:fixed;bottom:0;left:0;width:100%;-webkit-user-select:none;user-select:none;z-index:100;z-index:var(--submit-bar-z-index,100);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__tip{padding:10px;padding:var(--submit-bar-tip-padding,10px);color:#f56723;color:var(--submit-bar-tip-color,#f56723);font-size:12px;font-size:var(--submit-bar-tip-font-size,12px);line-height:1.5;line-height:var(--submit-bar-tip-line-height,1.5);background-color:#fff7cc;background-color:var(--submit-bar-tip-background-color,#fff7cc)}.van-submit-bar__tip:empty{display:none}.van-submit-bar__tip-icon{width:12px;height:12px;margin-right:4px;vertical-align:middle;font-size:12px;font-size:var(--submit-bar-tip-icon-size,12px);min-width:18px;min-width:calc(var(--submit-bar-tip-icon-size, 12px)*1.5)}.van-submit-bar__tip-text{display:inline;vertical-align:middle}.van-submit-bar__bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;padding:0 16px;padding:var(--submit-bar-padding,0 16px);height:50px;height:var(--submit-bar-height,50px);font-size:14px;font-size:var(--submit-bar-text-font-size,14px);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__safe{height:constant(safe-area-inset-bottom);height:env(safe-area-inset-bottom)}.van-submit-bar__text{-webkit-flex:1;flex:1;text-align:right;color:#323233;color:var(--submit-bar-text-color,#323233);padding-right:12px;padding-right:var(--padding-sm,12px)}.van-submit-bar__price,.van-submit-bar__text{font-weight:500;font-weight:var(--font-weight-bold,500)}.van-submit-bar__price{color:#ee0a24;color:var(--submit-bar-price-color,#ee0a24);font-size:12px;font-size:var(--submit-bar-price-font-size,12px)}.van-submit-bar__price-integer{font-size:20px;font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-submit-bar__currency{font-size:12px;font-size:var(--submit-bar-currency-font-size,12px)}.van-submit-bar__suffix-label{margin-left:5px}.van-submit-bar__button{width:110px;width:var(--submit-bar-button-width,110px);font-weight:500;font-weight:var(--font-weight-bold,500);--button-default-height:40px!important;--button-default-height:var(--submit-bar-button-height,40px)!important;--button-line-height:40px!important;--button-line-height:var(--submit-bar-button-height,40px)!important}

View File

@ -13,7 +13,7 @@ VantComponent({
if (this.offset > 0) { if (this.offset > 0) {
this.swipeMove(leftWidth); this.swipeMove(leftWidth);
} }
} },
}, },
rightWidth: { rightWidth: {
type: Number, type: Number,
@ -22,24 +22,24 @@ VantComponent({
if (this.offset < 0) { if (this.offset < 0) {
this.swipeMove(-rightWidth); this.swipeMove(-rightWidth);
} }
} },
}, },
asyncClose: Boolean, asyncClose: Boolean,
name: { name: {
type: [Number, String], type: [Number, String],
value: '' value: '',
} },
}, },
mixins: [touch], mixins: [touch],
data: { data: {
catchMove: false catchMove: false,
}, },
created() { created() {
this.offset = 0; this.offset = 0;
ARRAY.push(this); ARRAY.push(this);
}, },
destroyed() { destroyed() {
ARRAY = ARRAY.filter(item => item !== this); ARRAY = ARRAY.filter((item) => item !== this);
}, },
methods: { methods: {
open(position) { open(position) {
@ -48,7 +48,7 @@ VantComponent({
this.swipeMove(offset); this.swipeMove(offset);
this.$emit('open', { this.$emit('open', {
position, position,
name: this.data.name name: this.data.name,
}); });
}, },
close() { close() {
@ -66,7 +66,7 @@ VantComponent({
-webkit-transition: ${transition}; -webkit-transition: ${transition};
transform: ${transform}; transform: ${transform};
transition: ${transition}; transition: ${transition};
` `,
}); });
}, },
swipeLeaveTransition() { swipeLeaveTransition() {
@ -74,11 +74,9 @@ VantComponent({
const { offset } = this; const { offset } = this;
if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) { if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
this.open('right'); this.open('right');
} } else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
this.open('left'); this.open('left');
} } else {
else {
this.swipeMove(0); this.swipeMove(0);
} }
this.setData({ catchMove: false }); this.setData({ catchMove: false });
@ -90,7 +88,7 @@ VantComponent({
this.startOffset = this.offset; this.startOffset = this.offset;
this.touchStart(event); this.touchStart(event);
}, },
noop() { }, noop() {},
onDrag(event) { onDrag(event) {
if (this.data.disabled) { if (this.data.disabled) {
return; return;
@ -100,7 +98,7 @@ VantComponent({
return; return;
} }
this.dragging = true; this.dragging = true;
ARRAY.filter(item => item !== this).forEach(item => item.close()); ARRAY.filter((item) => item !== this).forEach((item) => item.close());
this.setData({ catchMove: true }); this.setData({ catchMove: true });
this.swipeMove(this.startOffset + this.deltaX); this.swipeMove(this.startOffset + this.deltaX);
}, },
@ -121,12 +119,11 @@ VantComponent({
this.$emit('close', { this.$emit('close', {
position, position,
instance: this, instance: this,
name: this.data.name name: this.data.name,
}); });
} } else {
else {
this.swipeMove(0); this.swipeMove(0);
} }
} },
} },
}); });

14
dist/switch/index.js vendored
View File

@ -9,7 +9,7 @@ VantComponent({
observer(value) { observer(value) {
const loadingColor = this.getLoadingColor(value); const loadingColor = this.getLoadingColor(value);
this.setData({ value, loadingColor }); this.setData({ value, loadingColor });
} },
}, },
loading: Boolean, loading: Boolean,
disabled: Boolean, disabled: Boolean,
@ -17,16 +17,16 @@ VantComponent({
inactiveColor: String, inactiveColor: String,
size: { size: {
type: String, type: String,
value: '30px' value: '30px',
}, },
activeValue: { activeValue: {
type: null, type: null,
value: true value: true,
}, },
inactiveValue: { inactiveValue: {
type: null, type: null,
value: false value: false,
} },
}, },
created() { created() {
const { checked: value } = this.data; const { checked: value } = this.data;
@ -46,6 +46,6 @@ VantComponent({
this.$emit('input', value); this.$emit('input', value);
this.$emit('change', value); this.$emit('change', value);
} }
} },
} },
}); });

20
dist/tab/index.js vendored
View File

@ -8,31 +8,31 @@ VantComponent({
props: { props: {
dot: { dot: {
type: Boolean, type: Boolean,
observer: 'update' observer: 'update',
}, },
info: { info: {
type: null, type: null,
observer: 'update' observer: 'update',
}, },
title: { title: {
type: String, type: String,
observer: 'update' observer: 'update',
}, },
disabled: { disabled: {
type: Boolean, type: Boolean,
observer: 'update' observer: 'update',
}, },
titleStyle: { titleStyle: {
type: String, type: String,
observer: 'update' observer: 'update',
}, },
name: { name: {
type: [Number, String], type: [Number, String],
value: '', value: '',
} },
}, },
data: { data: {
active: false active: false,
}, },
methods: { methods: {
getComputedName() { getComputedName() {
@ -47,13 +47,13 @@ VantComponent({
this.setData({ this.setData({
active, active,
shouldRender: this.inited || !parentData.lazyRender, shouldRender: this.inited || !parentData.lazyRender,
shouldShow: active || parentData.animated shouldShow: active || parentData.animated,
}); });
}, },
update() { update() {
if (this.parent) { if (this.parent) {
this.parent.updateTabs(); this.parent.updateTabs();
} }
} },
} },
}); });

View File

@ -4,7 +4,7 @@ VantComponent({
info: null, info: null,
name: null, name: null,
icon: String, icon: String,
dot: Boolean dot: Boolean,
}, },
relation: { relation: {
name: 'tabbar', name: 'tabbar',
@ -12,7 +12,7 @@ VantComponent({
current: 'tabbar-item', current: 'tabbar-item',
}, },
data: { data: {
active: false active: false,
}, },
methods: { methods: {
onClick() { onClick() {
@ -43,6 +43,6 @@ VantComponent({
return Object.keys(patch).length > 0 return Object.keys(patch).length > 0
? this.set(patch) ? this.set(patch)
: Promise.resolve(); : Promise.resolve();
} },
} },
}); });

22
dist/tabbar/index.js vendored
View File

@ -10,37 +10,37 @@ VantComponent({
}, },
unlinked() { unlinked() {
this.updateChildren(); this.updateChildren();
} },
}, },
props: { props: {
active: { active: {
type: null, type: null,
observer: 'updateChildren' observer: 'updateChildren',
}, },
activeColor: { activeColor: {
type: String, type: String,
observer: 'updateChildren' observer: 'updateChildren',
}, },
inactiveColor: { inactiveColor: {
type: String, type: String,
observer: 'updateChildren' observer: 'updateChildren',
}, },
fixed: { fixed: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 1 value: 1,
}, },
safeAreaInsetBottom: { safeAreaInsetBottom: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
methods: { methods: {
updateChildren() { updateChildren() {
@ -56,6 +56,6 @@ VantComponent({
if (active !== this.data.active) { if (active !== this.data.active) {
this.$emit('change', active); this.$emit('change', active);
} }
} },
} },
}); });

98
dist/tabs/index.js vendored
View File

@ -13,36 +13,37 @@ VantComponent({
this.updateTabs(); this.updateTabs();
}, },
unlinked() { unlinked() {
this.children = this.children this.children = this.children.map((child, index) => {
.map((child, index) => {
child.index = index; child.index = index;
return child; return child;
}); });
this.updateTabs(); this.updateTabs();
} },
}, },
props: { props: {
color: { color: {
type: String, type: String,
observer: 'setLine' observer: 'setLine',
}, },
sticky: Boolean, sticky: Boolean,
animated: { animated: {
type: Boolean, type: Boolean,
observer() { observer() {
this.children.forEach((child, index) => child.updateRender(index === this.data.currentIndex, this)); this.children.forEach((child, index) =>
} child.updateRender(index === this.data.currentIndex, this)
);
},
}, },
swipeable: Boolean, swipeable: Boolean,
lineWidth: { lineWidth: {
type: [String, Number], type: [String, Number],
value: -1, value: -1,
observer: 'setLine' observer: 'setLine',
}, },
lineHeight: { lineHeight: {
type: [String, Number], type: [String, Number],
value: -1, value: -1,
observer: 'setLine' observer: 'setLine',
}, },
titleActiveColor: String, titleActiveColor: String,
titleInactiveColor: String, titleInactiveColor: String,
@ -53,45 +54,45 @@ VantComponent({
if (name !== this.getCurrentName()) { if (name !== this.getCurrentName()) {
this.setCurrentIndexByName(name); this.setCurrentIndexByName(name);
} }
} },
}, },
type: { type: {
type: String, type: String,
value: 'line' value: 'line',
}, },
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
ellipsis: { ellipsis: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
duration: { duration: {
type: Number, type: Number,
value: 0.3 value: 0.3,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 1 value: 1,
}, },
swipeThreshold: { swipeThreshold: {
type: Number, type: Number,
value: 4, value: 4,
observer(value) { observer(value) {
this.setData({ this.setData({
scrollable: this.children.length > value || !this.data.ellipsis scrollable: this.children.length > value || !this.data.ellipsis,
}); });
} },
}, },
offsetTop: { offsetTop: {
type: Number, type: Number,
value: 0 value: 0,
}, },
lazyRender: { lazyRender: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
tabs: [], tabs: [],
@ -100,7 +101,7 @@ VantComponent({
scrollable: false, scrollable: false,
trackStyle: '', trackStyle: '',
currentIndex: null, currentIndex: null,
container: null container: null,
}, },
mounted() { mounted() {
wx.nextTick(() => { wx.nextTick(() => {
@ -111,14 +112,15 @@ VantComponent({
methods: { methods: {
updateContainer() { updateContainer() {
this.setData({ this.setData({
container: () => this.createSelectorQuery().select('.van-tabs') container: () => this.createSelectorQuery().select('.van-tabs'),
}); });
}, },
updateTabs() { updateTabs() {
const { children = [], data } = this; const { children = [], data } = this;
this.setData({ this.setData({
tabs: children.map((child) => child.data), tabs: children.map((child) => child.data),
scrollable: this.children.length > data.swipeThreshold || !data.ellipsis scrollable:
this.children.length > data.swipeThreshold || !data.ellipsis,
}); });
this.setCurrentIndexByName(this.getCurrentName() || data.active); this.setCurrentIndexByName(this.getCurrentName() || data.active);
}, },
@ -131,7 +133,7 @@ VantComponent({
this.$emit(eventName, { this.$emit(eventName, {
index: currentChild.index, index: currentChild.index,
name: currentChild.getComputedName(), name: currentChild.getComputedName(),
title: currentChild.data.title title: currentChild.data.title,
}); });
}, },
onTap(event) { onTap(event) {
@ -139,8 +141,7 @@ VantComponent({
const child = this.children[index]; const child = this.children[index];
if (child.data.disabled) { if (child.data.disabled) {
this.trigger('disabled', child); this.trigger('disabled', child);
} } else {
else {
this.setCurrentIndex(index); this.setCurrentIndex(index);
wx.nextTick(() => { wx.nextTick(() => {
this.trigger('click'); this.trigger('click');
@ -150,16 +151,20 @@ VantComponent({
// correct the index of active tab // correct the index of active tab
setCurrentIndexByName(name) { setCurrentIndexByName(name) {
const { children = [] } = this; const { children = [] } = this;
const matched = children.filter((child) => child.getComputedName() === name); const matched = children.filter(
(child) => child.getComputedName() === name
);
if (matched.length) { if (matched.length) {
this.setCurrentIndex(matched[0].index); this.setCurrentIndex(matched[0].index);
} }
}, },
setCurrentIndex(currentIndex) { setCurrentIndex(currentIndex) {
const { data, children = [] } = this; const { data, children = [] } = this;
if (!isDef(currentIndex) || if (
!isDef(currentIndex) ||
currentIndex >= children.length || currentIndex >= children.length ||
currentIndex < 0) { currentIndex < 0
) {
return; return;
} }
children.forEach((item, index) => { children.forEach((item, index) => {
@ -193,15 +198,24 @@ VantComponent({
if (this.data.type !== 'line') { if (this.data.type !== 'line') {
return; return;
} }
const { color, duration, currentIndex, lineWidth, lineHeight } = this.data; const {
color,
duration,
currentIndex,
lineWidth,
lineHeight,
} = this.data;
this.getRect('.van-tab', true).then((rects = []) => { this.getRect('.van-tab', true).then((rects = []) => {
const rect = rects[currentIndex]; const rect = rects[currentIndex];
if (rect == null) { if (rect == null) {
return; return;
} }
const width = lineWidth !== -1 ? lineWidth : rect.width / 2; const width = lineWidth !== -1 ? lineWidth : rect.width / 2;
const height = lineHeight !== -1 const height =
? `height: ${addUnit(lineHeight)}; border-radius: ${addUnit(lineHeight)};` lineHeight !== -1
? `height: ${addUnit(lineHeight)}; border-radius: ${addUnit(
lineHeight
)};`
: ''; : '';
let left = rects let left = rects
.slice(0, currentIndex) .slice(0, currentIndex)
@ -218,7 +232,7 @@ VantComponent({
-webkit-transform: translateX(${left}px); -webkit-transform: translateX(${left}px);
transform: translateX(${left}px); transform: translateX(${left}px);
${transition} ${transition}
` `,
}); });
}); });
}, },
@ -230,14 +244,14 @@ VantComponent({
} }
Promise.all([ Promise.all([
this.getRect('.van-tab', true), this.getRect('.van-tab', true),
this.getRect('.van-tabs__nav') this.getRect('.van-tabs__nav'),
]).then(([tabRects, navRect]) => { ]).then(([tabRects, navRect]) => {
const tabRect = tabRects[currentIndex]; const tabRect = tabRects[currentIndex];
const offsetLeft = tabRects const offsetLeft = tabRects
.slice(0, currentIndex) .slice(0, currentIndex)
.reduce((prev, curr) => prev + curr.width, 0); .reduce((prev, curr) => prev + curr.width, 0);
this.setData({ this.setData({
scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2 scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2,
}); });
}); });
}, },
@ -245,30 +259,26 @@ VantComponent({
this.$emit('scroll', event.detail); this.$emit('scroll', event.detail);
}, },
onTouchStart(event) { onTouchStart(event) {
if (!this.data.swipeable) if (!this.data.swipeable) return;
return;
this.touchStart(event); this.touchStart(event);
}, },
onTouchMove(event) { onTouchMove(event) {
if (!this.data.swipeable) if (!this.data.swipeable) return;
return;
this.touchMove(event); this.touchMove(event);
}, },
// watch swipe touch end // watch swipe touch end
onTouchEnd() { onTouchEnd() {
if (!this.data.swipeable) if (!this.data.swipeable) return;
return;
const { tabs, currentIndex } = this.data; const { tabs, currentIndex } = this.data;
const { direction, deltaX, offsetX } = this; const { direction, deltaX, offsetX } = this;
const minSwipeDistance = 50; const minSwipeDistance = 50;
if (direction === 'horizontal' && offsetX >= minSwipeDistance) { if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
if (deltaX > 0 && currentIndex !== 0) { if (deltaX > 0 && currentIndex !== 0) {
this.setCurrentIndex(currentIndex - 1); this.setCurrentIndex(currentIndex - 1);
} } else if (deltaX < 0 && currentIndex !== tabs.length - 1) {
else if (deltaX < 0 && currentIndex !== tabs.length - 1) {
this.setCurrentIndex(currentIndex + 1); this.setCurrentIndex(currentIndex + 1);
} }
} }
} },
} },
}); });

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-tabs{position:relative;-webkit-tap-highlight-color:transparent}.van-tabs__wrap{display:-webkit-flex;display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{-webkit-flex:0 0 22%;flex:0 0 22%}.van-tabs__scroll{background-color:#fff;background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{margin:0 16px;margin:0 var(--padding-md,16px)}.van-tabs__nav{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:30px;height:var(--tabs-card-height,30px);border:1px solid #ee0a24;border:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24);border-radius:2px;border-radius:var(--border-radius-sm,2px)}.van-tabs__nav--card .van-tab{color:#ee0a24;color:var(--tabs-default-color,#ee0a24);line-height:28px;line-height:calc(var(--tabs-card-height, 30px) - 2*var(--border-width-base, 1px));border-right:1px solid #ee0a24;border-right:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{color:#fff;color:var(--white,#fff);background-color:#ee0a24;background-color:var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{position:absolute;bottom:0;left:0;z-index:1;height:3px;height:var(--tabs-bottom-bar-height,3px);border-radius:3px;border-radius:var(--tabs-bottom-bar-height,3px);background-color:#ee0a24;background-color:var(--tabs-bottom-bar-color,#ee0a24)}.van-tabs__track{position:relative;width:100%;height:100%}.van-tabs__track--animated{display:-webkit-flex;display:flex;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:44px;height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:30px;height:var(--tabs-card-height,30px)}.van-tab{position:relative;-webkit-flex:1;flex:1;box-sizing:border-box;min-width:0;padding:0 5px;text-align:center;cursor:pointer;color:#646566;color:var(--tab-text-color,#646566);font-size:14px;font-size:var(--tab-font-size,14px);line-height:44px;line-height:var(--tabs-line-height,44px)}.van-tab--active{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--tab-active-text-color,#323233)}.van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab--complete{-webkit-flex:1 0 auto!important;flex:1 0 auto!important}.van-tab__title__info{position:relative!important;top:-1px!important;display:inline-block;-webkit-transform:translateX(0)!important;transform:translateX(0)!important} @import '../common/index.wxss';.van-tabs{position:relative;-webkit-tap-highlight-color:transparent}.van-tabs__wrap{display:-webkit-flex;display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{-webkit-flex:0 0 22%;flex:0 0 22%}.van-tabs__scroll{background-color:#fff;background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{margin:0 16px;margin:0 var(--padding-md,16px)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:30px;height:var(--tabs-card-height,30px);border:1px solid #ee0a24;border:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24);border-radius:2px;border-radius:var(--border-radius-sm,2px)}.van-tabs__nav--card .van-tab{color:#ee0a24;color:var(--tabs-default-color,#ee0a24);line-height:28px;line-height:calc(var(--tabs-card-height, 30px) - 2*var(--border-width-base, 1px));border-right:1px solid #ee0a24;border-right:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{color:#fff;color:var(--white,#fff);background-color:#ee0a24;background-color:var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{position:absolute;bottom:0;left:0;z-index:1;height:3px;height:var(--tabs-bottom-bar-height,3px);border-radius:3px;border-radius:var(--tabs-bottom-bar-height,3px);background-color:#ee0a24;background-color:var(--tabs-bottom-bar-color,#ee0a24)}.van-tabs__track{position:relative;width:100%;height:100%}.van-tabs__track--animated{display:-webkit-flex;display:flex;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:44px;height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:30px;height:var(--tabs-card-height,30px)}.van-tab{position:relative;-webkit-flex:1;flex:1;box-sizing:border-box;min-width:0;padding:0 5px;text-align:center;cursor:pointer;color:#646566;color:var(--tab-text-color,#646566);font-size:14px;font-size:var(--tab-font-size,14px);line-height:44px;line-height:var(--tabs-line-height,44px)}.van-tab--active{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--tab-active-text-color,#323233)}.van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab--complete{-webkit-flex:1 0 auto!important;flex:1 0 auto!important}.van-tab__title__info{position:relative!important;top:-1px!important;display:inline-block;-webkit-transform:translateX(0)!important;transform:translateX(0)!important}

8
dist/tag/index.js vendored
View File

@ -9,13 +9,13 @@ VantComponent({
textColor: String, textColor: String,
type: { type: {
type: String, type: String,
value: 'default' value: 'default',
}, },
closeable: Boolean closeable: Boolean,
}, },
methods: { methods: {
onClose() { onClose() {
this.$emit('close'); this.$emit('close');
} },
} },
}); });

14
dist/toast/index.js vendored
View File

@ -7,23 +7,23 @@ VantComponent({
forbidClick: Boolean, forbidClick: Boolean,
zIndex: { zIndex: {
type: Number, type: Number,
value: 1000 value: 1000,
}, },
type: { type: {
type: String, type: String,
value: 'text' value: 'text',
}, },
loadingType: { loadingType: {
type: String, type: String,
value: 'circular' value: 'circular',
}, },
position: { position: {
type: String, type: String,
value: 'middle' value: 'middle',
} },
}, },
methods: { methods: {
// for prevent touchmove // for prevent touchmove
noop() { } noop() {},
} },
}); });

14
dist/toast/toast.js vendored
View File

@ -9,7 +9,7 @@ const defaultOptions = {
position: 'middle', position: 'middle',
forbidClick: false, forbidClick: false,
loadingType: 'circular', loadingType: 'circular',
selector: '#van-toast' selector: '#van-toast',
}; };
let queue = []; let queue = [];
let currentOptions = Object.assign({}, defaultOptions); let currentOptions = Object.assign({}, defaultOptions);
@ -21,7 +21,10 @@ function getContext() {
return pages[pages.length - 1]; return pages[pages.length - 1];
} }
function Toast(toastOptions) { function Toast(toastOptions) {
const options = Object.assign(Object.assign({}, currentOptions), parseOptions(toastOptions)); const options = Object.assign(
Object.assign({}, currentOptions),
parseOptions(toastOptions)
);
const context = options.context || getContext(); const context = options.context || getContext();
const toast = context.selectComponent(options.selector); const toast = context.selectComponent(options.selector);
if (!toast) { if (!toast) {
@ -42,17 +45,18 @@ function Toast(toastOptions) {
if (options.duration > 0) { if (options.duration > 0) {
toast.timer = setTimeout(() => { toast.timer = setTimeout(() => {
toast.clear(); toast.clear();
queue = queue.filter(item => item !== toast); queue = queue.filter((item) => item !== toast);
}, options.duration); }, options.duration);
} }
return toast; return toast;
} }
const createMethod = (type) => (options) => Toast(Object.assign({ type }, parseOptions(options))); const createMethod = (type) => (options) =>
Toast(Object.assign({ type }, parseOptions(options)));
Toast.loading = createMethod('loading'); Toast.loading = createMethod('loading');
Toast.success = createMethod('success'); Toast.success = createMethod('success');
Toast.fail = createMethod('fail'); Toast.fail = createMethod('fail');
Toast.clear = () => { Toast.clear = () => {
queue.forEach(toast => { queue.forEach((toast) => {
toast.clear(); toast.clear();
}); });
queue = []; queue = [];

View File

@ -7,7 +7,7 @@ VantComponent({
'enter-to-class', 'enter-to-class',
'leave-class', 'leave-class',
'leave-active-class', 'leave-active-class',
'leave-to-class' 'leave-to-class',
], ],
mixins: [transition(true)] mixins: [transition(true)],
}); });

View File

@ -6,30 +6,30 @@ VantComponent({
'main-active-class', 'main-active-class',
'content-active-class', 'content-active-class',
'main-disabled-class', 'main-disabled-class',
'content-disabled-class' 'content-disabled-class',
], ],
props: { props: {
items: { items: {
type: Array, type: Array,
observer: 'updateSubItems' observer: 'updateSubItems',
}, },
activeId: null, activeId: null,
mainActiveIndex: { mainActiveIndex: {
type: Number, type: Number,
value: 0, value: 0,
observer: 'updateSubItems' observer: 'updateSubItems',
}, },
height: { height: {
type: [Number, String], type: [Number, String],
value: 300 value: 300,
}, },
max: { max: {
type: Number, type: Number,
value: Infinity value: Infinity,
} },
}, },
data: { data: {
subItems: [] subItems: [],
}, },
methods: { methods: {
// 当一个子项被选择时 // 当一个子项被选择时
@ -59,6 +59,6 @@ VantComponent({
const { items, mainActiveIndex } = this.data; const { items, mainActiveIndex } = this.data;
const { children = [] } = items[mainActiveIndex] || {}; const { children = [] } = items[mainActiveIndex] || {};
return this.set({ subItems: children }); return this.set({ subItems: children });
} },
} },
}); });

147
dist/uploader/index.js vendored
View File

@ -2,76 +2,110 @@ import { VantComponent } from '../common/component';
import { isImageFile, isVideo, chooseFile, isPromise } from './utils'; import { isImageFile, isVideo, chooseFile, isPromise } from './utils';
import { chooseImageProps, chooseVideoProps } from './shared'; import { chooseImageProps, chooseVideoProps } from './shared';
VantComponent({ VantComponent({
props: Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: { props: Object.assign(
Object.assign(
{
disabled: Boolean,
multiple: Boolean,
uploadText: String,
useBeforeRead: Boolean,
afterRead: null,
beforeRead: null,
previewSize: {
type: null, type: null,
value: 90 value: 90,
}, name: { },
name: {
type: [Number, String], type: [Number, String],
value: '' value: '',
}, accept: { },
accept: {
type: String, type: String,
value: 'image' value: 'image',
}, fileList: { },
fileList: {
type: Array, type: Array,
value: [], value: [],
observer: 'formatFileList' observer: 'formatFileList',
}, maxSize: { },
maxSize: {
type: Number, type: Number,
value: Number.MAX_VALUE value: Number.MAX_VALUE,
}, maxCount: { },
maxCount: {
type: Number, type: Number,
value: 100 value: 100,
}, deletable: { },
deletable: {
type: Boolean, type: Boolean,
value: true value: true,
}, showUpload: { },
showUpload: {
type: Boolean, type: Boolean,
value: true value: true,
}, previewImage: { },
previewImage: {
type: Boolean, type: Boolean,
value: true value: true,
}, previewFullImage: { },
previewFullImage: {
type: Boolean, type: Boolean,
value: true value: true,
}, imageFit: { },
imageFit: {
type: String, type: String,
value: 'scaleToFill' value: 'scaleToFill',
}, uploadIcon: { },
uploadIcon: {
type: String, type: String,
value: 'photograph' value: 'photograph',
} }, chooseImageProps), chooseVideoProps), },
},
chooseImageProps
),
chooseVideoProps
),
data: { data: {
lists: [], lists: [],
isInCount: true isInCount: true,
}, },
methods: { methods: {
formatFileList() { formatFileList() {
const { fileList = [], maxCount } = this.data; const { fileList = [], maxCount } = this.data;
const lists = fileList.map(item => (Object.assign(Object.assign({}, item), { isImage: typeof item.isImage === 'undefined' ? isImageFile(item) : item.isImage }))); const lists = fileList.map((item) =>
Object.assign(Object.assign({}, item), {
isImage:
typeof item.isImage === 'undefined'
? isImageFile(item)
: item.isImage,
})
);
this.setData({ lists, isInCount: lists.length < maxCount }); this.setData({ lists, isInCount: lists.length < maxCount });
}, },
getDetail(index) { getDetail(index) {
return { return {
name: this.data.name, name: this.data.name,
index: index == null ? this.data.fileList.length : index index: index == null ? this.data.fileList.length : index,
}; };
}, },
startUpload() { startUpload() {
const { maxCount, multiple, accept, lists, disabled } = this.data; const { maxCount, multiple, accept, lists, disabled } = this.data;
if (disabled) if (disabled) return;
return; chooseFile(
chooseFile(Object.assign(Object.assign({}, this.data), { maxCount: maxCount - lists.length })) Object.assign(Object.assign({}, this.data), {
.then(res => { maxCount: maxCount - lists.length,
})
)
.then((res) => {
let file = null; let file = null;
if (isVideo(res, accept)) { if (isVideo(res, accept)) {
file = Object.assign({ path: res.tempFilePath }, res); file = Object.assign({ path: res.tempFilePath }, res);
} } else {
else {
file = multiple ? res.tempFiles : res.tempFiles[0]; file = multiple ? res.tempFiles : res.tempFiles[0];
} }
this.onBeforeRead(file); this.onBeforeRead(file);
}) })
.catch(error => { .catch((error) => {
this.$emit('error', error); this.$emit('error', error);
}); });
}, },
@ -83,9 +117,14 @@ VantComponent({
} }
if (useBeforeRead) { if (useBeforeRead) {
res = new Promise((resolve, reject) => { res = new Promise((resolve, reject) => {
this.$emit('before-read', Object.assign(Object.assign({ file }, this.getDetail()), { callback: (ok) => { this.$emit(
'before-read',
Object.assign(Object.assign({ file }, this.getDetail()), {
callback: (ok) => {
ok ? resolve() : reject(); ok ? resolve() : reject();
} })); },
})
);
}); });
} }
if (!res) { if (!res) {
@ -93,15 +132,14 @@ VantComponent({
} }
if (isPromise(res)) { if (isPromise(res)) {
res.then((data) => this.onAfterRead(data || file)); res.then((data) => this.onAfterRead(data || file));
} } else {
else {
this.onAfterRead(file); this.onAfterRead(file);
} }
}, },
onAfterRead(file) { onAfterRead(file) {
const { maxSize } = this.data; const { maxSize } = this.data;
const oversize = Array.isArray(file) const oversize = Array.isArray(file)
? file.some(item => item.size > maxSize) ? file.some((item) => item.size > maxSize)
: file.size > maxSize; : file.size > maxSize;
if (oversize) { if (oversize) {
this.$emit('oversize', Object.assign({ file }, this.getDetail())); this.$emit('oversize', Object.assign({ file }, this.getDetail()));
@ -114,24 +152,35 @@ VantComponent({
}, },
deleteItem(event) { deleteItem(event) {
const { index } = event.currentTarget.dataset; const { index } = event.currentTarget.dataset;
this.$emit('delete', Object.assign(Object.assign({}, this.getDetail(index)), { file: this.data.fileList[index] })); this.$emit(
'delete',
Object.assign(Object.assign({}, this.getDetail(index)), {
file: this.data.fileList[index],
})
);
}, },
onPreviewImage(event) { onPreviewImage(event) {
if (!this.data.previewFullImage) return;
const { index } = event.currentTarget.dataset; const { index } = event.currentTarget.dataset;
const { lists } = this.data; const { lists } = this.data;
const item = lists[index]; const item = lists[index];
this.$emit('click-preview', Object.assign({ url: item.url || item.path }, this.getDetail(index)));
if (!this.data.previewFullImage)
return;
wx.previewImage({ wx.previewImage({
urls: lists urls: lists
.filter(item => item.isImage) .filter((item) => item.isImage)
.map(item => item.url || item.path), .map((item) => item.url || item.path),
current: item.url || item.path, current: item.url || item.path,
fail() { fail() {
wx.showToast({ title: '预览图片失败', icon: 'none' }); wx.showToast({ title: '预览图片失败', icon: 'none' });
} },
}); });
} },
} onClickPreview(event) {
const { index } = event.currentTarget.dataset;
const item = this.data.lists[index];
this.$emit(
'click-preview',
Object.assign(Object.assign({}, item), this.getDetail(index))
);
},
},
}); });

View File

@ -8,6 +8,8 @@
wx:for="{{ lists }}" wx:for="{{ lists }}"
wx:key="index" wx:key="index"
class="van-uploader__preview" class="van-uploader__preview"
data-index="{{ index }}"
bindtap="onClickPreview"
> >
<image <image
wx:if="{{ item.isImage }}" wx:if="{{ item.isImage }}"

View File

@ -2,29 +2,29 @@
export const chooseImageProps = { export const chooseImageProps = {
sizeType: { sizeType: {
type: Array, type: Array,
value: ['original', 'compressed'] value: ['original', 'compressed'],
}, },
capture: { capture: {
type: Array, type: Array,
value: ['album', 'camera'] value: ['album', 'camera'],
} },
}; };
// props for choose video // props for choose video
export const chooseVideoProps = { export const chooseVideoProps = {
capture: { capture: {
type: Array, type: Array,
value: ['album', 'camera'] value: ['album', 'camera'],
}, },
compressed: { compressed: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
maxDuration: { maxDuration: {
type: Number, type: Number,
value: 60 value: 60,
}, },
camera: { camera: {
type: String, type: String,
value: 'back' value: 'back',
} },
}; };

View File

@ -9,8 +9,20 @@ interface File {
image: boolean; image: boolean;
} }
export declare function isImageFile(item: File): boolean; export declare function isImageFile(item: File): boolean;
export declare function isVideo(res: any, accept: string): res is WechatMiniprogram.ChooseVideoSuccessCallbackResult; export declare function isVideo(
export declare function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount }: { res: any,
accept: string
): res is WechatMiniprogram.ChooseVideoSuccessCallbackResult;
export declare function chooseFile({
accept,
multiple,
capture,
compressed,
maxDuration,
sizeType,
camera,
maxCount,
}: {
accept: any; accept: any;
multiple: any; multiple: any;
capture: any; capture: any;
@ -19,7 +31,12 @@ export declare function chooseFile({ accept, multiple, capture, compressed, maxD
sizeType: any; sizeType: any;
camera: any; camera: any;
maxCount: any; maxCount: any;
}): Promise<WechatMiniprogram.ChooseImageSuccessCallbackResult | WechatMiniprogram.ChooseVideoSuccessCallbackResult | WechatMiniprogram.ChooseMessageFileSuccessCallbackResult>; }): Promise<
| WechatMiniprogram.ChooseImageSuccessCallbackResult
| WechatMiniprogram.ChooseMediaSuccessCallbackResult
| WechatMiniprogram.ChooseVideoSuccessCallbackResult
| WechatMiniprogram.ChooseMessageFileSuccessCallbackResult
>;
export declare function isFunction(val: unknown): val is Function; export declare function isFunction(val: unknown): val is Function;
export declare function isObject(val: any): val is Record<any, any>; export declare function isObject(val: any): val is Record<any, any>;
export declare function isPromise<T = any>(val: unknown): val is Promise<T>; export declare function isPromise<T = any>(val: unknown): val is Promise<T>;

Some files were not shown because too many files have changed in this diff Show More