2018-08-27 19:22:25 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
2019-01-17 19:25:50 +00:00
|
|
|
|
2018-08-27 19:22:25 +00:00
|
|
|
import './tab_switcher.scss'
|
|
|
|
|
|
|
|
export default Vue.component('tab-switcher', {
|
|
|
|
name: 'TabSwitcher',
|
|
|
|
data () {
|
|
|
|
return {
|
2019-01-17 19:25:50 +00:00
|
|
|
active: this.$slots.default.findIndex(_ => _.tag)
|
2018-08-27 19:22:25 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2019-01-17 19:25:50 +00:00
|
|
|
activateTab (index) {
|
|
|
|
return () => {
|
|
|
|
this.active = index
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
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
|
|
|
}
|
|
|
|
},
|
2019-01-17 19:25:50 +00:00
|
|
|
render (h) {
|
2018-08-27 19:22:25 +00:00
|
|
|
const tabs = this.$slots.default
|
|
|
|
.map((slot, index) => {
|
2019-01-17 19:25:50 +00:00
|
|
|
if (!slot.tag) return
|
2018-12-15 23:35:42 +00:00
|
|
|
const classesTab = ['tab']
|
|
|
|
const classesWrapper = ['tab-wrapper']
|
2018-08-27 19:22:25 +00:00
|
|
|
|
|
|
|
if (index === this.active) {
|
2018-12-15 23:35:42 +00:00
|
|
|
classesTab.push('active')
|
|
|
|
classesWrapper.push('active')
|
2018-08-27 19:22:25 +00:00
|
|
|
}
|
2019-01-17 19:25:50 +00:00
|
|
|
|
2018-12-15 23:35:42 +00:00
|
|
|
return (
|
|
|
|
<div class={ classesWrapper.join(' ')}>
|
2019-01-17 19:25:50 +00:00
|
|
|
<button onClick={this.activateTab(index)} class={ classesTab.join(' ') }>{slot.data.attrs.label}</button>
|
2018-12-15 23:35:42 +00:00
|
|
|
</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
|
|
|
|
return (
|
|
|
|
<div class={active ? 'active' : 'hidden'}>
|
2019-01-17 19:25:50 +00:00
|
|
|
{slot}
|
2018-11-21 04:38:00 +00:00
|
|
|
</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 19:25:50 +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
|
|
|
}
|
|
|
|
})
|