168 lines
3.5 KiB
JavaScript
168 lines
3.5 KiB
JavaScript
import scrollCenter from '../behaviors/scrollCenter';
|
||
Component({
|
||
behaviors: [scrollCenter],
|
||
externalClasses: [
|
||
'l-class-tabs',
|
||
'l-class-header',
|
||
'l-class-active',
|
||
'l-class-content',
|
||
'l-class-inactive',
|
||
'l-class-line',
|
||
'l-class-tabimage',
|
||
'l-class-header-line',
|
||
'l-class-icon',
|
||
'l-tabs-class',
|
||
'l-header-class',
|
||
'l-active-class',
|
||
'l-content-class',
|
||
'l-inactive-class',
|
||
'l-line-class',
|
||
'l-tabimage-class',
|
||
'l-header-line-class',
|
||
'l-icon-class',
|
||
'l-tabpanel-class',
|
||
'l-badge-class'
|
||
],
|
||
relations: {
|
||
'../tabpanel/index': {
|
||
type: 'child',
|
||
linked() {
|
||
// 每次有子节点被插入时执行,target是该节点实例对象,触发在该节点attached生命周期之后
|
||
this.initTabs();
|
||
}
|
||
},
|
||
|
||
},
|
||
options: {
|
||
multipleSlots: true // 在组件定义时的选项中启用多slot支持
|
||
},
|
||
/**
|
||
* 组件的属性列表
|
||
*/
|
||
properties: {
|
||
activeKey: {
|
||
type: String,
|
||
value: '',
|
||
},
|
||
placement: {
|
||
type: String,
|
||
value: 'top',
|
||
},
|
||
animated: Boolean,
|
||
swipeable: Boolean,
|
||
scrollable: Boolean,
|
||
hasLine: {
|
||
type: Boolean,
|
||
value: true
|
||
},
|
||
animatedForLine: Boolean,
|
||
activeColor: {
|
||
type: String,
|
||
value: '#333333'
|
||
},
|
||
inactiveColor: {
|
||
type: String,
|
||
value: '#bbbbbb'
|
||
},
|
||
equalWidth: {
|
||
type: Boolean,
|
||
value: true
|
||
},
|
||
// 内容区域高度
|
||
contentHeight: Number
|
||
},
|
||
|
||
data: {
|
||
tabList: [],
|
||
currentIndex: 0,
|
||
transformX: 0,
|
||
transformY: 0,
|
||
},
|
||
observers: {
|
||
'activeKey': function (newKey) {
|
||
if (!newKey) return;
|
||
const index = this.data.tabList.findIndex(tab => tab.key === newKey);
|
||
this.setData({
|
||
currentIndex: index
|
||
}, () => {
|
||
if (this.data.scrollable) {
|
||
this.queryMultipleNodes();
|
||
}
|
||
});
|
||
}
|
||
},
|
||
|
||
ready() {
|
||
this.initTabs();
|
||
},
|
||
|
||
|
||
/**
|
||
* 组件的方法列表
|
||
*/
|
||
methods: {
|
||
initTabs(val = this.data.activeKey) {
|
||
let items = this.getRelationNodes('../tabpanel/index');
|
||
if (items.length > 0) {
|
||
let activeKey = val,
|
||
currentIndex = this.data.currentIndex;
|
||
const tab = items.map((item, index) => {
|
||
|
||
activeKey = !val && index === 0 ? item.data.key : activeKey;
|
||
currentIndex = item.data.key === activeKey ? index : currentIndex;
|
||
return { ...item.data };
|
||
});
|
||
this.setData({
|
||
tabList: tab,
|
||
activeKey,
|
||
currentIndex,
|
||
}, () => {
|
||
if (this.data.scrollable) {
|
||
this.queryMultipleNodes();
|
||
}
|
||
});
|
||
}
|
||
},
|
||
swiperChange(e) {
|
||
const {
|
||
source,
|
||
current
|
||
} = e.detail;
|
||
if (source === 'touch') {
|
||
const currentIndex = current;
|
||
const activeKey = this.data.tabList[current].key;
|
||
this._setChangeData({
|
||
activeKey,
|
||
currentIndex
|
||
});
|
||
}
|
||
},
|
||
handleChange(e) {
|
||
const activeKey = e.currentTarget.dataset.key;
|
||
const currentIndex = e.currentTarget.dataset.index;
|
||
this._setChangeData({
|
||
activeKey,
|
||
currentIndex
|
||
});
|
||
},
|
||
|
||
_setChangeData({
|
||
activeKey,
|
||
currentIndex
|
||
}) {
|
||
this.setData({
|
||
activeKey,
|
||
currentIndex
|
||
}, () => {
|
||
if (this.data.scrollable) {
|
||
this.queryMultipleNodes();
|
||
}
|
||
});
|
||
this.triggerEvent('linchange', {
|
||
activeKey,
|
||
currentIndex
|
||
});
|
||
}
|
||
}
|
||
});
|