mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
317 lines
6.3 KiB
Vue
317 lines
6.3 KiB
Vue
<template>
|
|
<div class="scenery-view">
|
|
<div class="scenery-wrapper" ref="card-wrapper">
|
|
<div class="scenery-left">
|
|
<div class="scenery-actions">
|
|
<button class="back-btn btn" :title="$t('scenery.return-btn')" @click="navigateTo('/')">
|
|
<img src="/images/icon-back.svg" alt="Back to scenery" />
|
|
</button>
|
|
</div>
|
|
|
|
<SceneryHeader
|
|
:stationName="station"
|
|
:station="stationInfo"
|
|
:onlineScenery="onlineSceneryInfo"
|
|
/>
|
|
|
|
<SceneryInfo :station="stationInfo" :onlineScenery="onlineSceneryInfo" />
|
|
</div>
|
|
|
|
<div class="scenery-right">
|
|
<div class="info-actions">
|
|
<button
|
|
v-for="(viewMode, i) in viewModes"
|
|
:key="i"
|
|
class="btn btn--option"
|
|
:class="{ checked: currentMode == viewMode.component }"
|
|
@click="setViewMode(viewMode.component)"
|
|
>
|
|
{{ $t(viewMode.id) }}
|
|
</button>
|
|
</div>
|
|
|
|
<div
|
|
v-if="
|
|
apiStore.dataStatuses.sceneries == Status.Loading ||
|
|
apiStore.dataStatuses.connection == Status.Loading
|
|
"
|
|
></div>
|
|
|
|
<keep-alive v-else>
|
|
<component
|
|
:is="currentMode"
|
|
:onlineScenery="onlineSceneryInfo"
|
|
:station="stationInfo"
|
|
:key="currentMode"
|
|
></component>
|
|
</keep-alive>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from 'vue';
|
|
import { useRoute } from 'vue-router';
|
|
import routerMixin from '../mixins/routerMixin';
|
|
import { useMainStore } from '../store/mainStore';
|
|
|
|
import SceneryInfo from '../components/SceneryView/SceneryInfo.vue';
|
|
import SceneryHeader from '../components/SceneryView/SceneryHeader.vue';
|
|
import SceneryTimetable from '../components/SceneryView/SceneryTimetable.vue';
|
|
import SceneryTimetablesHistory from '../components/SceneryView/SceneryTimetablesHistory.vue';
|
|
import SceneryDispatchersHistory from '../components/SceneryView/SceneryDispatchersHistory.vue';
|
|
import ActionButton from '../components/Global/ActionButton.vue';
|
|
import { Status } from '../typings/common';
|
|
import { useApiStore } from '../store/apiStore';
|
|
|
|
enum SceneryViewMode {
|
|
'TIMETABLES_ACTIVE',
|
|
'TIMETABLES_HISTORY',
|
|
'SCENERY_HISTORY'
|
|
}
|
|
|
|
export default defineComponent({
|
|
name: 'SceneryView',
|
|
|
|
components: {
|
|
SceneryInfo,
|
|
SceneryTimetable,
|
|
ActionButton,
|
|
SceneryHeader,
|
|
SceneryTimetablesHistory,
|
|
SceneryDispatchersHistory
|
|
},
|
|
|
|
props: {
|
|
region: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
|
|
station: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
mixins: [routerMixin],
|
|
|
|
data: () => ({
|
|
store: useMainStore(),
|
|
apiStore: useApiStore(),
|
|
|
|
viewModes: [
|
|
{
|
|
id: 'scenery.option-active-timetables',
|
|
component: 'SceneryTimetable'
|
|
},
|
|
{
|
|
id: 'scenery.option-timetables-history',
|
|
component: 'SceneryTimetablesHistory'
|
|
},
|
|
{
|
|
id: 'scenery.option-dispatchers-history',
|
|
component: 'SceneryDispatchersHistory'
|
|
}
|
|
],
|
|
sceneryViewMode: SceneryViewMode,
|
|
selectedCheckpoint: '',
|
|
currentViewCompontent: 'SceneryTimetable',
|
|
onlineFrom: -1,
|
|
Status: Status.Data
|
|
}),
|
|
|
|
setup() {
|
|
const route = useRoute();
|
|
|
|
const isComponentVisible = computed(() => route.path === '/scenery');
|
|
|
|
return {
|
|
isComponentVisible
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
currentMode() {
|
|
return this.$route.query.view?.toString() ?? 'SceneryTimetable';
|
|
},
|
|
|
|
stationInfo() {
|
|
return this.store.stationList.find(
|
|
(station) => station.name === this.station?.toString().replace(/_/g, ' ')
|
|
);
|
|
},
|
|
|
|
onlineSceneryInfo() {
|
|
return this.store.activeSceneryList.find(
|
|
(scenery) =>
|
|
scenery.name === this.station?.toString().replace(/_/g, ' ') &&
|
|
scenery.region == this.store.region.id
|
|
);
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
setViewMode(componentName: string) {
|
|
this.$router.push({
|
|
path: this.$route.path,
|
|
query: {
|
|
...this.$route.query,
|
|
view: componentName
|
|
}
|
|
});
|
|
},
|
|
|
|
loadSelectedCheckpoint() {
|
|
if (!this.stationInfo?.generalInfo?.checkpoints) return;
|
|
if (this.stationInfo.generalInfo.checkpoints.length == 0) return;
|
|
this.selectedCheckpoint = this.stationInfo.generalInfo.checkpoints[0];
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../styles/responsive.scss';
|
|
@import '../styles/variables.scss';
|
|
|
|
button.back-btn {
|
|
img {
|
|
width: 2em;
|
|
}
|
|
}
|
|
|
|
.scenery {
|
|
&-view {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
&-offline {
|
|
align-self: center;
|
|
text-align: center;
|
|
padding: 2em 1em;
|
|
|
|
color: $warningCol;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 1.25em;
|
|
|
|
button {
|
|
margin: 1em auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.scenery-wrapper {
|
|
display: grid;
|
|
grid-template-columns: 4fr 6fr;
|
|
gap: 0 1em;
|
|
|
|
position: relative;
|
|
|
|
max-width: var(--max-container-width);
|
|
width: 100%;
|
|
|
|
padding: 1rem 0;
|
|
text-align: center;
|
|
|
|
&[data-timetable-only='true'] {
|
|
grid-template-columns: 1fr;
|
|
max-width: 1000px;
|
|
}
|
|
}
|
|
|
|
.scenery-left,
|
|
.scenery-right {
|
|
position: relative;
|
|
overflow: auto;
|
|
|
|
background-color: #181818;
|
|
border-radius: 0.5em;
|
|
padding: 1em 0.5em;
|
|
|
|
height: calc(100vh - 0.5em);
|
|
min-height: 500px;
|
|
max-height: 2000px;
|
|
}
|
|
|
|
.scenery-left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.scenery-right {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
gap: 1em;
|
|
}
|
|
|
|
.scenery-actions {
|
|
display: flex;
|
|
}
|
|
|
|
.info-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 0.75em;
|
|
|
|
button {
|
|
padding: 0.5em;
|
|
}
|
|
}
|
|
|
|
.timetable-checkpoints {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
font-size: 1.1em;
|
|
margin: 0.75em 0;
|
|
|
|
.checkpoint_item {
|
|
&.current {
|
|
font-weight: bold;
|
|
color: $accentCol;
|
|
}
|
|
|
|
&:not(:last-child)::after {
|
|
margin: 0 0.5em;
|
|
content: '•';
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include midScreen {
|
|
.scenery-wrapper {
|
|
grid-template-columns: 1fr;
|
|
gap: 0;
|
|
}
|
|
|
|
.scenery-left {
|
|
border-radius: 1em;
|
|
margin-bottom: 1em;
|
|
height: auto;
|
|
}
|
|
|
|
.scenery-right {
|
|
border-radius: 1em;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
@include smallScreen {
|
|
.scenery-left {
|
|
max-height: 100vh;
|
|
}
|
|
|
|
.scenery-right {
|
|
height: 100vh;
|
|
}
|
|
}
|
|
</style>
|