Yao c5fef65228
[new feature] TreeSelect: 新增分类选择组件 (#346)
* 增加 tree select 组件

* 增加文档

* 增加文档

* update magic code
2018-07-08 14:56:42 +08:00

74 lines
1.8 KiB
JavaScript

const ITEM_HEIGHT = 44;
Component({
properties: {
items: {
type: Array,
observer() {
this.updateSubItems();
this.updateMainHeight();
}
},
mainActiveIndex: {
type: Number,
value: 0,
observer() {
this.updateSubItems();
}
},
activeId: {
type: Number,
value: 0
},
maxHeight: {
type: Number,
value: 300,
observer() {
this.updateItemHeight();
this.updateMainHeight();
}
}
},
data: {
subItems: [],
mainHeight: 0,
itemHeight: 0
},
methods: {
// 当一个子项被选择时
onItemSelect({ currentTarget = {} }) {
const { dataset: data = {} } = currentTarget;
this.triggerEvent('itemclick', { ...(data.item || {}) });
},
// 当一个导航被点击时
handleNavClick({ currentTarget = {} }) {
const { dataset: data = {} } = currentTarget;
this.triggerEvent('navclick', { index: data.index });
},
// 更新子项列表
updateSubItems() {
const selectedItem = this.data.items[this.data.mainActiveIndex] || {};
this.setData({ subItems: selectedItem.children || [] });
this.updateItemHeight();
},
// 更新组件整体高度,根据最大高度和当前组件需要展示的高度来决定
updateMainHeight() {
const maxHeight = Math.max(this.data.items.length * ITEM_HEIGHT, this.data.subItems.length * ITEM_HEIGHT);
this.setData({ mainHeight: Math.min(maxHeight, this.data.maxHeight) })
},
// 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定
updateItemHeight() {
this.setData({ itemHeight: Math.min(this.data.subItems.length * ITEM_HEIGHT, this.data.maxHeight) });
}
}
});