mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
282 lines
6.5 KiB
Vue
282 lines
6.5 KiB
Vue
<template>
|
|
<div class="app_container" v-cloak>
|
|
<PopUp />
|
|
|
|
<transition name="modal-anim">
|
|
<keep-alive>
|
|
<TrainModal v-if="store.chosenModalTrainId" />
|
|
</keep-alive>
|
|
</transition>
|
|
|
|
<AppHeader :current-lang="currentLang" @change-lang="changeLang" />
|
|
|
|
<main class="app_main">
|
|
<router-view v-slot="{ Component }">
|
|
<keep-alive exclude="SceneryView">
|
|
<component :is="Component" :key="$route.name" />
|
|
</keep-alive>
|
|
</router-view>
|
|
</main>
|
|
|
|
<footer class="app_footer">
|
|
©
|
|
<a href="https://td2.info.pl/profile/?u=20777" target="_blank">Spythere</a>
|
|
{{ new Date().getUTCFullYear() }} |
|
|
<a :href="releaseURL" target="_blank">v{{ VERSION }}{{ isOnProductionHost ? '' : 'dev' }}</a>
|
|
<br />
|
|
<a href="https://discord.gg/x2mpNN3svk">
|
|
<img src="/images/icon-discord.png" alt="" /> <b>{{ $t('footer.discord') }}</b>
|
|
</a>
|
|
|
|
<div style="display: none">∫ ukryta taktyczna całka do programowania w HTMLu</div>
|
|
</footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, watch } from 'vue';
|
|
import axios from 'axios';
|
|
import { version } from '.././package.json';
|
|
|
|
import { useMainStore } from './store/mainStore';
|
|
|
|
import Clock from './components/App/Clock.vue';
|
|
import StatusIndicator from './components/App/StatusIndicator.vue';
|
|
import AppHeader from './components/App/AppHeader.vue';
|
|
import TrainModal from './components/TrainsView/TrainModal.vue';
|
|
import StorageManager from './managers/storageManager';
|
|
import PopUp from './components/PopUp/PopUp.vue';
|
|
import { useApiStore } from './store/apiStore';
|
|
import { Status } from './typings/common';
|
|
import { usePopupStore } from './store/popupStore';
|
|
|
|
const STORAGE_VERSION_KEY = 'app_version';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
Clock,
|
|
StatusIndicator,
|
|
AppHeader,
|
|
TrainModal,
|
|
PopUp
|
|
},
|
|
|
|
data: () => ({
|
|
VERSION: version,
|
|
store: useMainStore(),
|
|
apiStore: useApiStore(),
|
|
popupStore: usePopupStore(),
|
|
|
|
currentLang: 'pl',
|
|
releaseURL: '',
|
|
isOnProductionHost: location.hostname == 'stacjownik-td2.web.app'
|
|
}),
|
|
|
|
created() {
|
|
this.init();
|
|
},
|
|
|
|
async mounted() {
|
|
window.addEventListener('focus', () => {
|
|
if (Date.now() - this.apiStore.lastFetchData.getTime() < 15000) return;
|
|
|
|
this.apiStore.fetchActiveData();
|
|
});
|
|
|
|
// popup handling
|
|
window.addEventListener('mousemove', (e: MouseEvent) => {
|
|
e.stopPropagation();
|
|
|
|
const targetEl = e
|
|
.composedPath()
|
|
.find((p) => p instanceof HTMLElement && p.getAttribute('data-popup-key'));
|
|
|
|
if (!targetEl || !(targetEl instanceof HTMLElement)) {
|
|
if (this.popupStore.currentPopupComponent != null) this.popupStore.onPopUpHide();
|
|
|
|
return;
|
|
}
|
|
|
|
const popupComponentKey = targetEl.getAttribute('data-popup-key');
|
|
const popupContent = targetEl.getAttribute('data-popup-content');
|
|
|
|
if (popupComponentKey && popupContent)
|
|
this.popupStore.onPopUpShow(e, popupComponentKey, popupContent);
|
|
else if (this.popupStore.currentPopupComponent != null) this.popupStore.onPopUpHide();
|
|
});
|
|
|
|
watch(
|
|
() => this.store.blockScroll,
|
|
(value) => {
|
|
if (value) document.body.classList.add('no-scroll');
|
|
else document.body.classList.remove('no-scroll');
|
|
}
|
|
);
|
|
},
|
|
|
|
methods: {
|
|
init() {
|
|
this.loadLang();
|
|
this.setReleaseURL();
|
|
this.setupOfflineHandling();
|
|
this.checkAppVersion();
|
|
|
|
this.apiStore.setupAPIData();
|
|
|
|
if (!this.isOnProductionHost) document.title = 'Stacjownik Dev';
|
|
},
|
|
|
|
checkAppVersion() {
|
|
if (import.meta.env.DEV) {
|
|
this.store.isNewUpdate = true;
|
|
|
|
return;
|
|
}
|
|
|
|
const storageVersion = StorageManager.getStringValue(STORAGE_VERSION_KEY);
|
|
|
|
if (storageVersion === undefined || storageVersion != version) {
|
|
this.store.isNewUpdate = true;
|
|
|
|
StorageManager.setStringValue(STORAGE_VERSION_KEY, version);
|
|
}
|
|
},
|
|
|
|
setupOfflineHandling() {
|
|
this.store.isOffline = !window.navigator.onLine;
|
|
|
|
if (this.store.isOffline) this.handleOfflineMode();
|
|
|
|
window.addEventListener('offline', this.handleOfflineMode);
|
|
window.addEventListener('online', this.handleOnlineMode);
|
|
},
|
|
|
|
handleOfflineMode() {
|
|
this.store.isOffline = true;
|
|
|
|
this.apiStore.activeData = undefined;
|
|
this.apiStore.dataStatuses.connection = Status.Data.Offline;
|
|
},
|
|
|
|
handleOnlineMode() {
|
|
this.store.isOffline = false;
|
|
|
|
this.apiStore.connectToAPI();
|
|
},
|
|
|
|
changeLang(lang: string) {
|
|
this.$i18n.locale = lang;
|
|
this.currentLang = lang;
|
|
|
|
StorageManager.setStringValue('lang', lang);
|
|
},
|
|
|
|
async setReleaseURL() {
|
|
try {
|
|
const releaseData = await (
|
|
await axios.get('https://api.github.com/repos/Spythere/stacjownik/releases/latest')
|
|
).data;
|
|
|
|
if (!releaseData) return;
|
|
|
|
this.releaseURL = releaseData.html_url;
|
|
} catch (error) {
|
|
console.error(`Wystąpił błąd podczas pobierania danych z API GitHuba: ${error}`);
|
|
return;
|
|
}
|
|
},
|
|
|
|
loadLang() {
|
|
const storageLang = StorageManager.getStringValue('lang');
|
|
|
|
if (storageLang) {
|
|
this.changeLang(storageLang);
|
|
return;
|
|
}
|
|
|
|
if (!window.navigator.language) return;
|
|
|
|
const naviLanguage = window.navigator.language.toString();
|
|
|
|
if (naviLanguage.includes('en')) {
|
|
this.changeLang('en');
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import './styles/global';
|
|
@import './styles/animations';
|
|
|
|
.route {
|
|
margin: 0 0.2em;
|
|
|
|
&-active,
|
|
&[data-active='true'] {
|
|
color: $accentCol;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
// APP
|
|
#app {
|
|
color: white;
|
|
font-size: 1rem;
|
|
overflow-x: hidden;
|
|
|
|
@include smallScreen() {
|
|
font-size: calc(0.65rem + 0.8vw);
|
|
}
|
|
|
|
@include screenLandscape() {
|
|
font-size: calc(0.45rem + 0.8vw);
|
|
}
|
|
}
|
|
|
|
// CONTAINER
|
|
.app_container {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
grid-template-columns: 100%;
|
|
|
|
min-height: 100vh;
|
|
position: relative;
|
|
}
|
|
|
|
.app_main {
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
.warning {
|
|
background-color: firebrick;
|
|
text-align: center;
|
|
padding: 0.5em 0.4em;
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
|
|
border-radius: 0 0 1em 1em;
|
|
}
|
|
|
|
// FOOTER
|
|
footer.app_footer {
|
|
max-width: 100%;
|
|
padding: 0.5em;
|
|
|
|
img {
|
|
width: 1.1em;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
z-index: 10;
|
|
|
|
background: #111;
|
|
color: white;
|
|
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
</style>
|