2018-12-07 16:13:02 +08:00

89 lines
2.0 KiB
JavaScript

import { VantComponent } from '../common/component';
VantComponent({
relation: {
name: 'tabbar-item',
type: 'descendant',
linked: function linked(target) {
var _this = this;
this.data.items.push(target);
setTimeout(function () {
_this.setActiveItem();
});
},
unlinked: function unlinked(target) {
var _this2 = this;
this.data.items = this.data.items.filter(function (item) {
return item !== target;
});
setTimeout(function () {
_this2.setActiveItem();
});
}
},
props: {
active: Number,
fixed: {
type: Boolean,
value: true
},
zIndex: {
type: Number,
value: 1
},
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},
data: {
items: [],
currentActive: -1
},
computed: {
tabbarClass: function tabbarClass() {
var _this$data = this.data,
fixed = _this$data.fixed,
isIPhoneX = _this$data.isIPhoneX,
safeAreaInsetBottom = _this$data.safeAreaInsetBottom;
return this.classNames('custom-class', 'van-tabbar', 'van-hairline--top-bottom', {
'van-tabbar--fixed': fixed,
'van-tabbar--safe': isIPhoneX && safeAreaInsetBottom
});
}
},
watch: {
active: function active(_active) {
this.set({
currentActive: _active
});
this.setActiveItem();
}
},
created: function created() {
this.set({
currentActive: this.data.active
});
},
methods: {
setActiveItem: function setActiveItem() {
var _this3 = this;
this.data.items.forEach(function (item, index) {
item.setActive(index === _this3.data.currentActive);
});
},
onChange: function onChange(child) {
var active = this.data.items.indexOf(child);
if (active !== this.data.currentActive && active !== -1) {
this.$emit('change', active);
this.set({
currentActive: active
});
this.setActiveItem();
}
}
}
});