2018-08-27 19:22:25 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
|
|
|
import './tab_switcher.scss'
|
|
|
|
|
|
|
|
export default Vue.component('tab-switcher', {
|
|
|
|
name: 'TabSwitcher',
|
2019-07-15 16:42:27 +00:00
|
|
|
props: ['renderOnlyFocused', 'onSwitch', 'customActive'],
|
2018-08-27 19:22:25 +00:00
|
|
|
data () {
|
|
|
|
return {
|
2019-01-17 19:25:50 +00:00
|
|
|
active: this.$slots.default.findIndex(_ => _.tag)
|
2018-08-27 19:22:25 +00:00
|
|
|
}
|
|
|
|
},
|
2019-07-05 07:02:14 +00:00
|
|
|
beforeUpdate () {
|
|
|
|
const currentSlot = this.$slots.default[this.active]
|
|
|
|
if (!currentSlot.tag) {
|
|
|
|
this.active = this.$slots.default.findIndex(_ => _.tag)
|
|
|
|
}
|
|
|
|
},
|
2018-08-27 19:22:25 +00:00
|
|
|
methods: {
|
2019-05-14 19:38:16 +00:00
|
|
|
activateTab (index, dataset) {
|
2019-01-17 19:25:50 +00:00
|
|
|
return () => {
|
2019-05-14 19:38:16 +00:00
|
|
|
if (typeof this.onSwitch === 'function') {
|
|
|
|
this.onSwitch.call(null, index, this.$slots.default[index].elm.dataset)
|
|
|
|
}
|
2019-01-17 19:25:50 +00:00
|
|
|
this.active = index
|
|
|
|
}
|
2019-07-15 16:42:27 +00:00
|
|
|
},
|
|
|
|
isActiveTab (index) {
|
|
|
|
const customActiveIndex = this.$slots.default.findIndex(slot => {
|
|
|
|
const dataFilter = slot.data && slot.data.attrs && slot.data.attrs['data-filter']
|
|
|
|
return this.customActive && this.customActive === dataFilter
|
|
|
|
})
|
|
|
|
|
|
|
|
return customActiveIndex > -1 ? customActiveIndex === index : index === this.active
|
2019-01-17 19:25:50 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
render (h) {
|
2018-08-27 19:22:25 +00:00
|
|
|
const tabs = this.$slots.default
|
2019-07-05 07:02:14 +00:00
|
|
|
.map((slot, index) => {
|
|
|
|
if (!slot.tag) return
|
|
|
|
const classesTab = ['tab']
|
|
|
|
const classesWrapper = ['tab-wrapper']
|
2018-08-27 19:22:25 +00:00
|
|
|
|
2019-07-15 16:42:27 +00:00
|
|
|
if (this.isActiveTab(index)) {
|
2019-07-05 07:02:14 +00:00
|
|
|
classesTab.push('active')
|
|
|
|
classesWrapper.push('active')
|
|
|
|
}
|
2019-07-24 19:35:52 +00:00
|
|
|
if (slot.data.attrs.image) {
|
|
|
|
return (
|
|
|
|
<div class={ classesWrapper.join(' ')}>
|
|
|
|
<button
|
|
|
|
disabled={slot.data.attrs.disabled}
|
|
|
|
onClick={this.activateTab(index)}
|
|
|
|
class={classesTab.join(' ')}>
|
|
|
|
<img src={slot.data.attrs.image} title={slot.data.attrs['image-tooltip']}/>
|
|
|
|
{slot.data.attrs.label ? '' : slot.data.attrs.label}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2019-07-05 07:02:14 +00:00
|
|
|
return (
|
|
|
|
<div class={ classesWrapper.join(' ')}>
|
|
|
|
<button
|
|
|
|
disabled={slot.data.attrs.disabled}
|
|
|
|
onClick={this.activateTab(index)}
|
|
|
|
class={classesTab.join(' ')}>
|
|
|
|
{slot.data.attrs.label}</button>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
})
|
2019-01-17 19:25:50 +00:00
|
|
|
|
|
|
|
const contents = this.$slots.default.map((slot, index) => {
|
|
|
|
if (!slot.tag) return
|
2018-11-21 04:38:00 +00:00
|
|
|
const active = index === this.active
|
2019-01-31 15:00:31 +00:00
|
|
|
if (this.renderOnlyFocused) {
|
|
|
|
return active
|
|
|
|
? <div class="active">{slot}</div>
|
|
|
|
: <div class="hidden"></div>
|
|
|
|
}
|
|
|
|
return <div class={active ? 'active' : 'hidden' }>{slot}</div>
|
2019-01-17 19:25:50 +00:00
|
|
|
})
|
|
|
|
|
2018-08-27 19:22:25 +00:00
|
|
|
return (
|
|
|
|
<div class="tab-switcher">
|
2019-01-17 20:05:58 +00:00
|
|
|
<div class="tabs">
|
|
|
|
{tabs}
|
|
|
|
</div>
|
|
|
|
<div class="contents">
|
|
|
|
{contents}
|
|
|
|
</div>
|
2018-11-21 19:08:27 +00:00
|
|
|
</div>
|
|
|
|
)
|
2018-08-27 19:22:25 +00:00
|
|
|
}
|
|
|
|
})
|