mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 11:45:34 +00:00
124 lines
2.3 KiB
Vue
124 lines
2.3 KiB
Vue
<template>
|
|
<section class="tabs-section">
|
|
<div class="tabs-modes">
|
|
<router-link v-for="(route, i) in routes" :key="route.name" class="link-btn" :to="route.href" :style="{ 'grid-area': route.name }">
|
|
<span class="text--accent">{{ i + 1 }}.</span> {{ $t(`topbar.${route.name}`) }}
|
|
<span class="text--grayed" v-if="route.name == 'stock'">({{ store.stockList.length }})</span>
|
|
</router-link>
|
|
</div>
|
|
|
|
<transition name="tab-change" mode="out-in">
|
|
<keep-alive>
|
|
<component :is="route.meta.viewMode"></component>
|
|
</keep-alive>
|
|
</transition>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue';
|
|
import { useStore } from '../../store';
|
|
import { useRoute, useRouter } from 'vue-router';
|
|
|
|
const store = useStore();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
|
|
const routes = [
|
|
{
|
|
name: 'stock',
|
|
href: '/',
|
|
},
|
|
{
|
|
name: 'wiki',
|
|
href: '/wiki',
|
|
},
|
|
{
|
|
name: 'storage',
|
|
href: '/storage',
|
|
},
|
|
{
|
|
name: 'numgen',
|
|
href: '/numgen',
|
|
},
|
|
{
|
|
name: 'stockgen',
|
|
href: '/stockgen',
|
|
},
|
|
];
|
|
|
|
onMounted(() => {
|
|
window.addEventListener('keydown', (e) => {
|
|
if (e.target instanceof HTMLInputElement) return;
|
|
|
|
if (/^[12345]$/.test(e.key)) {
|
|
const keyNum = Number(e.key);
|
|
|
|
router.push(routes[keyNum - 1].href);
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@use '@/styles/responsive';
|
|
|
|
// Tab change animation
|
|
.tab-change {
|
|
&-enter-from,
|
|
&-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
&-enter-active,
|
|
&-leave-active {
|
|
transition: all 100ms ease-in-out;
|
|
}
|
|
}
|
|
|
|
// Section styles
|
|
.tabs-section {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
gap: 1em;
|
|
|
|
grid-row: 1 / 4;
|
|
grid-column: 2;
|
|
|
|
overflow: hidden;
|
|
padding: 1px;
|
|
}
|
|
|
|
.tabs-modes {
|
|
display: grid;
|
|
gap: 0.5em;
|
|
grid-template-areas: 'stock wiki storage numgen stockgen';
|
|
|
|
padding: 1px;
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
.tabs-modes {
|
|
grid-template-areas:
|
|
'stock stock wiki wiki storage storage'
|
|
'numgen numgen numgen stockgen stockgen stockgen';
|
|
}
|
|
}
|
|
|
|
@include responsive.smallScreen {
|
|
.tabs-modes {
|
|
grid-template-areas:
|
|
'stock wiki'
|
|
'storage storage'
|
|
'numgen stockgen';
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@include responsive.midScreen {
|
|
.tabs-section {
|
|
min-height: 100vh;
|
|
}
|
|
}
|
|
</style>
|