You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
3.8 KiB
139 lines
3.8 KiB
import baseComponent from '../helpers/baseComponent'
|
|
import classNames from '../helpers/classNames'
|
|
import styleToCssString from '../helpers/styleToCssString'
|
|
import { safeAreaInset, checkIPhoneX } from '../helpers/checkIPhoneX'
|
|
|
|
baseComponent({
|
|
relations: {
|
|
'../tabbar-item/index': {
|
|
type: 'child',
|
|
observer() {
|
|
this.debounce(this.updated)
|
|
},
|
|
},
|
|
},
|
|
properties: {
|
|
prefixCls: {
|
|
type: String,
|
|
value: 'wux-tabbar',
|
|
},
|
|
defaultCurrent: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
current: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
controlled: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
theme: {
|
|
type: String,
|
|
value: 'balanced',
|
|
},
|
|
backgroundColor: {
|
|
type: String,
|
|
value: '#fff',
|
|
},
|
|
position: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
safeArea: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
},
|
|
data: {
|
|
tabbarStyle: '',
|
|
activeKey: '',
|
|
keys: [],
|
|
},
|
|
computed: {
|
|
classes: ['prefixCls, position', function(prefixCls, position) {
|
|
const wrap = classNames(prefixCls, {
|
|
[`${prefixCls}--${position}`]: position,
|
|
})
|
|
|
|
return {
|
|
wrap,
|
|
}
|
|
}],
|
|
},
|
|
observers: {
|
|
current(newVal) {
|
|
if (this.data.controlled) {
|
|
this.updated(newVal)
|
|
}
|
|
},
|
|
['backgroundColor, position, safeArea'](...args) {
|
|
this.updateStyle(...args)
|
|
},
|
|
},
|
|
methods: {
|
|
updated(activeKey = this.data.activeKey) {
|
|
if (this.data.activeKey !== activeKey) {
|
|
this.setData({ activeKey })
|
|
}
|
|
|
|
this.changeCurrent(activeKey)
|
|
},
|
|
changeCurrent(activeKey) {
|
|
const elements = this.getRelationNodes('../tabbar-item/index')
|
|
|
|
if (elements.length > 0) {
|
|
elements.forEach((element, index) => {
|
|
const key = element.data.key || String(index)
|
|
const current = key === activeKey
|
|
|
|
element.changeCurrent(current, key, this.data.theme, elements.length)
|
|
})
|
|
}
|
|
|
|
if (this.data.keys.length !== elements.length) {
|
|
this.setData({
|
|
keys: elements.map((element) => element.data),
|
|
})
|
|
}
|
|
},
|
|
emitEvent(key) {
|
|
this.triggerEvent('change', {
|
|
key,
|
|
keys: this.data.keys,
|
|
})
|
|
},
|
|
setActiveKey(activeKey) {
|
|
if (!this.data.controlled) {
|
|
this.updated(activeKey)
|
|
}
|
|
|
|
this.emitEvent(activeKey)
|
|
},
|
|
updateStyle(backgroundColor, position, safeArea) {
|
|
const tabbarStyle = {
|
|
backgroundColor,
|
|
}
|
|
|
|
// check iphonex & enable safeArea
|
|
if (checkIPhoneX() && safeArea) {
|
|
if (['bottom', 'top'].includes(position)) {
|
|
const field = position === 'bottom' ? 'paddingBottom' : 'paddingTop'
|
|
tabbarStyle[field] = `${safeAreaInset[position]}px`
|
|
}
|
|
}
|
|
|
|
this.setData({
|
|
tabbarStyle: styleToCssString(tabbarStyle),
|
|
})
|
|
},
|
|
},
|
|
ready() {
|
|
const { defaultCurrent, current, controlled, backgroundColor, position, safeArea } = this.data
|
|
const activeKey = controlled ? current : defaultCurrent
|
|
|
|
this.updated(activeKey)
|
|
this.updateStyle(backgroundColor, position, safeArea)
|
|
},
|
|
})
|
|
|