Files
stacjownik/src/App.vue
T

210 lines
3.7 KiB
Vue

<template>
<div class="app">
<div class="app_container">
<header class="app_header">
<div class="header_body">
<span class="header_brand">
<span>Stacj</span>
<img src="@/assets/trainlogo.png" alt="trainlogo" />
<span>wnik</span>
</span>
<span class="header_info">
<Clock />
<div class="info_counter">
<img src="@/assets/icon-dispatcher.svg" alt="icon dispatcher" />
<span>{{ data.stationCount }}</span>
<span>{{ data.trainCount }}</span>
<img src="@/assets/icon-train.svg" alt="icon train" />
</div>
</span>
<span class="header_links">
<router-link class="route" active-class="route-active" to="/" exact>SCENERIE</router-link>/
<router-link class="route" active-class="route-active" to="/trains">POCIĄGI</router-link>/
<router-link class="route" active-class="route-active" to="/history">DZIENNIK</router-link>
</span>
</div>
</header>
<main class="app_main">
<transition name="view-anim" mode="out-in">
<keep-alive>
<router-view />
</keep-alive>
</transition>
</main>
<footer class="app_footer">
&copy;
<a href="https://td2.info.pl/profile/?u=20777" target="_blank">Spythere</a>
2021 | v{{VERSION}}
</footer>
</div>
</div>
</template>
<script lang="ts">
import { Vue, Component, Prop } from "vue-property-decorator";
import { Action, Getter } from "vuex-class";
import { mapGetters, mapActions } from "vuex";
import Clock from "@/components/App/Clock.vue";
@Component({
components: { Clock },
})
export default class App extends Vue {
@Action("synchronizeData") synchronizeData;
@Getter("getAllData") data;
private VERSION = "1.4a";
async mounted() {
this.synchronizeData();
}
}
</script>
<style lang="scss">
@import "./styles/responsive.scss";
@import "./styles/variables.scss";
@import "./styles/global.scss";
@import "./styles/scenery_status.scss";
// VUE ROUTE CHANGE ANIMATION
.view-anim {
&-enter {
opacity: 0.02;
}
&-leave-to {
opacity: 0.02;
}
&-enter-active,
&-leave-active {
transition: all $animDuration $animType;
min-height: 100%;
}
}
.route {
margin: 0 0.2em;
&-active {
color: $accentCol;
font-weight: bold;
}
}
// APP
.app {
background: $bgCol;
color: white;
overflow: hidden;
font-size: calc(0.4rem + 0.4vw);
@include bigScreen {
font-size: 1rem;
}
}
// CONTAINER
.app_container {
display: grid;
grid-template-rows: auto 1fr auto;
grid-template-columns: minmax(0, 1fr);
min-width: 0;
min-height: 100vh;
}
// HEADER
.app_header {
background: $primaryCol;
padding: 0.15em;
border-radius: 0 0 0.7em 0.7em;
display: flex;
justify-content: center;
@include smallScreen() {
font-size: 1.2em;
}
}
.header_brand {
width: 100%;
font-size: 4.5em;
text-align: center;
img {
width: 0.8em;
}
}
.header_info {
display: flex;
justify-content: space-between;
font-size: 1.35em;
margin: 0 0.3em;
padding: 0.2em;
@include smallScreen() {
font-size: 1.5em;
}
}
.header_links {
display: flex;
justify-content: center;
border-radius: 0.7em;
font-size: 1.2em;
padding: 0.5em;
@include smallScreen() {
font-size: 1.4em;
}
}
// COUNTER
.info_counter {
display: flex;
align-items: center;
color: $accentCol;
span {
margin: 0 0.15em;
}
img {
width: 1.35em;
}
}
// FOOTER
.app_footer {
font-size: calc(0.5rem + 0.5vw);
max-width: 100%;
padding: 0.3rem;
z-index: 10;
background: #111;
color: white;
text-align: center;
}
</style>