mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
510 lines
11 KiB
Vue
510 lines
11 KiB
Vue
<template>
|
|
<div class="scenery-timetable">
|
|
<h3 class="timetable-header">
|
|
<span>{{ $t('scenery.timetables') }}</span>
|
|
|
|
<a :href="currentURL + '&timetable_only=1'" v-if="!timetableOnly" target="_blank" class="timetable-only">
|
|
<img :src="viewIcon" alt="icon-view" :title="$t('timetables.timetable-only')" />
|
|
</a>
|
|
</h3>
|
|
|
|
<div class="checkpoints" v-if="station && station.generalInfo?.checkpoints">
|
|
<button
|
|
v-for="cp in station.generalInfo.checkpoints"
|
|
:key="cp.checkpointName"
|
|
class="checkpoint_item btn btn--text"
|
|
:class="{ current: selectedCheckpoint === cp.checkpointName }"
|
|
@click="selectCheckpoint(cp)"
|
|
>
|
|
{{ cp.checkpointName }}
|
|
</button>
|
|
</div>
|
|
|
|
<span class="timetable-item loading" v-if="timetableDataStatus == 0 && computedScheduledTrains.length == 0">
|
|
{{ $t('app.loading') }}
|
|
</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="i + 1"
|
|
tabindex="0"
|
|
@click="navigateToTrain(scheduledTrain.trainNo)"
|
|
@keydown="
|
|
(e) => {
|
|
if (e.keyCode == 13) navigateToTrain(scheduledTrain.trainNo);
|
|
}
|
|
"
|
|
>
|
|
<span class="timetable-general">
|
|
<span class="general-info">
|
|
<span>
|
|
<strong>{{ scheduledTrain.category }}</strong>
|
|
{{ scheduledTrain.trainNo }}
|
|
</span>
|
|
|
|
|
<span style="color: white">
|
|
{{ scheduledTrain.driverName }}
|
|
</span>
|
|
|
|
<div class="info-route">
|
|
<strong>{{ scheduledTrain.beginsAt }} - {{ scheduledTrain.terminatesAt }}</strong>
|
|
</div>
|
|
</span>
|
|
|
|
<span class="general-status">
|
|
<span :class="scheduledTrain.stopStatus">{{ $t(`timetables.${scheduledTrain.stopStatus}`) }} </span>
|
|
</span>
|
|
</span>
|
|
|
|
<span class="timetable-schedule">
|
|
<span class="schedule-arrival">
|
|
<span
|
|
class="arrival-time begins"
|
|
v-if="scheduledTrain.stopInfo.beginsHere"
|
|
v-html="$t('timetables.begins')"
|
|
>
|
|
</span>
|
|
<span class="arrival-time" v-else>
|
|
{{ scheduledTrain.stopInfo.arrivalTimeString }} ({{ scheduledTrain.stopInfo.arrivalDelay }})
|
|
</span>
|
|
</span>
|
|
|
|
<span class="schedule-stop">
|
|
<span class="stop-time" v-if="scheduledTrain.stopInfo.stopTime">
|
|
{{ scheduledTrain.stopInfo.stopTime }}
|
|
{{ scheduledTrain.stopInfo.stopType }}
|
|
</span>
|
|
<span class="stop-arrow arrow"></span>
|
|
</span>
|
|
<span class="schedule-departure">
|
|
<span
|
|
class="departure-time terminates"
|
|
v-if="scheduledTrain.stopInfo.terminatesHere"
|
|
v-html="$t('timetables.terminates')"
|
|
>
|
|
</span>
|
|
<span class="departure-time" v-else>
|
|
{{ scheduledTrain.stopInfo.departureTimeString }} ({{ scheduledTrain.stopInfo.departureDelay }})
|
|
</span>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</transition-group>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Station from '@/scripts/interfaces/Station';
|
|
import SelectBox from '../Global/SelectBox.vue';
|
|
import { computed, defineComponent, ref } from '@vue/runtime-core';
|
|
import { useRoute } from 'vue-router';
|
|
import { useStore } from '@/store';
|
|
import { GETTERS } from '@/constants/storeConstants';
|
|
import { DataStatus } from '@/scripts/enums/DataStatus';
|
|
import { ComputedRef } from 'vue';
|
|
|
|
export default defineComponent({
|
|
components: { SelectBox },
|
|
|
|
props: {
|
|
station: {
|
|
type: Object as () => Station,
|
|
},
|
|
timetableOnly: {
|
|
type: Boolean,
|
|
},
|
|
},
|
|
|
|
data: () => ({
|
|
viewIcon: require('@/assets/icon-view.svg'),
|
|
listOpen: false,
|
|
}),
|
|
|
|
setup(props) {
|
|
const route = useRoute();
|
|
const currentURL = computed(() => `${location.origin}${route.fullPath}`);
|
|
|
|
const store = useStore();
|
|
|
|
const timetableDataStatus = computed(() => store.getters[GETTERS.timetableDataStatus]) as ComputedRef<DataStatus>;
|
|
|
|
const selectedCheckpoint = ref('');
|
|
|
|
const computedScheduledTrains = computed(() => {
|
|
if (!props.station) return [];
|
|
|
|
let scheduledTrains =
|
|
props.station.generalInfo?.checkpoints.find((cp) => cp.checkpointName === selectedCheckpoint.value)
|
|
?.scheduledTrains ||
|
|
props.station.onlineInfo?.scheduledTrains ||
|
|
[];
|
|
|
|
return (
|
|
scheduledTrains?.sort((a, b) => {
|
|
if (a.stopStatusID > b.stopStatusID) return 1;
|
|
else if (a.stopStatusID < b.stopStatusID) return -1;
|
|
|
|
if (a.stopInfo.arrivalTimestamp > b.stopInfo.arrivalTimestamp) return 1;
|
|
else if (a.stopInfo.arrivalTimestamp < b.stopInfo.arrivalTimestamp) return -1;
|
|
|
|
return a.stopInfo.departureTimestamp > b.stopInfo.departureTimestamp ? 1 : -1;
|
|
}) || []
|
|
);
|
|
});
|
|
|
|
return {
|
|
currentURL,
|
|
selectedCheckpoint,
|
|
computedScheduledTrains,
|
|
timetableDataStatus,
|
|
};
|
|
},
|
|
|
|
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;
|
|
},
|
|
|
|
navigateToTrain(trainNo: number) {
|
|
this.$router.push({
|
|
name: 'TrainsView',
|
|
query: { train: trainNo.toString() },
|
|
});
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
this.loadSelectedOption();
|
|
},
|
|
|
|
activated() {
|
|
this.loadSelectedOption();
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../styles/responsive.scss';
|
|
@import '../../styles/variables.scss';
|
|
|
|
h3 {
|
|
margin: 0.5em 0;
|
|
padding: 0.3em;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.timetable-only {
|
|
margin-left: 0.5em;
|
|
|
|
img {
|
|
width: 1.1em;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 1px solid white;
|
|
}
|
|
}
|
|
|
|
.list-anim {
|
|
&-enter-active,
|
|
&-leave-active {
|
|
transition: all 250ms ease-out;
|
|
}
|
|
|
|
&-enter,
|
|
&-leave-to {
|
|
opacity: 0;
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
&-move {
|
|
transition: transform 100ms;
|
|
}
|
|
}
|
|
|
|
.select-box {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.option {
|
|
&-container {
|
|
position: relative;
|
|
|
|
input {
|
|
display: none;
|
|
}
|
|
|
|
label {
|
|
padding: 0.5em 0.35em;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
&:hover {
|
|
background-color: rgba(#868686, 0.85);
|
|
}
|
|
|
|
transition: background 150ms ease-in;
|
|
}
|
|
|
|
&-selected,
|
|
&-list {
|
|
background: #444;
|
|
border-radius: 0.5em;
|
|
}
|
|
|
|
&-selected {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
padding: 0.35em 0.7em;
|
|
min-width: 10em;
|
|
cursor: pointer;
|
|
|
|
span {
|
|
margin-right: 2em;
|
|
}
|
|
|
|
img {
|
|
max-width: 0.75em;
|
|
}
|
|
}
|
|
|
|
&-list {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 10;
|
|
|
|
background-color: rgba(#222, 0.95);
|
|
overflow: hidden;
|
|
|
|
max-height: 0;
|
|
|
|
&.open {
|
|
max-height: 250px;
|
|
opacity: 1;
|
|
}
|
|
|
|
transition: all 150ms ease-in;
|
|
}
|
|
}
|
|
|
|
.timetable {
|
|
&-header {
|
|
a {
|
|
display: flex;
|
|
}
|
|
|
|
img {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
&-item {
|
|
margin: 1em auto;
|
|
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
|
|
gap: 0 0.5em;
|
|
|
|
padding: 0 0.35em;
|
|
|
|
background: $bgLigtherCol;
|
|
|
|
cursor: pointer;
|
|
|
|
@include smallScreen() {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&.loading,
|
|
&.empty {
|
|
padding: 1rem;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
&.empty {
|
|
color: #bbb;
|
|
}
|
|
}
|
|
|
|
&-general {
|
|
padding: 0.5rem 0.3rem;
|
|
border-radius: 10px;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
text-align: left;
|
|
|
|
overflow: hidden;
|
|
|
|
@include smallScreen() {
|
|
width: 95%;
|
|
font-size: 1.3em;
|
|
}
|
|
}
|
|
|
|
&-schedule {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
|
|
font-size: 1.3em;
|
|
|
|
@include smallScreen() {
|
|
width: 100%;
|
|
margin: 0.5em 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.checkpoints {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-size: 1.2em;
|
|
|
|
> .checkpoint_item {
|
|
&.current {
|
|
font-weight: bold;
|
|
color: $accentCol;
|
|
}
|
|
|
|
&:not(:last-child)::after {
|
|
margin: 0 0.5em;
|
|
content: '•';
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.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 {
|
|
span {
|
|
color: $accentCol;
|
|
}
|
|
|
|
.info-route {
|
|
margin-top: 0.5em;
|
|
}
|
|
}
|
|
|
|
.general-status {
|
|
span.arriving {
|
|
color: #aaa;
|
|
}
|
|
|
|
span.departed {
|
|
color: lime;
|
|
font-weight: bold;
|
|
|
|
&-away {
|
|
font-weight: bold;
|
|
color: rgb(0, 155, 0);
|
|
}
|
|
}
|
|
|
|
span.stopped {
|
|
color: #ffa600;
|
|
font-weight: bold;
|
|
}
|
|
|
|
span.online {
|
|
color: gold;
|
|
}
|
|
|
|
span.terminated {
|
|
color: #e00000;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.schedule {
|
|
&-arrival,
|
|
&-stop,
|
|
&-departure {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
margin: 0 0.3rem;
|
|
}
|
|
|
|
&-stop {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.stop-time {
|
|
font-size: 0.7em;
|
|
margin: 5px 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.arrival-time.begins,
|
|
.departure-time.terminates {
|
|
font-size: 0.75em;
|
|
}
|
|
</style>
|