Files
mixtape/zero.Backoffice.UI/app/components/ui-tabs.vue
T
2021-12-23 14:39:00 +01:00

235 lines
4.6 KiB
Vue

<template>
<div class="ui-tabs">
<div role="tablist" class="ui-tabs-list">
<button type="button" v-for="(tab, index) in tabs" class="ui-tabs-list-item" :key="index"
:class="{ 'is-active': tab.active, 'has-errors': tab.hasErrors }"
:disabled="tab.disabled"
:aria-selected="tab.active ? true : null"
role="tab"
@click="select(index)">
<ui-icon v-if="tab.hasErrors" class="ui-tabs-list-item-error" :size="16" symbol="fth-alert-circle"></ui-icon>
<span v-localize="tab.label"></span>
<i v-if="tab.countOutput > 0" class="ui-tabs-list-item-count">{{tab.countOutput}}</i>
</button>
</div>
<div class="ui-tabs-items">
<slot />
</div>
</div>
</template>
<script>
export default {
name: 'uiTabs',
props: {
cache: {
type: String
},
active: {
type: Number,
default: 0
}
},
data: () => ({
storageKey: null,
tabs: []
}),
mounted()
{
this.cacheKey = this.cache ? `zero.ui-tabs.cache.${this.cache}` : null;
if (this.cache)
{
const cachedActiveTab = localStorage.getItem(this.cacheKey);
if (cachedActiveTab !== null)
{
this.select(+cachedActiveTab);
return;
}
}
this.select(this.active);
},
methods: {
register(tab)
{
this.tabs.push(tab);
},
unregister(tab)
{
this.tabs = this.tabs.splice(this.tabs.indexOf(tab), 1);
},
select(index, ev)
{
if (ev)
{
ev.preventDefault();
}
const currentTab = this.tabs[index];
if (!currentTab || currentTab.disabled)
{
return;
}
this.tabs.forEach((tab, tabIndex) =>
{
tab.active = index === tabIndex;
});
if (this.cache)
{
localStorage.setItem(this.cacheKey, index);
}
//this.$emit('changed', { tab: selectedTab });
//this.activeTabHash = selectedTab.hash;
//this.activeTabIndex = this.getTabIndex(selectedTabHash);
//this.lastActiveTabHash = this.activeTabHash = selectedTab.hash;
//expiringStorage.set(this.storageKey, selectedTab.hash, this.cacheLifetime);
}
}
}
</script>
<style lang="scss">
.ui-tabs
{
}
.ui-header-bar + .ui-tabs > .ui-tabs-list
{
padding-top: 0;
}
.ui-tabs-list
{
padding: var(--padding) var(--padding) 0;
margin-bottom: calc(var(--padding) * -1);
height: 58px;
display: flex;
}
/*.ui-tabs-items > .ui-tab:first-child.ui-box:not(.is-blank)
{
border-top-left-radius: 0;
}*/
.ui-tabs-items
{
position: relative;
z-index: 1;
}
.ui-tabs-list-item
{
display: inline-flex;
align-items: center;
height: 58px;
padding: 0 var(--padding);
font-size: var(--font-size);
color: var(--color-text);
position: relative;
transition: color 0.2s ease;
border-radius: var(--radius-inner) var(--radius-inner) 0 0;
background: var(--color-box-light);
& + .ui-tabs-list-item
{
margin-left: 4px;
}
&:hover
{
color: var(--color-text);
}
&[disabled]
{
cursor: default;
color: var(--color-text-dim);
}
&.is-active
{
font-weight: 700;
color: var(--color-text);
background: var(--color-box);
box-shadow: var(--shadow-short);
.ui-tabs-list-item-count
{
background: var(--color-box-light);
}
}
&.has-errors
{
color: var(--color-accent-error);
&.is-active
{
color: var(--color-accent-error);
&:before
{
background: var(--color-accent-error);
}
}
}
&:first-child:after
{
content: '';
position: absolute;
left: 0;
width: 30px;
bottom: -30px;
height: 30px;
background: var(--color-box-light);
z-index: 0;
}
}
.ui-tabs-list-item-count
{
font-style: normal;
font-size: 12px;
overflow: hidden;
float: right;
padding: 2px 6px;
background: var(--color-box);
border-radius: 10px;
margin-left: 8px;
margin-right: -4px;
margin-top: -1px;
font-weight: bold;
color: var(--color-text);
}
.ui-tabs-list-item-error
{
display: inline-block;
float: left;
margin-right: 6px;
margin-left: -4px;
position: relative;
margin-top: -4px;
top: 1px;
}
.ui-tab.ui-box:first-child
{
border-top-left-radius: 0;
}
</style>