diff --git a/dist/area/index.js b/dist/area/index.js index 1e3e8d50..3b3494de 100644 --- a/dist/area/index.js +++ b/dist/area/index.js @@ -1,7 +1,7 @@ import { VantComponent } from '../common/component'; import { pickerProps } from '../picker/shared'; import { requestAnimationFrame } from '../common/utils'; -const COLUMNSPLACEHOLDERCODE = '000000'; +const EMPTY_CODE = '000000'; VantComponent({ classes: ['active-class', 'toolbar-class', 'column-class'], props: Object.assign(Object.assign({}, pickerProps), { @@ -20,11 +20,6 @@ VantComponent({ columnsNum: { type: null, value: 3, - observer(value) { - this.setData({ - displayColumns: this.data.columns.slice(0, +value), - }); - }, }, columnsPlaceholder: { type: Array, @@ -41,7 +36,6 @@ VantComponent({ }), data: { columns: [{ values: [] }, { values: [] }, { values: [] }], - displayColumns: [{ values: [] }, { values: [] }, { values: [] }], typeToColumnsPlaceholder: {}, }, mounted() { @@ -62,7 +56,7 @@ VantComponent({ onConfirm(event) { const { index } = event.detail; let { value } = event.detail; - value = this.parseOutputValues(value); + value = this.parseValues(value); this.emit('confirm', { value, index }); }, emit(type, detail) { @@ -70,16 +64,17 @@ VantComponent({ delete detail.value; this.$emit(type, detail); }, - // parse output columns data - parseOutputValues(values) { + parseValues(values) { const { columnsPlaceholder } = this.data; return values.map((value, index) => { - // save undefined value - if (!value) return value; - value = JSON.parse(JSON.stringify(value)); - if (!value.code || value.name === columnsPlaceholder[index]) { - value.code = ''; - value.name = ''; + if ( + value && + (!value.code || value.name === columnsPlaceholder[index]) + ) { + return Object.assign(Object.assign({}, value), { + code: '', + name: '', + }); } return value; }); @@ -90,7 +85,7 @@ VantComponent({ this.setValues().then(() => { this.$emit('change', { picker, - values: this.parseOutputValues(picker.getValues()), + values: this.parseValues(picker.getValues()), index, }); }); @@ -100,13 +95,12 @@ VantComponent({ return (areaList && areaList[`${type}_list`]) || {}; }, getList(type, code) { - const { typeToColumnsPlaceholder } = this.data; - let result = []; if (type !== 'province' && !code) { - return result; + return []; } + const { typeToColumnsPlaceholder } = this.data; const list = this.getConfig(type); - result = Object.keys(list).map((code) => ({ + let result = Object.keys(list).map((code) => ({ code, name: list[code], })); @@ -123,8 +117,8 @@ VantComponent({ type === 'province' ? '' : type === 'city' - ? COLUMNSPLACEHOLDERCODE.slice(2, 4) - : COLUMNSPLACEHOLDERCODE.slice(4, 6); + ? EMPTY_CODE.slice(2, 4) + : EMPTY_CODE.slice(4, 6); result.unshift({ code: `${code}${codeFill}`, name: typeToColumnsPlaceholder[type], @@ -148,35 +142,25 @@ VantComponent({ return 0; }, setValues() { - const county = this.getConfig('county'); - let { code } = this; - if (!code) { - if (this.data.columnsPlaceholder.length) { - code = COLUMNSPLACEHOLDERCODE; - } else if (Object.keys(county)[0]) { - code = Object.keys(county)[0]; - } else { - code = ''; - } - } - const province = this.getList('province'); - const city = this.getList('city', code.slice(0, 2)); const picker = this.getPicker(); if (!picker) { return; } + let code = this.code || this.getDefaultCode(); + const provinceList = this.getList('province'); + const cityList = this.getList('city', code.slice(0, 2)); const stack = []; const indexes = []; const { columnsNum } = this.data; if (columnsNum >= 1) { - stack.push(picker.setColumnValues(0, province, false)); + stack.push(picker.setColumnValues(0, provinceList, false)); indexes.push(this.getIndex('province', code)); } if (columnsNum >= 2) { - stack.push(picker.setColumnValues(1, city, false)); + stack.push(picker.setColumnValues(1, cityList, false)); indexes.push(this.getIndex('city', code)); - if (city.length && code.slice(2, 4) === '00') { - [{ code }] = city; + if (cityList.length && code.slice(2, 4) === '00') { + [{ code }] = cityList; } } if (columnsNum === 3) { @@ -194,9 +178,27 @@ VantComponent({ .then(() => picker.setIndexes(indexes)) .catch(() => {}); }, + getDefaultCode() { + const { columnsPlaceholder } = this.data; + if (columnsPlaceholder.length) { + return EMPTY_CODE; + } + const countyCodes = Object.keys(this.getConfig('county')); + if (countyCodes[0]) { + return countyCodes[0]; + } + const cityCodes = Object.keys(this.getConfig('city')); + if (cityCodes[0]) { + return cityCodes[0]; + } + return ''; + }, getValues() { const picker = this.getPicker(); - return picker ? picker.getValues().filter((value) => !!value) : []; + if (!picker) { + return []; + } + return this.parseValues(picker.getValues().filter((value) => !!value)); }, getDetail() { const values = this.getValues(); diff --git a/dist/area/index.wxml b/dist/area/index.wxml index 60757941..f7dc51f5 100644 --- a/dist/area/index.wxml +++ b/dist/area/index.wxml @@ -1,3 +1,5 @@ + + +export declare function setContentAnimate( + context: WechatMiniprogram.Component.TrivialInstance, + expanded: boolean, + mounted: boolean +): void; diff --git a/dist/collapse-item/animate.js b/dist/collapse-item/animate.js new file mode 100644 index 00000000..c3f15927 --- /dev/null +++ b/dist/collapse-item/animate.js @@ -0,0 +1,71 @@ +import { canIUseAnimate } from '../common/version'; +import { getRect } from '../common/utils'; +function useAnimate(context, expanded, mounted, height) { + const selector = '.van-collapse-item__wrapper'; + if (expanded) { + context.animate( + selector, + [ + { height: 0, ease: 'ease-in-out', offset: 0 }, + { height: `${height}px`, ease: 'ease-in-out', offset: 1 }, + { height: `auto`, ease: 'ease-in-out', offset: 1 }, + ], + mounted ? 300 : 0, + () => { + context.clearAnimation(selector); + } + ); + return; + } + context.animate( + selector, + [ + { height: `${height}px`, ease: 'ease-in-out', offset: 0 }, + { height: 0, ease: 'ease-in-out', offset: 1 }, + ], + 300, + () => { + context.clearAnimation(selector); + } + ); +} +function useAnimation(context, expanded, mounted, height) { + const animation = wx.createAnimation({ + duration: 0, + timingFunction: 'ease-in-out', + }); + if (expanded) { + if (height === 0) { + animation.height('auto').top(1).step(); + } else { + animation + .height(height) + .top(1) + .step({ + duration: mounted ? 300 : 1, + }) + .height('auto') + .step(); + } + context.setData({ + animation: animation.export(), + }); + return; + } + animation.height(height).top(0).step({ duration: 1 }).height(0).step({ + duration: 300, + }); + context.setData({ + animation: animation.export(), + }); +} +export function setContentAnimate(context, expanded, mounted) { + getRect + .call(context, '.van-collapse-item__content') + .then((rect) => rect.height) + .then((height) => { + canIUseAnimate() + ? useAnimate(context, expanded, mounted, height) + : useAnimation(context, expanded, mounted, height); + }); +} diff --git a/dist/collapse-item/index.js b/dist/collapse-item/index.js index aec309e5..50ddb5e3 100644 --- a/dist/collapse-item/index.js +++ b/dist/collapse-item/index.js @@ -1,4 +1,5 @@ import { VantComponent } from '../common/component'; +import { setContentAnimate } from './animate'; VantComponent({ classes: ['title-class', 'content-class'], relation: { @@ -26,20 +27,14 @@ VantComponent({ data: { expanded: false, }, - created() { - this.animation = wx.createAnimation({ - duration: 0, - timingFunction: 'ease-in-out', - }); - }, mounted() { this.updateExpanded(); - this.inited = true; + this.mounted = true; }, methods: { updateExpanded() { if (!this.parent) { - return Promise.resolve(); + return; } const { value, accordion } = this.parent.data; const { children = [] } = this.parent; @@ -50,42 +45,10 @@ VantComponent({ ? value === currentName : (value || []).some((name) => name === currentName); if (expanded !== this.data.expanded) { - this.updateStyle(expanded); + setContentAnimate(this, expanded, this.mounted); } this.setData({ index, expanded }); }, - updateStyle(expanded) { - const { inited } = this; - this.getRect('.van-collapse-item__content') - .then((rect) => rect.height) - .then((height) => { - const { animation } = this; - if (expanded) { - if (height === 0) { - animation.height('auto').top(1).step(); - } else { - animation - .height(height) - .top(1) - .step({ - duration: inited ? 300 : 1, - }) - .height('auto') - .step(); - } - this.setData({ - animation: animation.export(), - }); - return; - } - animation.height(height).top(0).step({ duration: 1 }).height(0).step({ - duration: 300, - }); - this.setData({ - animation: animation.export(), - }); - }); - }, onClick() { if (this.data.disabled) { return; diff --git a/dist/common/utils.d.ts b/dist/common/utils.d.ts index 2454e2b8..c0947476 100644 --- a/dist/common/utils.d.ts +++ b/dist/common/utils.d.ts @@ -17,3 +17,6 @@ export declare function getAllRect( this: WechatMiniprogram.Component.TrivialInstance, selector: string ): Promise; +export declare function toPromise( + promiseLike: Promise | unknown +): Promise; diff --git a/dist/common/utils.js b/dist/common/utils.js index 5d93882c..24b55413 100644 --- a/dist/common/utils.js +++ b/dist/common/utils.js @@ -1,4 +1,4 @@ -import { isNumber, isPlainObject } from './validator'; +import { isNumber, isPlainObject, isPromise } from './validator'; export function isDef(value) { return value !== undefined && value !== null; } @@ -70,3 +70,9 @@ export function getAllRect(selector) { .exec((rect = []) => resolve(rect[0])); }); } +export function toPromise(promiseLike) { + if (isPromise(promiseLike)) { + return promiseLike; + } + return Promise.resolve(promiseLike); +} diff --git a/dist/common/version.d.ts b/dist/common/version.d.ts index d4c6fe24..4af01327 100644 --- a/dist/common/version.d.ts +++ b/dist/common/version.d.ts @@ -1,2 +1,3 @@ export declare function canIUseModel(): boolean; export declare function canIUseFormFieldButton(): boolean; +export declare function canIUseAnimate(): boolean; diff --git a/dist/common/version.js b/dist/common/version.js index 01f24f88..1e0a0723 100644 --- a/dist/common/version.js +++ b/dist/common/version.js @@ -29,3 +29,7 @@ export function canIUseFormFieldButton() { const system = getSystemInfoSync(); return compareVersion(system.SDKVersion, '2.10.3') >= 0; } +export function canIUseAnimate() { + const system = getSystemInfoSync(); + return compareVersion(system.SDKVersion, '2.9.0') >= 0; +} diff --git a/dist/dialog/dialog.d.ts b/dist/dialog/dialog.d.ts index 109a15cb..ee7f4559 100644 --- a/dist/dialog/dialog.d.ts +++ b/dist/dialog/dialog.d.ts @@ -1,4 +1,5 @@ /// +export declare type Action = 'confirm' | 'cancel' | 'overlay'; interface DialogOptions { lang?: string; show?: boolean; @@ -16,7 +17,11 @@ interface DialogOptions { className?: string; customStyle?: string; transition?: string; + /** + * @deprecated use beforeClose instead + */ asyncClose?: boolean; + beforeClose?: null | (() => Promise | void); businessId?: number; sessionFrom?: string; overlayStyle?: string; diff --git a/dist/dialog/dialog.js b/dist/dialog/dialog.js index 94f1d3db..542c07b0 100644 --- a/dist/dialog/dialog.js +++ b/dist/dialog/dialog.js @@ -10,6 +10,7 @@ const defaultOptions = { selector: '#van-dialog', className: '', asyncClose: false, + beforeClose: null, transition: 'scale', customStyle: '', messageAlign: '', @@ -35,7 +36,14 @@ const Dialog = (options) => { delete options.selector; if (dialog) { dialog.setData( - Object.assign({ onCancel: reject, onConfirm: resolve }, options) + Object.assign( + { + callback: (action, instance) => { + action === 'confirm' ? resolve(instance) : reject(instance); + }, + }, + options + ) ); wx.nextTick(() => { dialog.setData({ show: true }); diff --git a/dist/dialog/index.js b/dist/dialog/index.js index 5aa7f8f4..f2e4f386 100644 --- a/dist/dialog/index.js +++ b/dist/dialog/index.js @@ -2,6 +2,7 @@ import { VantComponent } from '../common/component'; import { button } from '../mixins/button'; import { openType } from '../mixins/open-type'; import { GRAY, RED } from '../common/color'; +import { toPromise } from '../common/utils'; VantComponent({ mixins: [button, openType], props: { @@ -22,6 +23,7 @@ VantComponent({ customStyle: String, asyncClose: Boolean, messageAlign: String, + beforeClose: null, overlayStyle: String, useTitleSlot: Boolean, showCancelButton: Boolean, @@ -77,17 +79,14 @@ VantComponent({ onClickOverlay() { this.onClose('overlay'); }, - handleAction(action) { - if (this.data.asyncClose) { - this.setData({ - [`loading.${action}`]: true, - }); - } - this.onClose(action); - }, - close() { - this.setData({ - show: false, + close(action) { + this.setData({ show: false }); + wx.nextTick(() => { + this.$emit('close', action); + const { callback } = this.data; + if (callback) { + callback(action, this); + } }); }, stopLoading() { @@ -98,18 +97,24 @@ VantComponent({ }, }); }, - onClose(action) { - if (!this.data.asyncClose) { - this.close(); - } - this.$emit('close', action); - // 把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading + handleAction(action) { this.$emit(action, { dialog: this }); - const callback = this.data[ - action === 'confirm' ? 'onConfirm' : 'onCancel' - ]; - if (callback) { - callback(this); + const { asyncClose, beforeClose } = this.data; + if (!asyncClose && !beforeClose) { + this.close(action); + return; + } + this.setData({ + [`loading.${action}`]: true, + }); + if (beforeClose) { + toPromise(beforeClose(action)).then((value) => { + if (value) { + this.close(action); + } else { + this.stopLoading(); + } + }); } }, }, diff --git a/dist/dialog/index.json b/dist/dialog/index.json index 1b87cc89..43417fc8 100644 --- a/dist/dialog/index.json +++ b/dist/dialog/index.json @@ -3,7 +3,7 @@ "usingComponents": { "van-popup": "../popup/index", "van-button": "../button/index", - "van-goods-action": "../goods-action//index", + "van-goods-action": "../goods-action/index", "van-goods-action-button": "../goods-action-button/index" } } diff --git a/dist/dropdown-menu/index.js b/dist/dropdown-menu/index.js index bd786530..6a1d7674 100644 --- a/dist/dropdown-menu/index.js +++ b/dist/dropdown-menu/index.js @@ -1,5 +1,5 @@ import { VantComponent } from '../common/component'; -import { addUnit } from '../common/utils'; +import { addUnit, getRect } from '../common/utils'; let ARRAY = []; VantComponent({ field: true, @@ -87,7 +87,7 @@ VantComponent({ }, getChildWrapperStyle() { const { zIndex, direction } = this.data; - return this.getRect('.van-dropdown-menu').then((rect) => { + return getRect.call(this, '.van-dropdown-menu').then((rect) => { const { top = 0, bottom = 0 } = rect; const offset = direction === 'down' ? bottom : this.windowHeight - top; let wrapperStyle = `z-index: ${zIndex};`; diff --git a/dist/field/index.wxml b/dist/field/index.wxml index 42bd26b1..6254e676 100644 --- a/dist/field/index.wxml +++ b/dist/field/index.wxml @@ -99,7 +99,7 @@ - {{ value.length }}/{{ maxlength }} + {{ value.length >= maxlength ? maxlength : value.length }}/{{ maxlength }} {{ errorMessage }} diff --git a/dist/index-anchor/index.js b/dist/index-anchor/index.js index d76d2740..3e2eeede 100644 --- a/dist/index-anchor/index.js +++ b/dist/index-anchor/index.js @@ -1,3 +1,4 @@ +import { getRect } from '../common/utils'; import { VantComponent } from '../common/component'; VantComponent({ relation: { @@ -16,15 +17,12 @@ VantComponent({ }, methods: { scrollIntoView(scrollTop) { - this.getBoundingClientRect().then((rect) => { + getRect.call(this, '.van-index-anchor-wrapper').then((rect) => { wx.pageScrollTo({ duration: 0, scrollTop: scrollTop + rect.top - this.parent.data.stickyOffsetTop, }); }); }, - getBoundingClientRect() { - return this.getRect('.van-index-anchor-wrapper'); - }, }, }); diff --git a/dist/info/index.wxml b/dist/info/index.wxml index 3112dfc9..b39b5245 100644 --- a/dist/info/index.wxml +++ b/dist/info/index.wxml @@ -2,6 +2,6 @@ {{ dot ? '' : info }} diff --git a/dist/info/index.wxss b/dist/info/index.wxss index 2994df84..953136a5 100644 --- a/dist/info/index.wxss +++ b/dist/info/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;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%;height:16px;height:var(--info-size,16px);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:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);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)} \ No newline at end of file +@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;white-space:nowrap;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);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:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);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)} \ No newline at end of file diff --git a/dist/mixins/basic.js b/dist/mixins/basic.js index f57ad138..91659a29 100644 --- a/dist/mixins/basic.js +++ b/dist/mixins/basic.js @@ -7,21 +7,5 @@ export const basic = Behavior({ this.setData(data, callback); return new Promise((resolve) => wx.nextTick(resolve)); }, - getRect(selector, all) { - return new Promise((resolve) => { - wx.createSelectorQuery() - .in(this) - [all ? 'selectAll' : 'select'](selector) - .boundingClientRect((rect) => { - if (all && Array.isArray(rect) && rect.length) { - resolve(rect); - } - if (!all && rect) { - resolve(rect); - } - }) - .exec(); - }); - }, }, }); diff --git a/dist/mixins/link.js b/dist/mixins/link.js index f215742e..4612e340 100644 --- a/dist/mixins/link.js +++ b/dist/mixins/link.js @@ -10,7 +10,14 @@ export const link = Behavior({ jumpLink(urlKey = 'url') { const url = this.data[urlKey]; if (url) { - wx[this.data.linkType]({ url }); + if ( + this.data.linkType === 'navigateTo' && + getCurrentPages().length > 9 + ) { + wx.redirectTo({ url }); + } else { + wx[this.data.linkType]({ url }); + } } }, }, diff --git a/dist/nav-bar/index.js b/dist/nav-bar/index.js index 6541e3a7..11799985 100644 --- a/dist/nav-bar/index.js +++ b/dist/nav-bar/index.js @@ -55,7 +55,9 @@ VantComponent({ } wx.nextTick(() => { getRect.call(this, '.van-nav-bar').then((res) => { - this.setData({ height: res.height }); + if (res && 'height' in res) { + this.setData({ height: res.height }); + } }); }); }, diff --git a/dist/nav-bar/index.wxs b/dist/nav-bar/index.wxs index 64828328..55b4158d 100644 --- a/dist/nav-bar/index.wxs +++ b/dist/nav-bar/index.wxs @@ -1,15 +1,11 @@ /* eslint-disable */ -function barStyle(data) { - var styles = [ - ['z-index', data.zIndex], - ['padding-top', data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0], - ]; +var style = require('../wxs/style.wxs'); - return styles - .map(function (item) { - return item.join(':'); - }) - .join(';'); +function barStyle(data) { + return style({ + 'z-index': data.zIndex, + 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0, + }); } module.exports = { diff --git a/dist/popup/index.wxml b/dist/popup/index.wxml index 9b41e5c3..f3fd7cfa 100644 --- a/dist/popup/index.wxml +++ b/dist/popup/index.wxml @@ -1,4 +1,5 @@ + diff --git a/dist/popup/index.wxs b/dist/popup/index.wxs new file mode 100644 index 00000000..8c766dcd --- /dev/null +++ b/dist/popup/index.wxs @@ -0,0 +1,18 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); + +function popupClass(data) { + return style([ + { + 'z-index': data.zIndex, + '-webkit-transition-duration': data.currentDuration + 'ms', + 'transition-duration': data.currentDuration + 'ms', + }, + data.display ? null : 'display: none', + data.customStyle, + ]); +} + +module.exports = { + popupClass: popupClass, +}; diff --git a/dist/progress/index.js b/dist/progress/index.js index 8136d5e8..d49fcfc5 100644 --- a/dist/progress/index.js +++ b/dist/progress/index.js @@ -1,9 +1,13 @@ import { VantComponent } from '../common/component'; import { BLUE } from '../common/color'; +import { getRect } from '../common/utils'; VantComponent({ props: { inactive: Boolean, - percentage: Number, + percentage: { + type: Number, + observer: 'setLeft', + }, pivotText: String, pivotColor: String, trackColor: String, @@ -24,4 +28,24 @@ VantComponent({ value: 4, }, }, + data: { + right: 0, + }, + mounted() { + this.setLeft(); + }, + methods: { + setLeft() { + Promise.all([ + getRect.call(this, '.van-progress'), + getRect.call(this, '.van-progress__pivot'), + ]).then(([portion, pivot]) => { + if (portion && pivot) { + this.setData({ + right: (pivot.width * (this.data.percentage - 100)) / 100, + }); + } + }); + }, + }, }); diff --git a/dist/progress/index.wxml b/dist/progress/index.wxml index e5981f09..e81514d0 100644 --- a/dist/progress/index.wxml +++ b/dist/progress/index.wxml @@ -1,20 +1,20 @@ - + - {{ getters.text(pivotText, percentage) }} + {{ computed.pivotText(pivotText, percentage) }} diff --git a/dist/progress/index.wxs b/dist/progress/index.wxs index d6853452..5b1e8e6b 100644 --- a/dist/progress/index.wxs +++ b/dist/progress/index.wxs @@ -1,5 +1,36 @@ +/* eslint-disable */ +var utils = require('../wxs/utils.wxs'); +var style = require('../wxs/style.wxs'); + +function pivotText(pivotText, percentage) { + return pivotText || percentage + '%'; +} + +function rootStyle(data) { + return style({ + 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '', + 'background': data.trackColor, + }); +} + +function portionStyle(data) { + return style({ + background: data.inactive ? '#cacaca' : data.color, + width: data.percentage ? data.percentage + '%' : '', + }); +} + +function pivotStyle(data) { + return style({ + color: data.textColor, + right: data.right + 'px', + background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color, + }); +} + module.exports = { - text: function(pivotText, percentage) { - return pivotText || percentage + '%'; - } + pivotText: pivotText, + rootStyle: rootStyle, + portionStyle: portionStyle, + pivotStyle: pivotStyle, }; diff --git a/dist/progress/index.wxss b/dist/progress/index.wxss index 33c62c7a..3844a59e 100644 --- a/dist/progress/index.wxss +++ b/dist/progress/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;right:0;box-sizing:border-box;min-width:2em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)} \ No newline at end of file +@import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)} \ No newline at end of file diff --git a/dist/rate/index.js b/dist/rate/index.js index 99e66924..d72960a8 100644 --- a/dist/rate/index.js +++ b/dist/rate/index.js @@ -1,3 +1,4 @@ +import { getAllRect } from '../common/utils'; import { VantComponent } from '../common/component'; import { canIUseModel } from '../common/version'; VantComponent({ @@ -72,7 +73,7 @@ VantComponent({ const { touchable } = this.data; if (!touchable) return; const { clientX } = event.touches[0]; - this.getRect('.van-rate__icon', true).then((list) => { + getAllRect.call(this, '.van-rate__icon').then((list) => { const target = list .sort((item) => item.right - item.left) .find((item) => clientX >= item.left && clientX <= item.right); diff --git a/dist/slider/index.js b/dist/slider/index.js index 97432920..ad8640b8 100644 --- a/dist/slider/index.js +++ b/dist/slider/index.js @@ -1,6 +1,7 @@ import { VantComponent } from '../common/component'; import { touch } from '../mixins/touch'; import { canIUseModel } from '../common/version'; +import { getRect } from '../common/utils'; VantComponent({ mixins: [touch], props: { @@ -51,7 +52,7 @@ VantComponent({ } this.touchMove(event); this.dragStatus = 'draging'; - this.getRect('.van-slider').then((rect) => { + getRect.call(this, '.van-slider').then((rect) => { const diff = (this.deltaX / rect.width) * 100; this.newValue = this.startValue + diff; this.updateValue(this.newValue, false, true); @@ -67,7 +68,7 @@ VantComponent({ onClick(event) { if (this.data.disabled) return; const { min } = this.data; - this.getRect('.van-slider').then((rect) => { + getRect.call(this, '.van-slider').then((rect) => { const value = ((event.detail.x - rect.left) / rect.width) * this.getRange() + min; this.updateValue(value, true); diff --git a/dist/sticky/index.js b/dist/sticky/index.js index 3a2289bf..71261663 100644 --- a/dist/sticky/index.js +++ b/dist/sticky/index.js @@ -1,3 +1,4 @@ +import { getRect } from '../common/utils'; import { VantComponent } from '../common/component'; import { pageScrollMixin } from '../mixins/page-scroll'; const ROOT_ELEMENT = '.van-sticky'; @@ -55,27 +56,28 @@ VantComponent({ } this.scrollTop = scrollTop || this.scrollTop; if (typeof container === 'function') { - Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then( - ([root, container]) => { - if (offsetTop + root.height > container.height + container.top) { - this.setDataAfterDiff({ - fixed: false, - transform: container.height - root.height, - }); - } else if (offsetTop >= root.top) { - this.setDataAfterDiff({ - fixed: true, - height: root.height, - transform: 0, - }); - } else { - this.setDataAfterDiff({ fixed: false, transform: 0 }); - } + Promise.all([ + getRect.call(this, ROOT_ELEMENT), + this.getContainerRect(), + ]).then(([root, container]) => { + if (offsetTop + root.height > container.height + container.top) { + this.setDataAfterDiff({ + fixed: false, + transform: container.height - root.height, + }); + } else if (offsetTop >= root.top) { + this.setDataAfterDiff({ + fixed: true, + height: root.height, + transform: 0, + }); + } else { + this.setDataAfterDiff({ fixed: false, transform: 0 }); } - ); + }); return; } - this.getRect(ROOT_ELEMENT).then((root) => { + getRect.call(this, ROOT_ELEMENT).then((root) => { if (offsetTop >= root.top) { this.setDataAfterDiff({ fixed: true, height: root.height }); this.transform = 0; diff --git a/dist/sticky/index.wxs b/dist/sticky/index.wxs index 18efe147..10eec72a 100644 --- a/dist/sticky/index.wxs +++ b/dist/sticky/index.wxs @@ -1,37 +1,24 @@ /* eslint-disable */ +var style = require('../wxs/style.wxs'); + function wrapStyle(data) { - var style = ''; - - if (data.transform) { - style += 'transform: translate3d(0, ' + data.transform + 'px, 0);'; - } - - if (data.fixed) { - style += 'top: ' + data.offsetTop + 'px;'; - } - - if (data.zIndex) { - style += 'z-index: ' + data.zIndex + ';'; - } - - return style; + return style({ + transform: data.transform + ? 'translate3d(0, ' + data.transform + 'px, 0)' + : '', + top: data.fixed ? data.offsetTop + 'px' : '', + 'z-index': data.zIndex, + }); } function containerStyle(data) { - var style = ''; - - if (data.fixed) { - style += 'height: ' + data.height + 'px;'; - } - - if (data.zIndex) { - style += 'z-index: ' + data.zIndex + ';'; - } - - return style; + return style({ + height: data.fixed ? data.height + 'px' : '', + 'z-index': data.zIndex, + }); } module.exports = { wrapStyle: wrapStyle, - containerStyle: containerStyle + containerStyle: containerStyle, }; diff --git a/dist/tabs/index.js b/dist/tabs/index.js index 8f1c081b..c517cec4 100644 --- a/dist/tabs/index.js +++ b/dist/tabs/index.js @@ -38,7 +38,7 @@ VantComponent({ lineWidth: { type: [String, Number], value: 40, - observer: 'setLine', + observer: 'resize', }, lineHeight: { type: [String, Number], @@ -100,7 +100,7 @@ VantComponent({ }, mounted() { wx.nextTick(() => { - this.setLine(true); + this.resize(true); this.scrollIntoView(); }); }, @@ -174,7 +174,7 @@ VantComponent({ const shouldEmitChange = data.currentIndex !== null; this.setData({ currentIndex }); wx.nextTick(() => { - this.setLine(); + this.resize(); this.scrollIntoView(); this.updateContainer(); this.trigger('input'); @@ -189,7 +189,7 @@ VantComponent({ return activeTab.getComputedName(); } }, - setLine(skipTransition = false) { + resize(skipTransition = false) { if (this.data.type !== 'line') { return; } diff --git a/dist/tabs/index.wxml b/dist/tabs/index.wxml index dd92ac49..0dc346b2 100644 --- a/dist/tabs/index.wxml +++ b/dist/tabs/index.wxml @@ -1,5 +1,5 @@ - + - - + + @@ -55,7 +55,7 @@ > diff --git a/dist/tabs/index.wxs b/dist/tabs/index.wxs index 60c48fd4..a027c7b9 100644 --- a/dist/tabs/index.wxs +++ b/dist/tabs/index.wxs @@ -1,5 +1,6 @@ /* eslint-disable */ var utils = require('../wxs/utils.wxs'); +var style = require('../wxs/style.wxs'); function tabClass(active, ellipsis) { var classes = ['tab-class']; @@ -15,51 +16,33 @@ function tabClass(active, ellipsis) { return classes.join(' '); } -function tabStyle( - active, - ellipsis, - color, - type, - disabled, - activeColor, - inactiveColor, - swipeThreshold, - scrollable -) { - var styles = []; - var isCard = type === 'card'; +function tabStyle(data) { + var titleColor = data.active + ? data.titleActiveColor + : data.titleInactiveColor; + + var ellipsis = data.scrollable && data.ellipsis; + // card theme color - if (color && isCard) { - styles.push('border-color:' + color); - - if (!disabled) { - if (active) { - styles.push('background-color:' + color); - } else { - styles.push('color:' + color); - } - } + if (data.type === 'card') { + return style({ + 'border-color': data.color, + 'background-color': !data.disabled && data.active ? data.color : null, + color: titleColor || (!data.disabled && !data.active ? data.color : null), + 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null, + }); } - var titleColor = active ? activeColor : inactiveColor; - if (titleColor) { - styles.push('color:' + titleColor); - } - - if (scrollable && ellipsis) { - styles.push('flex-basis:' + 88 / swipeThreshold + '%'); - } - - return styles.join(';'); + return style({ + color: titleColor, + 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null, + }); } -function tabCardTypeBorderStyle(color, type) { - var isCard = type === 'card'; - var styles = []; - if (isCard && color) { - styles.push('border-color:' + color); - } - return styles.join(';'); +function navStyle(color, type) { + return style({ + 'border-color': type === 'card' && color ? color : null, + }); } function trackStyle(data) { @@ -67,43 +50,27 @@ function trackStyle(data) { return ''; } - return [ - ['left', -100 * data.currentIndex + '%'], - ['-webkit-transition-duration', data.duration + 's'], - ['transition-duration: ', data.duration + 's'], - ] - .map(function (item) { - return item.join(':'); - }) - .join(';'); + return style({ + left: -100 * data.currentIndex + '%', + 'transition-duration': data.duration + 's', + '-webkit-transition-duration': data.duration + 's', + }); } function lineStyle(data) { - var styles = [ - ['width', utils.addUnit(data.lineWidth)], - ['transform', 'translateX(' + data.lineOffsetLeft + 'px)'], - ['-webkit-transform', 'translateX(' + data.lineOffsetLeft + 'px)'], - ]; - - if (data.color) { - styles.push(['background-color', data.color]); - } - - if (data.lineHeight !== -1) { - styles.push(['height', utils.addUnit(data.lineHeight)]); - styles.push(['border-radius', utils.addUnit(data.lineHeight)]); - } - - if (!data.skipTransition) { - styles.push(['transition-duration', data.duration + 's']); - styles.push(['-webkit-transition-duration', data.duration + 's']); - } - - return styles - .map(function (item) { - return item.join(':'); - }) - .join(';'); + return style({ + width: utils.addUnit(data.lineWidth), + transform: 'translateX(' + data.lineOffsetLeft + 'px)', + '-webkit-transform': 'translateX(' + data.lineOffsetLeft + 'px)', + 'background-color': data.color, + height: data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null, + 'border-radius': + data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null, + 'transition-duration': !data.skipTransition ? data.duration + 's' : null, + '-webkit-transition-duration': !data.skipTransition + ? data.duration + 's' + : null, + }); } module.exports = { @@ -111,5 +78,5 @@ module.exports = { tabStyle: tabStyle, trackStyle: trackStyle, lineStyle: lineStyle, - tabCardTypeBorderStyle: tabCardTypeBorderStyle, + navStyle: navStyle, }; diff --git a/dist/tree-select/index.js b/dist/tree-select/index.js index d9f6268d..9969d374 100644 --- a/dist/tree-select/index.js +++ b/dist/tree-select/index.js @@ -62,7 +62,7 @@ VantComponent({ updateSubItems() { const { items, mainActiveIndex } = this.data; const { children = [] } = items[mainActiveIndex] || {}; - return this.set({ subItems: children }); + this.setData({ subItems: children }); }, }, }); diff --git a/dist/uploader/index.wxss b/dist/uploader/index.wxss index 61ef7a5c..5023d716 100644 --- a/dist/uploader/index.wxss +++ b/dist/uploader/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{position:relative;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;width:80px;height:80px;margin:0 8px 8px 0;background-color:#f7f8fa}.van-uploader__upload:active{background-color:#f2f3f5}.van-uploader__upload-icon{color:#dcdee0;font-size:24px}.van-uploader__upload-text{margin-top:8px;color:#969799;font-size:12px}.van-uploader__upload--disabled{opacity:.5;opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{position:relative;margin:0 8px 8px 0;cursor:pointer}.van-uploader__preview-image{display:block;width:80px;height:80px;overflow:hidden}.van-uploader__preview-delete{position:absolute;top:0;right:0;width:14px;height:14px;padding:0 0 8px 8px}.van-uploader__preview-delete:after{position:absolute;top:0;right:0;width:14px;height:14px;background-color:rgba(0,0,0,.7);border-radius:0 0 0 12px;content:""}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;z-index:1;color:#fff;font-size:16px;-webkit-transform:scale(.5);transform:scale(.5)}.van-uploader__file{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:80px;height:80px;background-color:#f7f8fa}.van-uploader__file-icon{color:#646566;font-size:20px}.van-uploader__file-name{box-sizing:border-box;width:100%;margin-top:8px;padding:0 4px;color:#646566;font-size:12px;text-align:center}.van-uploader__mask{position:absolute;top:0;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#fff;background-color:rgba(50,50,51,.88)}.van-uploader__mask-icon{font-size:22px}.van-uploader__mask-message{margin-top:6px;padding:0 4px;font-size:12px;line-height:14px}.van-uploader__loading{width:22px;height:22px;color:#fff!important} \ No newline at end of file +@import '../common/index.wxss';.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{position:relative;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0;background-color:#f7f8fa;background-color:var(--uploader-upload-background-color,#f7f8fa)}.van-uploader__upload:active{background-color:#f2f3f5;background-color:var(--uploader-upload-active-color,#f2f3f5)}.van-uploader__upload-icon{color:#dcdee0;color:var(--uploader-icon-color,#dcdee0);font-size:24px;font-size:var(--uploader-icon-size,24px)}.van-uploader__upload-text{margin-top:8px;margin-top:var(--padding-xs,8px);color:#969799;color:var(--uploader-text-color,#969799);font-size:12px;font-size:var(--uploader-text-font-size,12px)}.van-uploader__upload--disabled{opacity:.5;opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{position:relative;cursor:pointer;margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0}.van-uploader__preview-image{display:block;overflow:hidden;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px)}.van-uploader__preview-delete{padding:0 0 8px 8px;padding:0 0 var(--padding-xs,8px) var(--padding-xs,8px)}.van-uploader__preview-delete,.van-uploader__preview-delete:after{position:absolute;top:0;right:0;width:14px;width:var(--uploader-delete-icon-size,14px);height:14px;height:var(--uploader-delete-icon-size,14px)}.van-uploader__preview-delete:after{content:"";background-color:rgba(0,0,0,.7);background-color:var(--uploader-delete-background-color,rgba(0,0,0,.7));border-radius:0 0 0 12px;border-radius:0 0 0 calc(var(--uploader-delete-icon-size, 14px) - 2px)}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;z-index:1;-webkit-transform:scale(.5);transform:scale(.5);font-size:16px;font-size:calc(var(--uploader-delete-icon-size, 14px) + 2px);color:#fff;color:var(--uploader-delete-color,#fff)}.van-uploader__file{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);background-color:#f7f8fa;background-color:var(--uploader-file-background-color,#f7f8fa)}.van-uploader__file-icon{color:#646566;color:var(--uploader-file-icon-color,#646566);font-size:20px;font-size:var(--uploader-file-icon-size,20px)}.van-uploader__file-name{box-sizing:border-box;width:100%;text-align:center;margin-top:8px;margin-top:var(--uploader-file-name-margin-top,8px);padding:0 4px;padding:var(--uploader-file-name-padding,0 4px);color:#646566;color:var(--uploader-file-name-text-color,#646566);font-size:12px;font-size:var(--uploader-file-name-font-size,12px)}.van-uploader__mask{position:absolute;top:0;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#fff;color:var(--white,#fff);background-color:rgba(50,50,51,.88);background-color:var(--uploader-mask-background-color,rgba(50,50,51,.88))}.van-uploader__mask-icon{font-size:22px;font-size:var(--uploader-mask-icon-size,22px)}.van-uploader__mask-message{margin-top:6px;padding:0 4px;padding:0 var(--padding-base,4px);font-size:12px;font-size:var(--uploader-mask-message-font-size,12px);line-height:14px;line-height:var(--uploader-mask-message-line-height,14px)}.van-uploader__loading{width:22px;width:var(--uploader-loading-icon-size,22px);height:22px;height:var(--uploader-loading-icon-size,22px);color:#fff!important;color:var(--uploader-loading-icon-color,#fff)!important} \ No newline at end of file diff --git a/dist/wxs/add-unit.wxs b/dist/wxs/add-unit.wxs index 27a22d82..52f18b55 100644 --- a/dist/wxs/add-unit.wxs +++ b/dist/wxs/add-unit.wxs @@ -9,6 +9,4 @@ function addUnit(value) { return REGEXP.test('' + value) ? value + 'px' : value; } -module.exports = { - addUnit: addUnit -}; +module.exports = addUnit; diff --git a/dist/wxs/bem.wxs b/dist/wxs/bem.wxs index 93b2777b..1efa129e 100644 --- a/dist/wxs/bem.wxs +++ b/dist/wxs/bem.wxs @@ -1,3 +1,4 @@ +/* eslint-disable */ var array = require('./array.wxs'); var object = require('./object.wxs'); var PREFIX = 'van-'; @@ -35,4 +36,4 @@ function bem(name, conf) { return join(name, mods); } -module.exports.bem = bem; +module.exports = bem; diff --git a/dist/wxs/memoize.wxs b/dist/wxs/memoize.wxs index 261ae67d..8f7f46dd 100644 --- a/dist/wxs/memoize.wxs +++ b/dist/wxs/memoize.wxs @@ -2,6 +2,7 @@ * Simple memoize * wxs doesn't support fn.apply, so this memoize only support up to 2 args */ +/* eslint-disable */ function isPrimitive(value) { var type = typeof value; @@ -51,4 +52,4 @@ function memoize(fn) { }; } -module.exports.memoize = memoize; +module.exports = memoize; diff --git a/dist/wxs/style.wxs b/dist/wxs/style.wxs new file mode 100644 index 00000000..3139cde4 --- /dev/null +++ b/dist/wxs/style.wxs @@ -0,0 +1,32 @@ +/* eslint-disable */ +var object = require('./object.wxs'); +var array = require('./array.wxs'); + +function style(styles) { + if (array.isArray(styles)) { + return styles + .filter(function (item) { + return item != null; + }) + .map(function (item) { + return style(item); + }) + .join(';'); + } + + if ('Object' === styles.constructor) { + return object + .keys(styles) + .filter(function (key) { + return styles[key] != null; + }) + .map(function (key) { + return [key, [styles[key]]].join(':'); + }) + .join(';'); + } + + return styles; +} + +module.exports = style; diff --git a/dist/wxs/utils.wxs b/dist/wxs/utils.wxs index d5c9d8c2..f66d33a4 100644 --- a/dist/wxs/utils.wxs +++ b/dist/wxs/utils.wxs @@ -1,7 +1,7 @@ /* eslint-disable */ -var bem = require('./bem.wxs').bem; -var memoize = require('./memoize.wxs').memoize; -var addUnit = require('./add-unit.wxs').addUnit; +var bem = require('./bem.wxs'); +var memoize = require('./memoize.wxs'); +var addUnit = require('./add-unit.wxs'); module.exports = { bem: memoize(bem), diff --git a/lib/area/index.js b/lib/area/index.js index 3521b096..73a4b269 100644 --- a/lib/area/index.js +++ b/lib/area/index.js @@ -18,7 +18,7 @@ Object.defineProperty(exports, '__esModule', { value: true }); var component_1 = require('../common/component'); var shared_1 = require('../picker/shared'); var utils_1 = require('../common/utils'); -var COLUMNSPLACEHOLDERCODE = '000000'; +var EMPTY_CODE = '000000'; component_1.VantComponent({ classes: ['active-class', 'toolbar-class', 'column-class'], props: __assign(__assign({}, shared_1.pickerProps), { @@ -37,11 +37,6 @@ component_1.VantComponent({ columnsNum: { type: null, value: 3, - observer: function (value) { - this.setData({ - displayColumns: this.data.columns.slice(0, +value), - }); - }, }, columnsPlaceholder: { type: Array, @@ -58,7 +53,6 @@ component_1.VantComponent({ }), data: { columns: [{ values: [] }, { values: [] }, { values: [] }], - displayColumns: [{ values: [] }, { values: [] }, { values: [] }], typeToColumnsPlaceholder: {}, }, mounted: function () { @@ -80,7 +74,7 @@ component_1.VantComponent({ onConfirm: function (event) { var index = event.detail.index; var value = event.detail.value; - value = this.parseOutputValues(value); + value = this.parseValues(value); this.emit('confirm', { value: value, index: index }); }, emit: function (type, detail) { @@ -88,16 +82,14 @@ component_1.VantComponent({ delete detail.value; this.$emit(type, detail); }, - // parse output columns data - parseOutputValues: function (values) { + parseValues: function (values) { var columnsPlaceholder = this.data.columnsPlaceholder; return values.map(function (value, index) { - // save undefined value - if (!value) return value; - value = JSON.parse(JSON.stringify(value)); - if (!value.code || value.name === columnsPlaceholder[index]) { - value.code = ''; - value.name = ''; + if ( + value && + (!value.code || value.name === columnsPlaceholder[index]) + ) { + return __assign(__assign({}, value), { code: '', name: '' }); } return value; }); @@ -112,7 +104,7 @@ component_1.VantComponent({ this.setValues().then(function () { _this.$emit('change', { picker: picker, - values: _this.parseOutputValues(picker.getValues()), + values: _this.parseValues(picker.getValues()), index: index, }); }); @@ -122,13 +114,12 @@ component_1.VantComponent({ return (areaList && areaList[type + '_list']) || {}; }, getList: function (type, code) { - var typeToColumnsPlaceholder = this.data.typeToColumnsPlaceholder; - var result = []; if (type !== 'province' && !code) { - return result; + return []; } + var typeToColumnsPlaceholder = this.data.typeToColumnsPlaceholder; var list = this.getConfig(type); - result = Object.keys(list).map(function (code) { + var result = Object.keys(list).map(function (code) { return { code: code, name: list[code], @@ -149,8 +140,8 @@ component_1.VantComponent({ type === 'province' ? '' : type === 'city' - ? COLUMNSPLACEHOLDERCODE.slice(2, 4) - : COLUMNSPLACEHOLDERCODE.slice(4, 6); + ? EMPTY_CODE.slice(2, 4) + : EMPTY_CODE.slice(4, 6); result.unshift({ code: '' + code + codeFill, name: typeToColumnsPlaceholder[type], @@ -174,35 +165,25 @@ component_1.VantComponent({ return 0; }, setValues: function () { - var county = this.getConfig('county'); - var code = this.code; - if (!code) { - if (this.data.columnsPlaceholder.length) { - code = COLUMNSPLACEHOLDERCODE; - } else if (Object.keys(county)[0]) { - code = Object.keys(county)[0]; - } else { - code = ''; - } - } - var province = this.getList('province'); - var city = this.getList('city', code.slice(0, 2)); var picker = this.getPicker(); if (!picker) { return; } + var code = this.code || this.getDefaultCode(); + var provinceList = this.getList('province'); + var cityList = this.getList('city', code.slice(0, 2)); var stack = []; var indexes = []; var columnsNum = this.data.columnsNum; if (columnsNum >= 1) { - stack.push(picker.setColumnValues(0, province, false)); + stack.push(picker.setColumnValues(0, provinceList, false)); indexes.push(this.getIndex('province', code)); } if (columnsNum >= 2) { - stack.push(picker.setColumnValues(1, city, false)); + stack.push(picker.setColumnValues(1, cityList, false)); indexes.push(this.getIndex('city', code)); - if (city.length && code.slice(2, 4) === '00') { - code = city[0].code; + if (cityList.length && code.slice(2, 4) === '00') { + code = cityList[0].code; } } if (columnsNum === 3) { @@ -222,13 +203,31 @@ component_1.VantComponent({ }) .catch(function () {}); }, + getDefaultCode: function () { + var columnsPlaceholder = this.data.columnsPlaceholder; + if (columnsPlaceholder.length) { + return EMPTY_CODE; + } + var countyCodes = Object.keys(this.getConfig('county')); + if (countyCodes[0]) { + return countyCodes[0]; + } + var cityCodes = Object.keys(this.getConfig('city')); + if (cityCodes[0]) { + return cityCodes[0]; + } + return ''; + }, getValues: function () { var picker = this.getPicker(); - return picker - ? picker.getValues().filter(function (value) { - return !!value; - }) - : []; + if (!picker) { + return []; + } + return this.parseValues( + picker.getValues().filter(function (value) { + return !!value; + }) + ); }, getDetail: function () { var values = this.getValues(); diff --git a/lib/area/index.wxml b/lib/area/index.wxml index 60757941..f7dc51f5 100644 --- a/lib/area/index.wxml +++ b/lib/area/index.wxml @@ -1,3 +1,5 @@ + + = 0; } exports.canIUseFormFieldButton = canIUseFormFieldButton; +function canIUseAnimate() { + var system = utils_1.getSystemInfoSync(); + return compareVersion(system.SDKVersion, '2.9.0') >= 0; +} +exports.canIUseAnimate = canIUseAnimate; diff --git a/lib/dialog/dialog.js b/lib/dialog/dialog.js index 5a09dbc0..d90d8ea4 100644 --- a/lib/dialog/dialog.js +++ b/lib/dialog/dialog.js @@ -27,6 +27,7 @@ var defaultOptions = { selector: '#van-dialog', className: '', asyncClose: false, + beforeClose: null, transition: 'scale', customStyle: '', messageAlign: '', @@ -52,7 +53,14 @@ var Dialog = function (options) { delete options.selector; if (dialog) { dialog.setData( - __assign({ onCancel: reject, onConfirm: resolve }, options) + __assign( + { + callback: function (action, instance) { + action === 'confirm' ? resolve(instance) : reject(instance); + }, + }, + options + ) ); wx.nextTick(function () { dialog.setData({ show: true }); diff --git a/lib/dialog/index.js b/lib/dialog/index.js index 9c672c21..e8123d03 100644 --- a/lib/dialog/index.js +++ b/lib/dialog/index.js @@ -4,6 +4,7 @@ var component_1 = require('../common/component'); var button_1 = require('../mixins/button'); var open_type_1 = require('../mixins/open-type'); var color_1 = require('../common/color'); +var utils_1 = require('../common/utils'); component_1.VantComponent({ mixins: [button_1.button, open_type_1.openType], props: { @@ -24,6 +25,7 @@ component_1.VantComponent({ customStyle: String, asyncClose: Boolean, messageAlign: String, + beforeClose: null, overlayStyle: String, useTitleSlot: Boolean, showCancelButton: Boolean, @@ -79,16 +81,15 @@ component_1.VantComponent({ onClickOverlay: function () { this.onClose('overlay'); }, - handleAction: function (action) { - var _a; - if (this.data.asyncClose) { - this.setData(((_a = {}), (_a['loading.' + action] = true), _a)); - } - this.onClose(action); - }, - close: function () { - this.setData({ - show: false, + close: function (action) { + var _this = this; + this.setData({ show: false }); + wx.nextTick(function () { + _this.$emit('close', action); + var callback = _this.data.callback; + if (callback) { + callback(action, _this); + } }); }, stopLoading: function () { @@ -99,16 +100,26 @@ component_1.VantComponent({ }, }); }, - onClose: function (action) { - if (!this.data.asyncClose) { - this.close(); - } - this.$emit('close', action); - // 把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading + handleAction: function (action) { + var _a; + var _this = this; this.$emit(action, { dialog: this }); - var callback = this.data[action === 'confirm' ? 'onConfirm' : 'onCancel']; - if (callback) { - callback(this); + var _b = this.data, + asyncClose = _b.asyncClose, + beforeClose = _b.beforeClose; + if (!asyncClose && !beforeClose) { + this.close(action); + return; + } + this.setData(((_a = {}), (_a['loading.' + action] = true), _a)); + if (beforeClose) { + utils_1.toPromise(beforeClose(action)).then(function (value) { + if (value) { + _this.close(action); + } else { + _this.stopLoading(); + } + }); } }, }, diff --git a/lib/dialog/index.json b/lib/dialog/index.json index 1b87cc89..43417fc8 100644 --- a/lib/dialog/index.json +++ b/lib/dialog/index.json @@ -3,7 +3,7 @@ "usingComponents": { "van-popup": "../popup/index", "van-button": "../button/index", - "van-goods-action": "../goods-action//index", + "van-goods-action": "../goods-action/index", "van-goods-action-button": "../goods-action-button/index" } } diff --git a/lib/dropdown-menu/index.js b/lib/dropdown-menu/index.js index 8f574a8e..c0fc623a 100644 --- a/lib/dropdown-menu/index.js +++ b/lib/dropdown-menu/index.js @@ -97,20 +97,22 @@ component_1.VantComponent({ var _a = this.data, zIndex = _a.zIndex, direction = _a.direction; - return this.getRect('.van-dropdown-menu').then(function (rect) { - var _a = rect.top, - top = _a === void 0 ? 0 : _a, - _b = rect.bottom, - bottom = _b === void 0 ? 0 : _b; - var offset = direction === 'down' ? bottom : _this.windowHeight - top; - var wrapperStyle = 'z-index: ' + zIndex + ';'; - if (direction === 'down') { - wrapperStyle += 'top: ' + utils_1.addUnit(offset) + ';'; - } else { - wrapperStyle += 'bottom: ' + utils_1.addUnit(offset) + ';'; - } - return wrapperStyle; - }); + return utils_1.getRect + .call(this, '.van-dropdown-menu') + .then(function (rect) { + var _a = rect.top, + top = _a === void 0 ? 0 : _a, + _b = rect.bottom, + bottom = _b === void 0 ? 0 : _b; + var offset = direction === 'down' ? bottom : _this.windowHeight - top; + var wrapperStyle = 'z-index: ' + zIndex + ';'; + if (direction === 'down') { + wrapperStyle += 'top: ' + utils_1.addUnit(offset) + ';'; + } else { + wrapperStyle += 'bottom: ' + utils_1.addUnit(offset) + ';'; + } + return wrapperStyle; + }); }, onTitleTap: function (event) { var _this = this; diff --git a/lib/field/index.wxml b/lib/field/index.wxml index 42bd26b1..6254e676 100644 --- a/lib/field/index.wxml +++ b/lib/field/index.wxml @@ -99,7 +99,7 @@ - {{ value.length }}/{{ maxlength }} + {{ value.length >= maxlength ? maxlength : value.length }}/{{ maxlength }} {{ errorMessage }} diff --git a/lib/index-anchor/index.js b/lib/index-anchor/index.js index 89fcf9da..89ab9749 100644 --- a/lib/index-anchor/index.js +++ b/lib/index-anchor/index.js @@ -1,5 +1,6 @@ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); +var utils_1 = require('../common/utils'); var component_1 = require('../common/component'); component_1.VantComponent({ relation: { @@ -19,15 +20,14 @@ component_1.VantComponent({ methods: { scrollIntoView: function (scrollTop) { var _this = this; - this.getBoundingClientRect().then(function (rect) { - wx.pageScrollTo({ - duration: 0, - scrollTop: scrollTop + rect.top - _this.parent.data.stickyOffsetTop, + utils_1.getRect + .call(this, '.van-index-anchor-wrapper') + .then(function (rect) { + wx.pageScrollTo({ + duration: 0, + scrollTop: scrollTop + rect.top - _this.parent.data.stickyOffsetTop, + }); }); - }); - }, - getBoundingClientRect: function () { - return this.getRect('.van-index-anchor-wrapper'); }, }, }); diff --git a/lib/info/index.wxml b/lib/info/index.wxml index 3112dfc9..b39b5245 100644 --- a/lib/info/index.wxml +++ b/lib/info/index.wxml @@ -2,6 +2,6 @@ {{ dot ? '' : info }} diff --git a/lib/info/index.wxss b/lib/info/index.wxss index 2994df84..953136a5 100644 --- a/lib/info/index.wxss +++ b/lib/info/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;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%;height:16px;height:var(--info-size,16px);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:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);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)} \ No newline at end of file +@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;white-space:nowrap;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);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:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);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)} \ No newline at end of file diff --git a/lib/mixins/basic.js b/lib/mixins/basic.js index 70c27915..e337191a 100644 --- a/lib/mixins/basic.js +++ b/lib/mixins/basic.js @@ -12,22 +12,5 @@ exports.basic = Behavior({ return wx.nextTick(resolve); }); }, - getRect: function (selector, all) { - var _this = this; - return new Promise(function (resolve) { - wx.createSelectorQuery() - .in(_this) - [all ? 'selectAll' : 'select'](selector) - .boundingClientRect(function (rect) { - if (all && Array.isArray(rect) && rect.length) { - resolve(rect); - } - if (!all && rect) { - resolve(rect); - } - }) - .exec(); - }); - }, }, }); diff --git a/lib/mixins/link.js b/lib/mixins/link.js index cbd2745e..0c09dab0 100644 --- a/lib/mixins/link.js +++ b/lib/mixins/link.js @@ -16,7 +16,14 @@ exports.link = Behavior({ } var url = this.data[urlKey]; if (url) { - wx[this.data.linkType]({ url: url }); + if ( + this.data.linkType === 'navigateTo' && + getCurrentPages().length > 9 + ) { + wx.redirectTo({ url: url }); + } else { + wx[this.data.linkType]({ url: url }); + } } }, }, diff --git a/lib/nav-bar/index.js b/lib/nav-bar/index.js index 2627de4d..7fdae230 100644 --- a/lib/nav-bar/index.js +++ b/lib/nav-bar/index.js @@ -58,7 +58,9 @@ component_1.VantComponent({ } wx.nextTick(function () { utils_1.getRect.call(_this, '.van-nav-bar').then(function (res) { - _this.setData({ height: res.height }); + if (res && 'height' in res) { + _this.setData({ height: res.height }); + } }); }); }, diff --git a/lib/nav-bar/index.wxs b/lib/nav-bar/index.wxs index 64828328..55b4158d 100644 --- a/lib/nav-bar/index.wxs +++ b/lib/nav-bar/index.wxs @@ -1,15 +1,11 @@ /* eslint-disable */ -function barStyle(data) { - var styles = [ - ['z-index', data.zIndex], - ['padding-top', data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0], - ]; +var style = require('../wxs/style.wxs'); - return styles - .map(function (item) { - return item.join(':'); - }) - .join(';'); +function barStyle(data) { + return style({ + 'z-index': data.zIndex, + 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0, + }); } module.exports = { diff --git a/lib/popup/index.wxml b/lib/popup/index.wxml index 9b41e5c3..f3fd7cfa 100644 --- a/lib/popup/index.wxml +++ b/lib/popup/index.wxml @@ -1,4 +1,5 @@ + diff --git a/lib/popup/index.wxs b/lib/popup/index.wxs new file mode 100644 index 00000000..8c766dcd --- /dev/null +++ b/lib/popup/index.wxs @@ -0,0 +1,18 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); + +function popupClass(data) { + return style([ + { + 'z-index': data.zIndex, + '-webkit-transition-duration': data.currentDuration + 'ms', + 'transition-duration': data.currentDuration + 'ms', + }, + data.display ? null : 'display: none', + data.customStyle, + ]); +} + +module.exports = { + popupClass: popupClass, +}; diff --git a/lib/progress/index.js b/lib/progress/index.js index c56efb78..c6d5aa6e 100644 --- a/lib/progress/index.js +++ b/lib/progress/index.js @@ -2,10 +2,14 @@ Object.defineProperty(exports, '__esModule', { value: true }); var component_1 = require('../common/component'); var color_1 = require('../common/color'); +var utils_1 = require('../common/utils'); component_1.VantComponent({ props: { inactive: Boolean, - percentage: Number, + percentage: { + type: Number, + observer: 'setLeft', + }, pivotText: String, pivotColor: String, trackColor: String, @@ -26,4 +30,27 @@ component_1.VantComponent({ value: 4, }, }, + data: { + right: 0, + }, + mounted: function () { + this.setLeft(); + }, + methods: { + setLeft: function () { + var _this = this; + Promise.all([ + utils_1.getRect.call(this, '.van-progress'), + utils_1.getRect.call(this, '.van-progress__pivot'), + ]).then(function (_a) { + var portion = _a[0], + pivot = _a[1]; + if (portion && pivot) { + _this.setData({ + right: (pivot.width * (_this.data.percentage - 100)) / 100, + }); + } + }); + }, + }, }); diff --git a/lib/progress/index.wxml b/lib/progress/index.wxml index e5981f09..e81514d0 100644 --- a/lib/progress/index.wxml +++ b/lib/progress/index.wxml @@ -1,20 +1,20 @@ - + - {{ getters.text(pivotText, percentage) }} + {{ computed.pivotText(pivotText, percentage) }} diff --git a/lib/progress/index.wxs b/lib/progress/index.wxs index d6853452..5b1e8e6b 100644 --- a/lib/progress/index.wxs +++ b/lib/progress/index.wxs @@ -1,5 +1,36 @@ +/* eslint-disable */ +var utils = require('../wxs/utils.wxs'); +var style = require('../wxs/style.wxs'); + +function pivotText(pivotText, percentage) { + return pivotText || percentage + '%'; +} + +function rootStyle(data) { + return style({ + 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '', + 'background': data.trackColor, + }); +} + +function portionStyle(data) { + return style({ + background: data.inactive ? '#cacaca' : data.color, + width: data.percentage ? data.percentage + '%' : '', + }); +} + +function pivotStyle(data) { + return style({ + color: data.textColor, + right: data.right + 'px', + background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color, + }); +} + module.exports = { - text: function(pivotText, percentage) { - return pivotText || percentage + '%'; - } + pivotText: pivotText, + rootStyle: rootStyle, + portionStyle: portionStyle, + pivotStyle: pivotStyle, }; diff --git a/lib/progress/index.wxss b/lib/progress/index.wxss index 33c62c7a..3844a59e 100644 --- a/lib/progress/index.wxss +++ b/lib/progress/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;right:0;box-sizing:border-box;min-width:2em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)} \ No newline at end of file +@import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)} \ No newline at end of file diff --git a/lib/rate/index.js b/lib/rate/index.js index 39f06ff3..788e070e 100644 --- a/lib/rate/index.js +++ b/lib/rate/index.js @@ -15,6 +15,7 @@ var __assign = return __assign.apply(this, arguments); }; Object.defineProperty(exports, '__esModule', { value: true }); +var utils_1 = require('../common/utils'); var component_1 = require('../common/component'); var version_1 = require('../common/version'); component_1.VantComponent({ @@ -91,7 +92,7 @@ component_1.VantComponent({ var touchable = this.data.touchable; if (!touchable) return; var clientX = event.touches[0].clientX; - this.getRect('.van-rate__icon', true).then(function (list) { + utils_1.getAllRect.call(this, '.van-rate__icon').then(function (list) { var target = list .sort(function (item) { return item.right - item.left; diff --git a/lib/slider/index.js b/lib/slider/index.js index 1001a4dd..9016c975 100644 --- a/lib/slider/index.js +++ b/lib/slider/index.js @@ -3,6 +3,7 @@ Object.defineProperty(exports, '__esModule', { value: true }); var component_1 = require('../common/component'); var touch_1 = require('../mixins/touch'); var version_1 = require('../common/version'); +var utils_1 = require('../common/utils'); component_1.VantComponent({ mixins: [touch_1.touch], props: { @@ -54,7 +55,7 @@ component_1.VantComponent({ } this.touchMove(event); this.dragStatus = 'draging'; - this.getRect('.van-slider').then(function (rect) { + utils_1.getRect.call(this, '.van-slider').then(function (rect) { var diff = (_this.deltaX / rect.width) * 100; _this.newValue = _this.startValue + diff; _this.updateValue(_this.newValue, false, true); @@ -71,7 +72,7 @@ component_1.VantComponent({ var _this = this; if (this.data.disabled) return; var min = this.data.min; - this.getRect('.van-slider').then(function (rect) { + utils_1.getRect.call(this, '.van-slider').then(function (rect) { var value = ((event.detail.x - rect.left) / rect.width) * _this.getRange() + min; _this.updateValue(value, true); diff --git a/lib/sticky/index.js b/lib/sticky/index.js index 11d0c073..960a8f3f 100644 --- a/lib/sticky/index.js +++ b/lib/sticky/index.js @@ -1,5 +1,6 @@ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); +var utils_1 = require('../common/utils'); var component_1 = require('../common/component'); var page_scroll_1 = require('../mixins/page-scroll'); var ROOT_ELEMENT = '.van-sticky'; @@ -62,29 +63,30 @@ component_1.VantComponent({ } this.scrollTop = scrollTop || this.scrollTop; if (typeof container === 'function') { - Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then( - function (_a) { - var root = _a[0], - container = _a[1]; - if (offsetTop + root.height > container.height + container.top) { - _this.setDataAfterDiff({ - fixed: false, - transform: container.height - root.height, - }); - } else if (offsetTop >= root.top) { - _this.setDataAfterDiff({ - fixed: true, - height: root.height, - transform: 0, - }); - } else { - _this.setDataAfterDiff({ fixed: false, transform: 0 }); - } + Promise.all([ + utils_1.getRect.call(this, ROOT_ELEMENT), + this.getContainerRect(), + ]).then(function (_a) { + var root = _a[0], + container = _a[1]; + if (offsetTop + root.height > container.height + container.top) { + _this.setDataAfterDiff({ + fixed: false, + transform: container.height - root.height, + }); + } else if (offsetTop >= root.top) { + _this.setDataAfterDiff({ + fixed: true, + height: root.height, + transform: 0, + }); + } else { + _this.setDataAfterDiff({ fixed: false, transform: 0 }); } - ); + }); return; } - this.getRect(ROOT_ELEMENT).then(function (root) { + utils_1.getRect.call(this, ROOT_ELEMENT).then(function (root) { if (offsetTop >= root.top) { _this.setDataAfterDiff({ fixed: true, height: root.height }); _this.transform = 0; diff --git a/lib/sticky/index.wxs b/lib/sticky/index.wxs index 18efe147..10eec72a 100644 --- a/lib/sticky/index.wxs +++ b/lib/sticky/index.wxs @@ -1,37 +1,24 @@ /* eslint-disable */ +var style = require('../wxs/style.wxs'); + function wrapStyle(data) { - var style = ''; - - if (data.transform) { - style += 'transform: translate3d(0, ' + data.transform + 'px, 0);'; - } - - if (data.fixed) { - style += 'top: ' + data.offsetTop + 'px;'; - } - - if (data.zIndex) { - style += 'z-index: ' + data.zIndex + ';'; - } - - return style; + return style({ + transform: data.transform + ? 'translate3d(0, ' + data.transform + 'px, 0)' + : '', + top: data.fixed ? data.offsetTop + 'px' : '', + 'z-index': data.zIndex, + }); } function containerStyle(data) { - var style = ''; - - if (data.fixed) { - style += 'height: ' + data.height + 'px;'; - } - - if (data.zIndex) { - style += 'z-index: ' + data.zIndex + ';'; - } - - return style; + return style({ + height: data.fixed ? data.height + 'px' : '', + 'z-index': data.zIndex, + }); } module.exports = { wrapStyle: wrapStyle, - containerStyle: containerStyle + containerStyle: containerStyle, }; diff --git a/lib/tabs/index.js b/lib/tabs/index.js index d5c32af8..994fb502 100644 --- a/lib/tabs/index.js +++ b/lib/tabs/index.js @@ -41,7 +41,7 @@ component_1.VantComponent({ lineWidth: { type: [String, Number], value: 40, - observer: 'setLine', + observer: 'resize', }, lineHeight: { type: [String, Number], @@ -104,7 +104,7 @@ component_1.VantComponent({ mounted: function () { var _this = this; wx.nextTick(function () { - _this.setLine(true); + _this.resize(true); _this.scrollIntoView(); }); }, @@ -192,7 +192,7 @@ component_1.VantComponent({ var shouldEmitChange = data.currentIndex !== null; this.setData({ currentIndex: currentIndex }); wx.nextTick(function () { - _this.setLine(); + _this.resize(); _this.scrollIntoView(); _this.updateContainer(); _this.trigger('input'); @@ -207,7 +207,7 @@ component_1.VantComponent({ return activeTab.getComputedName(); } }, - setLine: function (skipTransition) { + resize: function (skipTransition) { var _this = this; if (skipTransition === void 0) { skipTransition = false; diff --git a/lib/tabs/index.wxml b/lib/tabs/index.wxml index dd92ac49..0dc346b2 100644 --- a/lib/tabs/index.wxml +++ b/lib/tabs/index.wxml @@ -1,5 +1,5 @@ - + - - + + @@ -55,7 +55,7 @@ > diff --git a/lib/tabs/index.wxs b/lib/tabs/index.wxs index 60c48fd4..a027c7b9 100644 --- a/lib/tabs/index.wxs +++ b/lib/tabs/index.wxs @@ -1,5 +1,6 @@ /* eslint-disable */ var utils = require('../wxs/utils.wxs'); +var style = require('../wxs/style.wxs'); function tabClass(active, ellipsis) { var classes = ['tab-class']; @@ -15,51 +16,33 @@ function tabClass(active, ellipsis) { return classes.join(' '); } -function tabStyle( - active, - ellipsis, - color, - type, - disabled, - activeColor, - inactiveColor, - swipeThreshold, - scrollable -) { - var styles = []; - var isCard = type === 'card'; +function tabStyle(data) { + var titleColor = data.active + ? data.titleActiveColor + : data.titleInactiveColor; + + var ellipsis = data.scrollable && data.ellipsis; + // card theme color - if (color && isCard) { - styles.push('border-color:' + color); - - if (!disabled) { - if (active) { - styles.push('background-color:' + color); - } else { - styles.push('color:' + color); - } - } + if (data.type === 'card') { + return style({ + 'border-color': data.color, + 'background-color': !data.disabled && data.active ? data.color : null, + color: titleColor || (!data.disabled && !data.active ? data.color : null), + 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null, + }); } - var titleColor = active ? activeColor : inactiveColor; - if (titleColor) { - styles.push('color:' + titleColor); - } - - if (scrollable && ellipsis) { - styles.push('flex-basis:' + 88 / swipeThreshold + '%'); - } - - return styles.join(';'); + return style({ + color: titleColor, + 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null, + }); } -function tabCardTypeBorderStyle(color, type) { - var isCard = type === 'card'; - var styles = []; - if (isCard && color) { - styles.push('border-color:' + color); - } - return styles.join(';'); +function navStyle(color, type) { + return style({ + 'border-color': type === 'card' && color ? color : null, + }); } function trackStyle(data) { @@ -67,43 +50,27 @@ function trackStyle(data) { return ''; } - return [ - ['left', -100 * data.currentIndex + '%'], - ['-webkit-transition-duration', data.duration + 's'], - ['transition-duration: ', data.duration + 's'], - ] - .map(function (item) { - return item.join(':'); - }) - .join(';'); + return style({ + left: -100 * data.currentIndex + '%', + 'transition-duration': data.duration + 's', + '-webkit-transition-duration': data.duration + 's', + }); } function lineStyle(data) { - var styles = [ - ['width', utils.addUnit(data.lineWidth)], - ['transform', 'translateX(' + data.lineOffsetLeft + 'px)'], - ['-webkit-transform', 'translateX(' + data.lineOffsetLeft + 'px)'], - ]; - - if (data.color) { - styles.push(['background-color', data.color]); - } - - if (data.lineHeight !== -1) { - styles.push(['height', utils.addUnit(data.lineHeight)]); - styles.push(['border-radius', utils.addUnit(data.lineHeight)]); - } - - if (!data.skipTransition) { - styles.push(['transition-duration', data.duration + 's']); - styles.push(['-webkit-transition-duration', data.duration + 's']); - } - - return styles - .map(function (item) { - return item.join(':'); - }) - .join(';'); + return style({ + width: utils.addUnit(data.lineWidth), + transform: 'translateX(' + data.lineOffsetLeft + 'px)', + '-webkit-transform': 'translateX(' + data.lineOffsetLeft + 'px)', + 'background-color': data.color, + height: data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null, + 'border-radius': + data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null, + 'transition-duration': !data.skipTransition ? data.duration + 's' : null, + '-webkit-transition-duration': !data.skipTransition + ? data.duration + 's' + : null, + }); } module.exports = { @@ -111,5 +78,5 @@ module.exports = { tabStyle: tabStyle, trackStyle: trackStyle, lineStyle: lineStyle, - tabCardTypeBorderStyle: tabCardTypeBorderStyle, + navStyle: navStyle, }; diff --git a/lib/tree-select/index.js b/lib/tree-select/index.js index e43744b9..8601d02c 100644 --- a/lib/tree-select/index.js +++ b/lib/tree-select/index.js @@ -67,7 +67,7 @@ component_1.VantComponent({ mainActiveIndex = _a.mainActiveIndex; var _b = (items[mainActiveIndex] || {}).children, children = _b === void 0 ? [] : _b; - return this.set({ subItems: children }); + this.setData({ subItems: children }); }, }, }); diff --git a/lib/uploader/index.wxss b/lib/uploader/index.wxss index 61ef7a5c..5023d716 100644 --- a/lib/uploader/index.wxss +++ b/lib/uploader/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{position:relative;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;width:80px;height:80px;margin:0 8px 8px 0;background-color:#f7f8fa}.van-uploader__upload:active{background-color:#f2f3f5}.van-uploader__upload-icon{color:#dcdee0;font-size:24px}.van-uploader__upload-text{margin-top:8px;color:#969799;font-size:12px}.van-uploader__upload--disabled{opacity:.5;opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{position:relative;margin:0 8px 8px 0;cursor:pointer}.van-uploader__preview-image{display:block;width:80px;height:80px;overflow:hidden}.van-uploader__preview-delete{position:absolute;top:0;right:0;width:14px;height:14px;padding:0 0 8px 8px}.van-uploader__preview-delete:after{position:absolute;top:0;right:0;width:14px;height:14px;background-color:rgba(0,0,0,.7);border-radius:0 0 0 12px;content:""}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;z-index:1;color:#fff;font-size:16px;-webkit-transform:scale(.5);transform:scale(.5)}.van-uploader__file{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:80px;height:80px;background-color:#f7f8fa}.van-uploader__file-icon{color:#646566;font-size:20px}.van-uploader__file-name{box-sizing:border-box;width:100%;margin-top:8px;padding:0 4px;color:#646566;font-size:12px;text-align:center}.van-uploader__mask{position:absolute;top:0;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#fff;background-color:rgba(50,50,51,.88)}.van-uploader__mask-icon{font-size:22px}.van-uploader__mask-message{margin-top:6px;padding:0 4px;font-size:12px;line-height:14px}.van-uploader__loading{width:22px;height:22px;color:#fff!important} \ No newline at end of file +@import '../common/index.wxss';.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{position:relative;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0;background-color:#f7f8fa;background-color:var(--uploader-upload-background-color,#f7f8fa)}.van-uploader__upload:active{background-color:#f2f3f5;background-color:var(--uploader-upload-active-color,#f2f3f5)}.van-uploader__upload-icon{color:#dcdee0;color:var(--uploader-icon-color,#dcdee0);font-size:24px;font-size:var(--uploader-icon-size,24px)}.van-uploader__upload-text{margin-top:8px;margin-top:var(--padding-xs,8px);color:#969799;color:var(--uploader-text-color,#969799);font-size:12px;font-size:var(--uploader-text-font-size,12px)}.van-uploader__upload--disabled{opacity:.5;opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{position:relative;cursor:pointer;margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0}.van-uploader__preview-image{display:block;overflow:hidden;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px)}.van-uploader__preview-delete{padding:0 0 8px 8px;padding:0 0 var(--padding-xs,8px) var(--padding-xs,8px)}.van-uploader__preview-delete,.van-uploader__preview-delete:after{position:absolute;top:0;right:0;width:14px;width:var(--uploader-delete-icon-size,14px);height:14px;height:var(--uploader-delete-icon-size,14px)}.van-uploader__preview-delete:after{content:"";background-color:rgba(0,0,0,.7);background-color:var(--uploader-delete-background-color,rgba(0,0,0,.7));border-radius:0 0 0 12px;border-radius:0 0 0 calc(var(--uploader-delete-icon-size, 14px) - 2px)}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;z-index:1;-webkit-transform:scale(.5);transform:scale(.5);font-size:16px;font-size:calc(var(--uploader-delete-icon-size, 14px) + 2px);color:#fff;color:var(--uploader-delete-color,#fff)}.van-uploader__file{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);background-color:#f7f8fa;background-color:var(--uploader-file-background-color,#f7f8fa)}.van-uploader__file-icon{color:#646566;color:var(--uploader-file-icon-color,#646566);font-size:20px;font-size:var(--uploader-file-icon-size,20px)}.van-uploader__file-name{box-sizing:border-box;width:100%;text-align:center;margin-top:8px;margin-top:var(--uploader-file-name-margin-top,8px);padding:0 4px;padding:var(--uploader-file-name-padding,0 4px);color:#646566;color:var(--uploader-file-name-text-color,#646566);font-size:12px;font-size:var(--uploader-file-name-font-size,12px)}.van-uploader__mask{position:absolute;top:0;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#fff;color:var(--white,#fff);background-color:rgba(50,50,51,.88);background-color:var(--uploader-mask-background-color,rgba(50,50,51,.88))}.van-uploader__mask-icon{font-size:22px;font-size:var(--uploader-mask-icon-size,22px)}.van-uploader__mask-message{margin-top:6px;padding:0 4px;padding:0 var(--padding-base,4px);font-size:12px;font-size:var(--uploader-mask-message-font-size,12px);line-height:14px;line-height:var(--uploader-mask-message-line-height,14px)}.van-uploader__loading{width:22px;width:var(--uploader-loading-icon-size,22px);height:22px;height:var(--uploader-loading-icon-size,22px);color:#fff!important;color:var(--uploader-loading-icon-color,#fff)!important} \ No newline at end of file diff --git a/lib/wxs/add-unit.wxs b/lib/wxs/add-unit.wxs index 27a22d82..52f18b55 100644 --- a/lib/wxs/add-unit.wxs +++ b/lib/wxs/add-unit.wxs @@ -9,6 +9,4 @@ function addUnit(value) { return REGEXP.test('' + value) ? value + 'px' : value; } -module.exports = { - addUnit: addUnit -}; +module.exports = addUnit; diff --git a/lib/wxs/bem.wxs b/lib/wxs/bem.wxs index 93b2777b..1efa129e 100644 --- a/lib/wxs/bem.wxs +++ b/lib/wxs/bem.wxs @@ -1,3 +1,4 @@ +/* eslint-disable */ var array = require('./array.wxs'); var object = require('./object.wxs'); var PREFIX = 'van-'; @@ -35,4 +36,4 @@ function bem(name, conf) { return join(name, mods); } -module.exports.bem = bem; +module.exports = bem; diff --git a/lib/wxs/memoize.wxs b/lib/wxs/memoize.wxs index 261ae67d..8f7f46dd 100644 --- a/lib/wxs/memoize.wxs +++ b/lib/wxs/memoize.wxs @@ -2,6 +2,7 @@ * Simple memoize * wxs doesn't support fn.apply, so this memoize only support up to 2 args */ +/* eslint-disable */ function isPrimitive(value) { var type = typeof value; @@ -51,4 +52,4 @@ function memoize(fn) { }; } -module.exports.memoize = memoize; +module.exports = memoize; diff --git a/lib/wxs/style.wxs b/lib/wxs/style.wxs new file mode 100644 index 00000000..3139cde4 --- /dev/null +++ b/lib/wxs/style.wxs @@ -0,0 +1,32 @@ +/* eslint-disable */ +var object = require('./object.wxs'); +var array = require('./array.wxs'); + +function style(styles) { + if (array.isArray(styles)) { + return styles + .filter(function (item) { + return item != null; + }) + .map(function (item) { + return style(item); + }) + .join(';'); + } + + if ('Object' === styles.constructor) { + return object + .keys(styles) + .filter(function (key) { + return styles[key] != null; + }) + .map(function (key) { + return [key, [styles[key]]].join(':'); + }) + .join(';'); + } + + return styles; +} + +module.exports = style; diff --git a/lib/wxs/utils.wxs b/lib/wxs/utils.wxs index d5c9d8c2..f66d33a4 100644 --- a/lib/wxs/utils.wxs +++ b/lib/wxs/utils.wxs @@ -1,7 +1,7 @@ /* eslint-disable */ -var bem = require('./bem.wxs').bem; -var memoize = require('./memoize.wxs').memoize; -var addUnit = require('./add-unit.wxs').addUnit; +var bem = require('./bem.wxs'); +var memoize = require('./memoize.wxs'); +var addUnit = require('./add-unit.wxs'); module.exports = { bem: memoize(bem),