2021-05-26 01:57:02 +00:00
|
|
|
<template>
|
|
|
|
<LayerProvider :layer="layer" :index="index">
|
2021-06-13 08:56:42 +00:00
|
|
|
<div class="layer-container">
|
|
|
|
<button v-if="index > 0 && allowGoBack && !minimized" class="goBack" @click="goBack(index)">←</button>
|
|
|
|
<button class="layer-tab minimized" v-if="minimized" @click="toggleMinimized"><div>{{ name }}</div></button>
|
|
|
|
<div class="layer-tab" :style="style" :class="{ hasSubtabs: subtabs }" v-else>
|
|
|
|
<branches>
|
|
|
|
<sticky v-if="subtabs" class="subtabs" :class="{ floating, firstTab: firstTab || !allowGoBack }">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
<button v-if="!disableMinimize" class="minimize" @click="toggleMinimized">▼</button>
|
2021-05-26 01:57:02 +00:00
|
|
|
</div>
|
|
|
|
</LayerProvider>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-05-27 06:14:43 +00:00
|
|
|
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';
|
2021-06-12 05:19:49 +00:00
|
|
|
import modInfo from '../../data/modInfo.json';
|
2021-06-12 04:38:16 +00:00
|
|
|
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,
|
2021-06-13 08:56:42 +00:00
|
|
|
forceFirstTab: Boolean,
|
|
|
|
disableMinimize: Boolean,
|
|
|
|
tab: Function
|
2021-05-26 01:57:02 +00:00
|
|
|
},
|
2021-06-12 05:19:49 +00:00
|
|
|
data() {
|
|
|
|
return { allowGoBack: modInfo.allowGoBack };
|
|
|
|
},
|
2021-05-27 06:14:43 +00:00
|
|
|
computed: {
|
2021-06-13 08:56:42 +00:00
|
|
|
minimized() {
|
|
|
|
return !this.disableMinimize && player.minimized[this.layer];
|
|
|
|
},
|
|
|
|
name() {
|
|
|
|
return layers[this.layer].name;
|
|
|
|
},
|
2021-06-12 04:38:16 +00:00
|
|
|
floating() {
|
|
|
|
return themes[player.theme].floatingTabs;
|
|
|
|
},
|
|
|
|
style() {
|
|
|
|
const style = [];
|
2021-05-27 06:14:43 +00:00
|
|
|
if (layers[this.layer].style) {
|
2021-06-12 04:38:16 +00:00
|
|
|
style.push(layers[this.layer].style);
|
2021-05-27 06:14:43 +00:00
|
|
|
}
|
|
|
|
if (layers[this.layer].activeSubtab?.style) {
|
2021-06-12 04:38:16 +00:00
|
|
|
style.push(layers[this.layer].activeSubtab.style);
|
2021-05-27 06:14:43 +00:00
|
|
|
}
|
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-05-27 06:14:43 +00:00
|
|
|
},
|
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;
|
2021-05-27 06:14:43 +00:00
|
|
|
},
|
|
|
|
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;
|
|
|
|
}, {});
|
2021-05-27 06:14:43 +00:00
|
|
|
}
|
|
|
|
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;
|
2021-05-27 06:14:43 +00:00
|
|
|
}
|
|
|
|
},
|
2021-06-13 08:56:42 +00:00
|
|
|
watch: {
|
|
|
|
minimized(newValue) {
|
|
|
|
const tab = this.tab();
|
|
|
|
if (tab != undefined) {
|
|
|
|
if (newValue) {
|
|
|
|
tab.style.flexGrow = 0;
|
|
|
|
tab.style.flexShrink = 0;
|
|
|
|
tab.style.width = "60px";
|
|
|
|
tab.style.margin = 0;
|
|
|
|
} else {
|
|
|
|
tab.style.flexGrow = null;
|
|
|
|
tab.style.flexShrink = null;
|
|
|
|
tab.style.width = null;
|
|
|
|
tab.style.margin = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
const tab = this.tab();
|
|
|
|
if (tab != undefined) {
|
|
|
|
if (this.minimized) {
|
|
|
|
tab.style.flexGrow = 0;
|
|
|
|
tab.style.flexShrink = 0;
|
|
|
|
tab.style.width = "60px";
|
|
|
|
tab.style.margin = 0;
|
|
|
|
} else {
|
|
|
|
tab.style.flexGrow = null;
|
|
|
|
tab.style.flexShrink = null;
|
|
|
|
tab.style.width = null;
|
|
|
|
tab.style.margin = null;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.$nextTick(this.mounted);
|
|
|
|
}
|
|
|
|
},
|
2021-05-27 06:14:43 +00:00
|
|
|
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-06-13 08:56:42 +00:00
|
|
|
},
|
|
|
|
toggleMinimized() {
|
|
|
|
player.minimized[this.layer] = !player.minimized[this.layer];
|
|
|
|
},
|
|
|
|
goBack(index) {
|
|
|
|
player.tabs = player.tabs.slice(0, index);
|
2021-05-27 06:14:43 +00:00
|
|
|
}
|
2021-05-26 01:57:02 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2021-06-13 08:56:42 +00:00
|
|
|
.layer-container {
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layer-tab:not(.minimized) {
|
2021-06-12 04:38:16 +00:00
|
|
|
padding-top: 50px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
min-height: 100%;
|
|
|
|
flex-grow: 1;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2021-06-13 08:56:42 +00:00
|
|
|
.layer-tab.minimized {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
padding: 0;
|
|
|
|
padding-top: 50px;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 40px;
|
|
|
|
color: var(--color);
|
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layer-tab.minimized div {
|
|
|
|
margin: 0;
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
padding-left: 10px;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inner-tab > .layer-container > .layer-tab:not(.minimized) {
|
2021-06-12 04:38:16 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-06-12 05:19:49 +00:00
|
|
|
.subtabs:not(.floating).firstTab {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
2021-06-12 04:38:16 +00:00
|
|
|
.subtabs:not(.floating):first-child {
|
|
|
|
margin-top: -50px;
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtabs:not(.floating):not(.firstTab) {
|
|
|
|
padding-left: 70px;
|
|
|
|
}
|
2021-06-13 08:56:42 +00:00
|
|
|
|
|
|
|
.minimize {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 15px;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
color: var(--color);
|
|
|
|
font-size: 40px;
|
|
|
|
cursor: pointer;
|
|
|
|
line-height: 40px;
|
|
|
|
z-index: 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.minimized + .minimize {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.goBack {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 20px;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
color: var(--color);
|
|
|
|
font-size: 40px;
|
|
|
|
cursor: pointer;
|
|
|
|
line-height: 40px;
|
|
|
|
z-index: 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.goBack:hover {
|
|
|
|
transform: scale(1.1, 1.1);
|
|
|
|
text-shadow: 0 0 7px var(--color);
|
|
|
|
}
|
2021-05-26 01:57:02 +00:00
|
|
|
</style>
|