diff --git a/dist/dropdown-item/index.js b/dist/dropdown-item/index.js index 529de0f5..f2b6c481 100644 --- a/dist/dropdown-item/index.js +++ b/dist/dropdown-item/index.js @@ -6,19 +6,30 @@ VantComponent({ type: 'ancestor', linked(target) { this.parent = target; + this.updateDataFromParent(); }, unlinked() { this.parent = null; } }, props: { - value: null, - title: String, + value: { + type: null, + observer: 'rerender' + }, + title: { + type: String, + observer: 'rerender' + }, disabled: Boolean, - titleClass: String, + titleClass: { + type: String, + observer: 'rerender' + }, options: { type: Array, - value: [] + value: [], + observer: 'rerender' } }, data: { @@ -27,44 +38,67 @@ VantComponent({ showWrapper: false, displayTitle: '' }, - created() { - this.setData({ displayTitle: this.computedDisplayTitle(this.data.value) }); - }, methods: { - computedDisplayTitle(curValue) { - const { title, options } = this.data; - if (title) { - return title; + rerender() { + wx.nextTick(() => { + this.parent && this.parent.updateItemListData(); + }); + }, + updateDataFromParent() { + if (this.parent) { + const { overlay, duration, activeColor, closeOnClickOverlay, direction } = this.parent.data; + this.setData({ + overlay, + duration, + activeColor, + closeOnClickOverlay, + direction + }); } - const match = options.filter(option => option.value === curValue); - const displayTitle = match.length ? match[0].text : ''; - return displayTitle; }, onClickOverlay() { this.toggle(); this.$emit('close'); }, onOptionTap(event) { - let { value, displayTitle } = this.data; const { option } = event.currentTarget.dataset; - const { value: optionValue } = option; - if (optionValue !== value) { - value = optionValue; - displayTitle = this.computedDisplayTitle(optionValue); - this.$emit('change', optionValue); - } - this.setData({ showPopup: false, value, displayTitle }); - const time = this.data.duration || 0; + const { value } = option; + const shouldEmitChange = this.data.value !== value; + this.setData({ showPopup: false, value }); setTimeout(() => { this.setData({ showWrapper: false }); - }, time); - // parent 中的 itemListData 是 children 上的数据的集合 - // 数据的更新由 children 各自维护,但是模板的更新需要额外触发 parent 的 setData - this.parent.setData({ itemListData: this.parent.data.itemListData }); + }, this.data.duration || 0); + this.rerender(); + if (shouldEmitChange) { + this.$emit('change', value); + } }, - toggle() { - const { childIndex } = this.data; - this.parent.toggleItem(childIndex); + toggle(show, options = {}) { + const { showPopup, duration } = this.data; + if (show == null) { + show = !showPopup; + } + if (show === showPopup) { + return; + } + if (!show) { + const time = options.immediate ? 0 : duration; + this.setData({ transition: !options.immediate, showPopup: show }); + setTimeout(() => { + this.setData({ showWrapper: false }); + }, time); + this.rerender(); + return; + } + this.parent.getChildWrapperStyle().then((wrapperStyle = '') => { + this.setData({ + transition: !options.immediate, + showPopup: show, + wrapperStyle, + showWrapper: true + }); + this.rerender(); + }); } } }); diff --git a/dist/dropdown-menu/index.js b/dist/dropdown-menu/index.js index 302659a1..889387be 100644 --- a/dist/dropdown-menu/index.js +++ b/dist/dropdown-menu/index.js @@ -7,33 +7,23 @@ VantComponent({ name: 'dropdown-item', type: 'descendant', linked(target) { - this.children = this.children || []; - // 透传 props 给 dropdown-item - const { overlay, duration, activeColor, closeOnClickOverlay, direction } = this.data; - this.updateChildData(target, { - overlay, - duration, - activeColor, - closeOnClickOverlay, - direction, - childIndex: this.children.length - }); this.children.push(target); - // 收集 dorpdown-item 的 data 挂在 data 上 - target && - this.setData({ - itemListData: this.data.itemListData.concat([target.data]) - }); + this.updateItemListData(); }, unlinked(target) { this.children = this.children.filter((child) => child !== target); + this.updateItemListData(); } }, props: { - activeColor: String, + activeColor: { + type: String, + observer: 'updateChildrenData' + }, overlay: { type: Boolean, - value: true + value: true, + observer: 'updateChildrenData' }, zIndex: { type: Number, @@ -41,15 +31,18 @@ VantComponent({ }, duration: { type: Number, - value: 200 + value: 200, + observer: 'updateChildrenData' }, direction: { type: String, - value: 'down' + value: 'down', + observer: 'updateChildrenData' }, closeOnClickOverlay: { type: Boolean, - value: true + value: true, + observer: 'updateChildrenData' }, closeOnClickOutside: { type: Boolean, @@ -59,68 +52,47 @@ VantComponent({ data: { itemListData: [] }, - created() { + beforeCreate() { + const { windowHeight } = wx.getSystemInfoSync(); + this.windowHeight = windowHeight; + this.children = []; ARRAY.push(this); }, destroyed() { ARRAY = ARRAY.filter(item => item !== this); }, methods: { - updateChildData(childItem, newData, needRefreshList = false) { - childItem.setData(newData); - if (needRefreshList) { - // dropdown-item data 更新,涉及到 title 的展示,触发模板更新 - this.setData({ itemListData: this.data.itemListData }); - } + updateItemListData() { + this.setData({ + itemListData: this.children.map((child) => child.data) + }); + }, + updateChildrenData() { + this.children.forEach((child) => { + child.updateDataFromParent(); + }); }, toggleItem(active) { this.children.forEach((item, index) => { const { showPopup } = item.data; if (index === active) { - this.toggleChildItem(item); + item.toggle(); } else if (showPopup) { - this.toggleChildItem(item, false, { immediate: true }); + item.toggle(false, { immediate: true }); } }); }, - toggleChildItem(childItem, show, options = {}) { - const { showPopup, duration } = childItem.data; - if (show === undefined) - show = !showPopup; - if (show === showPopup) { - return; - } - const newChildData = { transition: !options.immediate, showPopup: show }; - if (!show) { - const time = options.immediate ? 0 : duration; - this.updateChildData(childItem, Object.assign({}, newChildData), true); - setTimeout(() => { - this.updateChildData(childItem, { showWrapper: false }, true); - }, time); - return; - } - this.getChildWrapperStyle().then((wrapperStyle = '') => { - this.updateChildData(childItem, Object.assign(Object.assign({}, newChildData), { wrapperStyle, showWrapper: true }), true); - }); - }, close() { - this.children.forEach((item) => { - this.toggleChildItem(item, false, { immediate: true }); + this.children.forEach((child) => { + child.toggle(false, { immediate: true }); }); }, getChildWrapperStyle() { - const { windowHeight } = wx.getSystemInfoSync(); const { zIndex, direction } = this.data; - let offset = 0; - return this.getRect('.van-dropdown-menu').then(rect => { + return this.getRect('.van-dropdown-menu').then((rect) => { const { top = 0, bottom = 0 } = rect; - if (direction === 'down') { - offset = bottom; - } - else { - offset = windowHeight - top; - } + const offset = direction === 'down' ? bottom : this.windowHeight - top; let wrapperStyle = `z-index: ${zIndex};`; if (direction === 'down') { wrapperStyle += `top: ${addUnit(offset)};`; @@ -128,16 +100,17 @@ VantComponent({ else { wrapperStyle += `bottom: ${addUnit(offset)};`; } - return Promise.resolve(wrapperStyle); + return wrapperStyle; }); }, onTitleTap(event) { - // item ---> dropdown-item - const { item, index } = event.currentTarget.dataset; - if (!item.disabled) { - // menuItem ---> dropdown-menu + const { index } = event.currentTarget.dataset; + const child = this.children[index]; + if (!child.data.disabled) { ARRAY.forEach(menuItem => { - if (menuItem && menuItem.data.closeOnClickOutside && menuItem !== this) { + if (menuItem && + menuItem.data.closeOnClickOutside && + menuItem !== this) { menuItem.close(); } }); diff --git a/dist/dropdown-menu/index.wxml b/dist/dropdown-menu/index.wxml index 22933b57..037ac3b6 100644 --- a/dist/dropdown-menu/index.wxml +++ b/dist/dropdown-menu/index.wxml @@ -1,10 +1,10 @@ + - {{item.displayTitle}} + {{ computed.displayTitle(item) }} diff --git a/dist/dropdown-menu/index.wxs b/dist/dropdown-menu/index.wxs new file mode 100644 index 00000000..65388549 --- /dev/null +++ b/dist/dropdown-menu/index.wxs @@ -0,0 +1,16 @@ +/* eslint-disable */ +function displayTitle(item) { + if (item.title) { + return item.title; + } + + var match = item.options.filter(function(option) { + return option.value === item.value; + }); + var displayTitle = match.length ? match[0].text : ''; + return displayTitle; +} + +module.exports = { + displayTitle: displayTitle +}; diff --git a/dist/image/index.wxml b/dist/image/index.wxml index 53e19ef8..4724ca22 100644 --- a/dist/image/index.wxml +++ b/dist/image/index.wxml @@ -8,7 +8,6 @@ +> + + diff --git a/dist/rate/index.js b/dist/rate/index.js index 20781e04..288ec716 100644 --- a/dist/rate/index.js +++ b/dist/rate/index.js @@ -8,7 +8,10 @@ VantComponent({ readonly: Boolean, disabled: Boolean, allowHalf: Boolean, - size: null, + size: { + type: null, + observer: 'setSizeWithUnit' + }, icon: { type: String, value: 'star' @@ -44,7 +47,8 @@ VantComponent({ }, data: { innerValue: 0, - gutterWithUnit: undefined + gutterWithUnit: undefined, + sizeWithUnit: null }, watch: { value(value) { @@ -59,6 +63,11 @@ VantComponent({ gutterWithUnit: addUnit(val) }); }, + setSizeWithUnit(size) { + this.setData({ + sizeWithUnit: addUnit(size) + }); + }, onSelect(event) { const { data } = this; const { score } = event.currentTarget.dataset; diff --git a/dist/rate/index.wxml b/dist/rate/index.wxml index 9d48ef79..72defd6b 100644 --- a/dist/rate/index.wxml +++ b/dist/rate/index.wxml @@ -12,8 +12,8 @@ > item !== target); + this.children = this.children.filter((item) => item !== target); this.setActive(this.data.activeKey); } }, diff --git a/dist/stepper/index.js b/dist/stepper/index.js index 10c2770e..c2425889 100644 --- a/dist/stepper/index.js +++ b/dist/stepper/index.js @@ -41,7 +41,9 @@ VantComponent({ showMinus: { type: Boolean, value: true - } + }, + disablePlus: Boolean, + disableMinus: Boolean }, watch: { value(value) { @@ -78,9 +80,9 @@ VantComponent({ methods: { isDisabled(type) { if (type === 'plus') { - return this.data.disabled || this.data.value >= this.data.max; + return this.data.disabled || this.data.disablePlus || this.data.value >= this.data.max; } - return this.data.disabled || this.data.value <= this.data.min; + return this.data.disabled || this.data.disableMinus || this.data.value <= this.data.min; }, onFocus(event) { this.$emit('focus', event.detail); diff --git a/dist/stepper/index.wxml b/dist/stepper/index.wxml index 06480dc0..456ccced 100644 --- a/dist/stepper/index.wxml +++ b/dist/stepper/index.wxml @@ -5,7 +5,7 @@ wx:if="{{ showMinus }}" data-type="minus" style="{{ buttonStyle }}" - class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || value <= min }) }}" + class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || value <= min }) }}" hover-class="van-stepper__minus--hover" hover-stay-time="70" bind:tap="onTap" @@ -27,7 +27,7 @@ wx:if="{{ showPlus }}" data-type="plus" style="{{ buttonStyle }}" - class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || value >= max }) }}" + class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || value >= max }) }}" hover-class="van-stepper__plus--hover" hover-stay-time="70" bind:tap="onTap" diff --git a/dist/tree-select/index.wxml b/dist/tree-select/index.wxml index 0e8df176..d6f95a8a 100644 --- a/dist/tree-select/index.wxml +++ b/dist/tree-select/index.wxml @@ -6,7 +6,7 @@ style="height: {{ innerHeight }}" > - + dropdown-item - var _a = event.currentTarget.dataset, item = _a.item, index = _a.index; - if (!item.disabled) { - // menuItem ---> dropdown-menu + var index = event.currentTarget.dataset.index; + var child = this.children[index]; + if (!child.data.disabled) { ARRAY.forEach(function (menuItem) { - if (menuItem && menuItem.data.closeOnClickOutside && menuItem !== _this) { + if (menuItem && + menuItem.data.closeOnClickOutside && + menuItem !== _this) { menuItem.close(); } }); diff --git a/lib/dropdown-menu/index.wxml b/lib/dropdown-menu/index.wxml index 22933b57..037ac3b6 100644 --- a/lib/dropdown-menu/index.wxml +++ b/lib/dropdown-menu/index.wxml @@ -1,10 +1,10 @@ + - {{item.displayTitle}} + {{ computed.displayTitle(item) }} diff --git a/lib/dropdown-menu/index.wxs b/lib/dropdown-menu/index.wxs new file mode 100644 index 00000000..65388549 --- /dev/null +++ b/lib/dropdown-menu/index.wxs @@ -0,0 +1,16 @@ +/* eslint-disable */ +function displayTitle(item) { + if (item.title) { + return item.title; + } + + var match = item.options.filter(function(option) { + return option.value === item.value; + }); + var displayTitle = match.length ? match[0].text : ''; + return displayTitle; +} + +module.exports = { + displayTitle: displayTitle +}; diff --git a/lib/image/index.wxml b/lib/image/index.wxml index 53e19ef8..4724ca22 100644 --- a/lib/image/index.wxml +++ b/lib/image/index.wxml @@ -8,7 +8,6 @@ +> + + diff --git a/lib/rate/index.js b/lib/rate/index.js index eb846fdc..1fe4c2b0 100644 --- a/lib/rate/index.js +++ b/lib/rate/index.js @@ -21,7 +21,10 @@ component_1.VantComponent({ readonly: Boolean, disabled: Boolean, allowHalf: Boolean, - size: null, + size: { + type: null, + observer: 'setSizeWithUnit' + }, icon: { type: String, value: 'star' @@ -57,7 +60,8 @@ component_1.VantComponent({ }, data: { innerValue: 0, - gutterWithUnit: undefined + gutterWithUnit: undefined, + sizeWithUnit: null }, watch: { value: function (value) { @@ -72,6 +76,11 @@ component_1.VantComponent({ gutterWithUnit: utils_1.addUnit(val) }); }, + setSizeWithUnit: function (size) { + this.setData({ + sizeWithUnit: utils_1.addUnit(size) + }); + }, onSelect: function (event) { var data = this.data; var score = event.currentTarget.dataset.score; diff --git a/lib/rate/index.wxml b/lib/rate/index.wxml index 9d48ef79..72defd6b 100644 --- a/lib/rate/index.wxml +++ b/lib/rate/index.wxml @@ -12,8 +12,8 @@ > = this.data.max; + return this.data.disabled || this.data.disablePlus || this.data.value >= this.data.max; } - return this.data.disabled || this.data.value <= this.data.min; + return this.data.disabled || this.data.disableMinus || this.data.value <= this.data.min; }, onFocus: function (event) { this.$emit('focus', event.detail); diff --git a/lib/stepper/index.wxml b/lib/stepper/index.wxml index 06480dc0..456ccced 100644 --- a/lib/stepper/index.wxml +++ b/lib/stepper/index.wxml @@ -5,7 +5,7 @@ wx:if="{{ showMinus }}" data-type="minus" style="{{ buttonStyle }}" - class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || value <= min }) }}" + class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || value <= min }) }}" hover-class="van-stepper__minus--hover" hover-stay-time="70" bind:tap="onTap" @@ -27,7 +27,7 @@ wx:if="{{ showPlus }}" data-type="plus" style="{{ buttonStyle }}" - class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || value >= max }) }}" + class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || value >= max }) }}" hover-class="van-stepper__plus--hover" hover-stay-time="70" bind:tap="onTap" diff --git a/lib/tree-select/index.wxml b/lib/tree-select/index.wxml index 0e8df176..d6f95a8a 100644 --- a/lib/tree-select/index.wxml +++ b/lib/tree-select/index.wxml @@ -6,7 +6,7 @@ style="height: {{ innerHeight }}" > - +