profectus-template/src/components/system/LayerTab.vue

143 lines
3.1 KiB
Vue
Raw Normal View History

2021-05-26 01:57:02 +00:00
<template>
<LayerProvider :layer="layer" :index="index">
2021-06-12 04:38:16 +00:00
<div class="layer-tab" :style="style" :class="{ hasSubtabs: subtabs }">
<branches>
<sticky v-if="subtabs" class="subtabs" :class="{ floating, firstTab }">
<tab-button v-for="(subtab, id) in subtabs" @selectTab="selectSubtab(id)" :key="id" :activeTab="id === activeSubtab"
:options="subtab" :text="id" />
</sticky>
<component v-if="display" :is="display" />
<default-layer-tab v-else />
</branches>
2021-05-26 01:57:02 +00:00
</div>
</LayerProvider>
</template>
<script>
import { layers } from '../../store/layers';
import { player } from '../../store/proxies';
2021-06-12 04:38:16 +00:00
import { coerceComponent } from '../../util/vue';
import { isPlainObject } from '../../util/common';
import themes from '../../data/themes';
2021-05-26 01:57:02 +00:00
export default {
name: 'layer-tab',
props: {
layer: String,
2021-06-12 04:38:16 +00:00
index: Number,
forceFirstTab: Boolean
2021-05-26 01:57:02 +00:00
},
computed: {
2021-06-12 04:38:16 +00:00
floating() {
return themes[player.theme].floatingTabs;
},
style() {
const style = [];
if (layers[this.layer].style) {
2021-06-12 04:38:16 +00:00
style.push(layers[this.layer].style);
}
if (layers[this.layer].activeSubtab?.style) {
2021-06-12 04:38:16 +00:00
style.push(layers[this.layer].activeSubtab.style);
}
2021-06-12 05:02:54 +00:00
style.push({ minWidth: `${layers[this.layer].minWidth}px` });
2021-06-12 04:38:16 +00:00
return style;
},
2021-06-12 04:38:16 +00:00
display() {
if (layers[this.layer].activeSubtab?.display) {
return coerceComponent(layers[this.layer].activeSubtab.display);
}
if (layers[this.layer].display) {
return coerceComponent(layers[this.layer].display);
}
return null;
},
subtabs() {
if (layers[this.layer].subtabs) {
return Object.entries(layers[this.layer].subtabs)
2021-06-12 04:38:16 +00:00
.filter(subtab => isPlainObject(subtab[1]) && subtab[1].unlocked !== false)
.reduce((acc, curr) => {
acc[curr[0]] = curr[1];
return acc;
}, {});
}
return null;
},
activeSubtab() {
2021-06-12 04:38:16 +00:00
return layers[this.layer].activeSubtab.id;
},
firstTab() {
if (this.forceFirstTab != undefined) {
return this.forceFirstTab;
}
return this.index === 0;
}
},
methods: {
selectSubtab(subtab) {
2021-06-12 04:38:16 +00:00
if (player.subtabs[this.layer] == undefined) {
player.subtabs[this.layer] = {};
}
player.subtabs[this.layer].mainTabs = subtab;
}
2021-05-26 01:57:02 +00:00
}
};
</script>
<style scoped>
2021-06-12 04:38:16 +00:00
.layer-tab {
padding-top: 50px;
padding-bottom: 20px;
min-height: 100%;
flex-grow: 1;
text-align: center;
position: relative;
}
.inner-tab > .layer-tab {
margin: -50px -10px;
padding: 50px 10px;
}
.layer-tab .subtabs {
margin-bottom: 24px;
display: flex;
z-index: 4;
}
.subtabs:not(.floating) {
width: calc(100% + 14px);
border-top: solid 4px var(--separator);
border-bottom: solid 4px var(--separator);
height: 50px;
margin-left: -7px;
margin-right: -7px;
box-sizing: border-box;
text-align: left;
padding-left: 14px;
}
.modal-body .layer-tab {
padding-bottom: 0;
}
.modal-body .layer-tab:not(.hasSubtabs) {
padding-top: 0;
}
.modal-body .subtabs {
width: 100%;
margin-left: 0;
margin-right: 0;
padding-left: 0;
}
.subtabs:not(.floating):first-child {
margin-top: -50px;
border-top: 0;
}
.subtabs:not(.floating):not(.firstTab) {
padding-left: 70px;
}
2021-05-26 01:57:02 +00:00
</style>