mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
512 lines
13 KiB
Vue
512 lines
13 KiB
Vue
<template>
|
|
<section class="scenery-timetable">
|
|
<div class="timetable-header">
|
|
<h3>
|
|
<img :src="getIcon('timetable')" alt="icon-timetable" />
|
|
<span>{{ $t('scenery.timetables') }}</span>
|
|
|
|
<span>
|
|
<span class="text--primary">{{ station.onlineInfo?.scheduledTrains?.length || '0' }}</span>
|
|
<span> / </span>
|
|
<span class="text--grayed">
|
|
{{ station.onlineInfo?.scheduledTrains?.filter((train) => train.stopInfo.confirmed).length || '0' }}
|
|
</span>
|
|
</span>
|
|
|
|
<span class="header_links">
|
|
<a
|
|
:href="`https://pragotron-td2.web.app/board?name=${station.name}`"
|
|
target="_blank"
|
|
:title="$t('scenery.pragotron-link')"
|
|
>
|
|
<img :src="getIcon('pragotron')" alt="icon-pragotron" />
|
|
</a>
|
|
|
|
<a
|
|
:href="`https://tablice-td2.web.app/?station=${station.name}`"
|
|
target="_blank"
|
|
:title="$t('scenery.tablice-link')"
|
|
>
|
|
<img :src="getIcon('tablice', 'ico')" alt="icon-tablice" />
|
|
</a>
|
|
</span>
|
|
</h3>
|
|
|
|
<div class="timetable-checkpoints" v-if="station?.generalInfo?.checkpoints">
|
|
<span v-for="(cp, i) in station.generalInfo.checkpoints" :key="i">
|
|
{{ (i > 0 && '•') || '' }}
|
|
|
|
<button
|
|
:key="cp.checkpointName"
|
|
class="checkpoint_item"
|
|
:class="{ current: selectedCheckpoint === cp.checkpointName }"
|
|
@click="selectCheckpoint(cp)"
|
|
>
|
|
{{ cp.checkpointName }}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timetable-list">
|
|
<div style="padding-bottom: 5em" v-if="store.dataStatuses.trains == 0 && computedScheduledTrains.length == 0">
|
|
<Loading />
|
|
</div>
|
|
|
|
<span class="timetable-item empty" v-else-if="computedScheduledTrains.length == 0 && !station.onlineInfo">
|
|
{{ $t('scenery.offline') }}
|
|
</span>
|
|
|
|
<span class="timetable-item empty" v-else-if="computedScheduledTrains.length == 0">
|
|
{{ $t('scenery.no-timetables') }}
|
|
</span>
|
|
|
|
<transition-group name="list-anim">
|
|
<div
|
|
class="timetable-item"
|
|
v-for="(scheduledTrain, i) in computedScheduledTrains"
|
|
:key="scheduledTrain.trainId"
|
|
tabindex="0"
|
|
@click.prevent.stop="selectModalTrain(scheduledTrain.trainId)"
|
|
@keydown.enter.prevent="selectModalTrain(scheduledTrain.trainId)"
|
|
>
|
|
<span class="timetable-general">
|
|
<span class="general-info">
|
|
<span class="info-number">
|
|
<strong>{{ scheduledTrain.category }}</strong>
|
|
{{ scheduledTrain.trainNo }}
|
|
|
|
<span class="g-tooltip" v-if="scheduledTrain.stopInfo.comments">
|
|
<img :src="getIcon('warning')" />
|
|
<span class="content" v-html="scheduledTrain.stopInfo.comments"> </span>
|
|
</span>
|
|
</span>
|
|
|
|
|
<span>
|
|
{{ scheduledTrain.driverName }}
|
|
</span>
|
|
|
|
<div class="info-route">
|
|
<strong>{{ scheduledTrain.beginsAt }} - {{ scheduledTrain.terminatesAt }}</strong>
|
|
</div>
|
|
|
|
<ScheduledTrainStatus :scheduledTrain="scheduledTrain" />
|
|
</span>
|
|
</span>
|
|
|
|
<span class="timetable-schedule">
|
|
<span class="schedule-arrival">
|
|
<span class="arrival-time begins" v-if="scheduledTrain.stopInfo.beginsHere">
|
|
{{ $t('timetables.begins') }}
|
|
</span>
|
|
|
|
<span class="arrival-time" v-else>
|
|
<div v-if="scheduledTrain.stopInfo.arrivalDelay == 0">
|
|
<span>{{ timestampToString(scheduledTrain.stopInfo.arrivalTimestamp) }}</span>
|
|
</div>
|
|
<div v-else>
|
|
<div>
|
|
<s style="margin-right: 0.2em" class="text--grayed">{{
|
|
timestampToString(scheduledTrain.stopInfo.arrivalTimestamp)
|
|
}}</s>
|
|
</div>
|
|
|
|
<span>
|
|
{{ timestampToString(scheduledTrain.stopInfo.arrivalRealTimestamp) }}
|
|
({{ scheduledTrain.stopInfo.arrivalDelay > 0 ? '+' : ''
|
|
}}{{ scheduledTrain.stopInfo.arrivalDelay }})
|
|
</span>
|
|
</div>
|
|
</span>
|
|
</span>
|
|
|
|
<span class="schedule-stop">
|
|
<span class="stop-time">
|
|
<span v-if="scheduledTrain.stopInfo.stopTime">
|
|
{{ scheduledTrain.stopInfo.stopTime }}
|
|
{{ scheduledTrain.stopInfo.stopType || 'pt' }}
|
|
</span>
|
|
|
|
<span v-else> </span>
|
|
</span>
|
|
|
|
<span class="arrow"></span>
|
|
|
|
<span class="stop-line">
|
|
<span>
|
|
{{ scheduledTrain.arrivingLine }}
|
|
</span>
|
|
<span></span>
|
|
<span>
|
|
{{ scheduledTrain.departureLine }}
|
|
</span>
|
|
</span>
|
|
</span>
|
|
|
|
<span class="schedule-departure">
|
|
<span class="departure-time terminates" v-if="scheduledTrain.stopInfo.terminatesHere">
|
|
{{ $t('timetables.terminates') }}
|
|
</span>
|
|
|
|
<span class="departure-time" v-else>
|
|
<div v-if="scheduledTrain.stopInfo.departureDelay == 0">
|
|
<span>{{ timestampToString(scheduledTrain.stopInfo.departureTimestamp) }}</span>
|
|
</div>
|
|
<div v-else>
|
|
<div>
|
|
<s style="margin-right: 0.2em" class="text--grayed">{{
|
|
timestampToString(scheduledTrain.stopInfo.departureTimestamp)
|
|
}}</s>
|
|
</div>
|
|
|
|
<span>
|
|
{{ timestampToString(scheduledTrain.stopInfo.departureRealTimestamp) }}
|
|
({{ scheduledTrain.stopInfo.departureDelay > 0 ? '+' : ''
|
|
}}{{ scheduledTrain.stopInfo.departureDelay }})
|
|
</span>
|
|
</div>
|
|
</span>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</transition-group>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import SelectBox from '../Global/SelectBox.vue';
|
|
import { computed, defineComponent, PropType, ref } from '@vue/runtime-core';
|
|
import { useRoute } from 'vue-router';
|
|
|
|
import Loading from '../Global/Loading.vue';
|
|
import TrainModal from '../Global/TrainModal.vue';
|
|
import dateMixin from '../../mixins/dateMixin';
|
|
import routerMixin from '../../mixins/routerMixin';
|
|
import Station from '../../scripts/interfaces/Station';
|
|
import { useStore } from '../../store/store';
|
|
import imageMixin from '../../mixins/imageMixin';
|
|
import modalTrainMixin from '../../mixins/modalTrainMixin';
|
|
import ScheduledTrainStatus from './ScheduledTrainStatus.vue';
|
|
|
|
export default defineComponent({
|
|
name: 'SceneryTimetable',
|
|
|
|
components: { SelectBox, Loading, TrainModal, ScheduledTrainStatus },
|
|
|
|
mixins: [dateMixin, routerMixin, imageMixin, modalTrainMixin],
|
|
|
|
props: {
|
|
station: {
|
|
type: Object as PropType<Station>,
|
|
required: true,
|
|
},
|
|
|
|
timetableOnly: {
|
|
type: Boolean,
|
|
},
|
|
},
|
|
|
|
data: () => ({
|
|
listOpen: false,
|
|
}),
|
|
|
|
setup(props) {
|
|
const route = useRoute();
|
|
const currentURL = computed(() => `${location.origin}${route.fullPath}`);
|
|
|
|
const store = useStore();
|
|
|
|
const selectedCheckpoint = ref(
|
|
props.station?.generalInfo?.checkpoints?.length == 0
|
|
? ''
|
|
: props.station?.generalInfo?.checkpoints[0].checkpointName || ''
|
|
);
|
|
|
|
const computedScheduledTrains = computed(() => {
|
|
if (!props.station) return [];
|
|
|
|
const station = props.station as Station;
|
|
|
|
let scheduledTrains =
|
|
station.generalInfo?.checkpoints.find((cp) => cp.checkpointName === selectedCheckpoint.value)
|
|
?.scheduledTrains ||
|
|
station.onlineInfo?.scheduledTrains ||
|
|
[];
|
|
|
|
if (!scheduledTrains) return [];
|
|
|
|
return (
|
|
scheduledTrains.sort((a, b) => {
|
|
if (a.stopStatusID > b.stopStatusID) return 1;
|
|
if (a.stopStatusID < b.stopStatusID) return -1;
|
|
|
|
if (a.stopInfo.arrivalTimestamp > b.stopInfo.arrivalTimestamp) return 1;
|
|
if (a.stopInfo.arrivalTimestamp < b.stopInfo.arrivalTimestamp) return -1;
|
|
|
|
return a.stopInfo.departureTimestamp > b.stopInfo.departureTimestamp ? 1 : -1;
|
|
}) || []
|
|
);
|
|
});
|
|
|
|
return {
|
|
currentURL,
|
|
selectedCheckpoint,
|
|
computedScheduledTrains,
|
|
store,
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
loadSelectedOption() {
|
|
if (!this.station) return;
|
|
if (!this.station.generalInfo) return;
|
|
if (!this.station.generalInfo.checkpoints) return;
|
|
if (this.station.generalInfo.checkpoints.length == 0) return;
|
|
|
|
if (this.selectedCheckpoint != '') return;
|
|
|
|
this.selectedCheckpoint = this.station.generalInfo.checkpoints[0].checkpointName;
|
|
},
|
|
|
|
selectCheckpoint(cp: { checkpointName: string }) {
|
|
this.selectedCheckpoint = cp.checkpointName;
|
|
},
|
|
|
|
showTimetableOnlyView() {
|
|
this.$router.push(`${this.$route.fullPath}&timetableOnly=1`);
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
this.loadSelectedOption();
|
|
},
|
|
|
|
activated() {
|
|
this.loadSelectedOption();
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../styles/responsive.scss';
|
|
@import '../../styles/variables.scss';
|
|
@import '../../styles/animations.scss';
|
|
|
|
.scenery-timetable {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
.timetable-header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 99;
|
|
|
|
background-color: #181818;
|
|
|
|
padding: 0.5em;
|
|
|
|
img {
|
|
width: 25px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
h3 {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
|
|
gap: 0.5em;
|
|
font-size: 1.3em;
|
|
}
|
|
}
|
|
|
|
.header_links {
|
|
display: flex;
|
|
gap: 0.5em;
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
.timetable {
|
|
&-count {
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
&-item {
|
|
margin: 0.5em auto;
|
|
padding: 0.5em;
|
|
max-width: 1100px;
|
|
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 2em 0.5em;
|
|
|
|
overflow: hidden;
|
|
|
|
background: #353535;
|
|
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
|
|
&.empty {
|
|
padding: 1rem;
|
|
font-size: 1.2em;
|
|
color: #bbb;
|
|
}
|
|
}
|
|
|
|
&-general {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
text-align: left;
|
|
}
|
|
|
|
&-schedule {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
|
|
|
|
width: 100%;
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
.timetable-list {
|
|
position: relative;
|
|
}
|
|
|
|
.timetable-checkpoints {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
font-size: 1.1em;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
button.checkpoint_item {
|
|
color: #aaa;
|
|
display: inline;
|
|
}
|
|
|
|
.checkpoint_item.current {
|
|
font-weight: bold;
|
|
color: $accentCol;
|
|
}
|
|
}
|
|
|
|
.arrow {
|
|
border: solid white;
|
|
border-width: 0 2px 2px 0;
|
|
display: inline-block;
|
|
padding: 2px;
|
|
margin-left: 50px;
|
|
|
|
position: relative;
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
display: block;
|
|
width: 55px;
|
|
height: 3px;
|
|
top: 4px;
|
|
left: 4px;
|
|
|
|
transform: translate(-100%, -1px) rotate(45deg);
|
|
transform-origin: right bottom;
|
|
|
|
background: white;
|
|
}
|
|
}
|
|
|
|
.general-info {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.info-number {
|
|
color: $accentCol;
|
|
}
|
|
|
|
.info-route {
|
|
width: 100%;
|
|
}
|
|
|
|
.g-tooltip > .content {
|
|
z-index: 100;
|
|
color: white;
|
|
|
|
left: 110%;
|
|
}
|
|
|
|
img {
|
|
width: 1.1em;
|
|
}
|
|
}
|
|
|
|
.schedule {
|
|
&-arrival,
|
|
&-stop,
|
|
&-departure {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
margin: 0 0.3rem;
|
|
font-size: 1.15em;
|
|
}
|
|
|
|
&-stop {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 0.9em;
|
|
|
|
padding: 0.3em 0;
|
|
|
|
.stop-line {
|
|
display: flex;
|
|
position: absolute;
|
|
|
|
span {
|
|
width: 65px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
span:first-child {
|
|
text-align: right;
|
|
}
|
|
|
|
span:last-child {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
.stop-time {
|
|
position: absolute;
|
|
transform: translateY(-15px);
|
|
|
|
color: $accentCol;
|
|
}
|
|
}
|
|
}
|
|
|
|
.arrival-time.begins,
|
|
.departure-time.terminates {
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
@include smallScreen {
|
|
.timetable-item {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|