1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-28 05:15:54 +00:00
FrankerFaceZ/src/std-components/tab-container.vue

135 lines
2.5 KiB
Vue
Raw Normal View History

2017-11-13 01:23:39 -05:00
<template lang="html">
<div
v-if="item.tabs"
class="ffz--tab-container"
@keyup.alt.page-up.stop="focusPrevTab"
@keyup.alt.page-down.stop="focusNextTab"
2017-11-13 01:23:39 -05:00
>
<header
class="tw-flex"
tabindex="0"
role="tablist"
@keyup.home="firstTab"
@keyup.end="lastTab"
@keyup.page-up="prevTab"
@keyup.up="prevTab"
@keyup.left="prevTab"
@keyup.page-down="nextTab"
@keyup.right="nextTab"
@keyup.down="nextTab"
2017-11-13 01:23:39 -05:00
>
<div
v-for="(i, idx) in item.tabs"
:key="i.full_key"
:id="'tab-for-' + i.full_key"
:aria-selected="selected === idx"
:aria-controls="'tab-panel-' + i.full_key"
:class="{'active': selected === idx, 'ffz-unmatched-item': showing && ! shouldShow(i)}"
role="tab"
class="tab tw-pd-y-05 tw-pd-x-1"
@click="selected = idx"
>
{{ t(i.i18n_key, i.title, i) }}
</div>
</header>
<section
:id="'tab-panel-' + tab.full_key"
:aria-labelledby="'tab-for-' + tab.full_key"
class="tw-border"
role="tabpanel"
aria-hidden="false"
aria-expanded="true"
>
<section v-if="tab.description" class="tw-pd-b-1">
{{ t(tab.desc_i18n_key, tab.description, tab) }}
</section>
<div
v-for="i in tab.contents"
:key="i.full_key"
:class="{'ffz-unmatched-item': showing && ! shouldShow(i)}"
>
<component
:is="i.component"
:current-profile="currentProfile"
:profiles="profiles"
:context="context"
:item="i"
:filter="filter"
/>
</div>
</section>
</div>
2017-11-13 01:23:39 -05:00
</template>
<script>
export default {
props: ['item', 'profiles', 'currentProfile', 'context', 'filter'],
2017-11-13 01:23:39 -05:00
data() {
return {
selected: 0
}
},
computed: {
showing() {
return this.shouldShow(this.item)
},
2017-11-13 01:23:39 -05:00
tab() {
return this.item.tabs[this.selected];
}
},
methods: {
focus() {
this.$el.querySelector('header').focus();
},
focusNextTab() {
this.focus();
this.nextTab();
},
focusPrevTab() {
this.focus();
this.prevTab();
},
focusFirstTab() {
this.focus();
this.firstTab();
},
focusLastTab() {
this.focus();
this.lastTab();
},
firstTab() {
this.selected = 0;
},
lastTab() {
this.selected = this.item.tabs.length - 1;
},
prevTab() {
if ( this.selected > 0 )
this.selected--;
},
nextTab() {
if ( this.selected + 1 < this.item.tabs.length )
this.selected++;
},
shouldShow(item) {
if ( ! this.filter || ! this.filter.length || ! item.search_terms )
return true;
return item.search_terms.includes(this.filter);
2017-11-13 01:23:39 -05:00
}
}
}
</script>