mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-02 21:08:12 +00:00
refactor: scenery view code organization in separate components with minor fixes
This commit is contained in:
@@ -1,247 +1,16 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="scenery-timetable">
|
<section class="scenery-timetable">
|
||||||
<div class="timetable-header">
|
<SceneryTimetableHeader
|
||||||
<h3>
|
:station="station"
|
||||||
<img src="/images/icon-timetable.svg" alt="icon-timetable" />
|
:onlineScenery="onlineScenery"
|
||||||
<span>{{ $t('scenery.timetables') }}</span>
|
:chosenCheckpoint="chosenCheckpoint"
|
||||||
|
/>
|
||||||
|
|
||||||
<span>
|
<SceneryTimetableList
|
||||||
<span class="text--primary">{{ onlineScenery?.scheduledTrainCount.all ?? 0 }}</span>
|
:station="station"
|
||||||
<span> / </span>
|
:onlineScenery="onlineScenery"
|
||||||
<span class="text--grayed">
|
:chosenCheckpoint="chosenCheckpoint"
|
||||||
{{ onlineScenery?.scheduledTrainCount.confirmed ?? 0 }}
|
/>
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="header_links" v-if="station && onlineScenery">
|
|
||||||
<a
|
|
||||||
:href="generatorHref"
|
|
||||||
target="_blank"
|
|
||||||
data-tooltip-type="HtmlTooltip"
|
|
||||||
:data-tooltip-content="`<b>${$t('scenery.gnr-link')}</b>`"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-gnr.svg" alt="GeneraTOR app icon" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a
|
|
||||||
:href="pragotronHref"
|
|
||||||
target="_blank"
|
|
||||||
data-tooltip-type="HtmlTooltip"
|
|
||||||
:data-tooltip-content="`<b>${$t('scenery.pragotron-link')}</b>`"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-pragotron.svg" alt="icon-pragotron" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a
|
|
||||||
:href="tabliceZbiorczeHref"
|
|
||||||
target="_blank"
|
|
||||||
data-tooltip-type="HtmlTooltip"
|
|
||||||
:data-tooltip-content="`<b>${$t('scenery.tablice-link')}</b>`"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-tablice.ico" alt="icon-tablice" />
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</h3>
|
|
||||||
|
|
||||||
<div class="timetable-checkpoints" v-if="station?.generalInfo?.checkpoints">
|
|
||||||
<template v-for="(ch, i) in station.generalInfo.checkpoints" :key="i">
|
|
||||||
<template v-if="i > 0">•</template>
|
|
||||||
<router-link
|
|
||||||
class="checkpoint-item"
|
|
||||||
:class="{ current: chosenCheckpoint === ch }"
|
|
||||||
:to="`/scenery?station=${station.name}&checkpoint=${ch}`"
|
|
||||||
>{{ ch }}</router-link
|
|
||||||
>
|
|
||||||
</template>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="timetable-checkpoints" v-else-if="onlineScenery">
|
|
||||||
<template v-for="(ch, i) in onlineScenery.missingCheckpoints" :key="i">
|
|
||||||
<template v-if="i > 0">•</template>
|
|
||||||
<router-link
|
|
||||||
class="checkpoint-item"
|
|
||||||
:class="{ current: chosenCheckpoint === ch }"
|
|
||||||
:to="`/scenery?station=${onlineScenery.name}&checkpoint=${ch}`"
|
|
||||||
>{{ ch }}</router-link
|
|
||||||
>
|
|
||||||
</template>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="timetable-list">
|
|
||||||
<transition-group name="list-anim">
|
|
||||||
<div
|
|
||||||
v-if="apiStore.dataStatuses.connection == 0 && sceneryTimetables.length == 0"
|
|
||||||
style="padding-bottom: 5em"
|
|
||||||
key="list-loading"
|
|
||||||
>
|
|
||||||
<Loading />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span
|
|
||||||
class="timetable-item empty"
|
|
||||||
v-else-if="sceneryTimetables.length == 0 && !onlineScenery"
|
|
||||||
key="list-offline"
|
|
||||||
>
|
|
||||||
{{ $t('scenery.offline') }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="timetable-item empty"
|
|
||||||
v-else-if="sceneryTimetables.length == 0"
|
|
||||||
key="list-no-timetables"
|
|
||||||
>
|
|
||||||
{{ $t('scenery.no-timetables') }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<router-link
|
|
||||||
class="timetable-item"
|
|
||||||
v-else
|
|
||||||
v-for="(row, i) in sceneryTimetables"
|
|
||||||
:key="row.train.id + i"
|
|
||||||
tabindex="0"
|
|
||||||
:to="row.train.driverRouteLocation"
|
|
||||||
>
|
|
||||||
<span class="timetable-general">
|
|
||||||
<span class="general-info">
|
|
||||||
<div class="info-train">
|
|
||||||
<!-- Cargo warnings & details badges -->
|
|
||||||
<span
|
|
||||||
class="train-badge twr"
|
|
||||||
v-if="row.train.timetableData!.twr"
|
|
||||||
data-tooltip-type="BaseTooltip"
|
|
||||||
:data-tooltip-content="$t('warnings.TWR')"
|
|
||||||
>
|
|
||||||
TWR
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span
|
|
||||||
class="train-badge tn"
|
|
||||||
v-if="row.train.timetableData!.hasDangerousCargo"
|
|
||||||
data-tooltip-type="BaseTooltip"
|
|
||||||
:data-tooltip-content="$t('warnings.TN')"
|
|
||||||
>
|
|
||||||
TN
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span
|
|
||||||
class="train-badge pn"
|
|
||||||
v-if="row.train.timetableData!.hasExtraDeliveries"
|
|
||||||
data-tooltip-type="BaseTooltip"
|
|
||||||
:data-tooltip-content="$t('warnings.PN')"
|
|
||||||
>
|
|
||||||
PN
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<!-- Train info -->
|
|
||||||
<span
|
|
||||||
data-tooltip-type="TrainInfoTooltip"
|
|
||||||
:data-tooltip-content="row.train.id"
|
|
||||||
class="tooltip-help"
|
|
||||||
>
|
|
||||||
<b class="text--primary">
|
|
||||||
{{ row.train.timetableData!.category }}
|
|
||||||
</b>
|
|
||||||
|
|
||||||
<b> {{ row.train.trainNo }}</b>
|
|
||||||
•
|
|
||||||
{{ row.train.driverName }}
|
|
||||||
|
|
||||||
<i
|
|
||||||
class="fa-solid fa-user-slash"
|
|
||||||
style="color: salmon"
|
|
||||||
v-if="!row.train.online && row.train.lastSeen <= Date.now() - 60000"
|
|
||||||
></i>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<!-- Train stop comments -->
|
|
||||||
<span
|
|
||||||
v-if="row.checkpointStop.comments"
|
|
||||||
class="stop-comments-icon"
|
|
||||||
data-tooltip-type="BaseTooltip"
|
|
||||||
:data-tooltip-content="row.checkpointStop.comments"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-warning.svg" />
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="info-route">
|
|
||||||
<strong>{{ row.train.timetableData!.route.replace('|', ' - ') }}</strong>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ScheduledTrainStatus :sceneryTimetableRow="row" />
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="timetable-schedule">
|
|
||||||
<span class="schedule-arrival">
|
|
||||||
<span class="arrival-time begins" v-if="row.checkpointStop.beginsHere">
|
|
||||||
{{ $t('timetables.begins') }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="arrival-time" v-else>
|
|
||||||
<div v-if="row.checkpointStop.arrivalDelay == 0">
|
|
||||||
<span>{{ timestampToString(row.checkpointStop.arrivalTimestamp) }}</span>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<div>
|
|
||||||
<s style="margin-right: 0.2em" class="text--grayed">{{
|
|
||||||
timestampToString(row.checkpointStop.arrivalTimestamp)
|
|
||||||
}}</s>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span>
|
|
||||||
{{ timestampToString(row.checkpointStop.arrivalRealTimestamp) }}
|
|
||||||
({{ row.checkpointStop.arrivalDelay > 0 ? '+' : ''
|
|
||||||
}}{{ row.checkpointStop.arrivalDelay }})
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="schedule-stop">
|
|
||||||
<span class="stop-connection">
|
|
||||||
{{ row.currentElement.arrivalRouteExt }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="stop-time">
|
|
||||||
{{ row.checkpointStop.stopTime || '' }}
|
|
||||||
{{ row.checkpointStop.stopTime ? row.checkpointStop.stopType || 'pt' : '' }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="stop-connection">
|
|
||||||
{{ row.currentElement.departureRouteExt }}
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="schedule-departure">
|
|
||||||
<span class="departure-time terminates" v-if="row.checkpointStop.terminatesHere">
|
|
||||||
{{ $t('timetables.terminates') }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="departure-time" v-else>
|
|
||||||
<div v-if="row.checkpointStop.departureDelay == 0">
|
|
||||||
<span>{{ timestampToString(row.checkpointStop.departureTimestamp) }}</span>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<div>
|
|
||||||
<s style="margin-right: 0.2em" class="text--grayed">{{
|
|
||||||
timestampToString(row.checkpointStop.departureTimestamp)
|
|
||||||
}}</s>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span>
|
|
||||||
{{ timestampToString(row.checkpointStop.departureRealTimestamp) }}
|
|
||||||
({{ row.checkpointStop.departureDelay > 0 ? '+' : ''
|
|
||||||
}}{{ row.checkpointStop.departureDelay }})
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
</router-link>
|
|
||||||
</transition-group>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -249,21 +18,20 @@
|
|||||||
import { computed, defineComponent, PropType, ref } from 'vue';
|
import { computed, defineComponent, PropType, ref } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
import Loading from '../Global/Loading.vue';
|
import SceneryTimetableHeader from './SceneryTimetable/SceneryTimetableHeader.vue';
|
||||||
|
|
||||||
import dateMixin from '../../mixins/dateMixin';
|
import dateMixin from '../../mixins/dateMixin';
|
||||||
import routerMixin from '../../mixins/routerMixin';
|
import routerMixin from '../../mixins/routerMixin';
|
||||||
import trainCategoryMixin from '../../mixins/trainCategoryMixin';
|
import trainCategoryMixin from '../../mixins/trainCategoryMixin';
|
||||||
import { useMainStore } from '../../store/mainStore';
|
import { useMainStore } from '../../store/mainStore';
|
||||||
import { useApiStore } from '../../store/apiStore';
|
import { useApiStore } from '../../store/apiStore';
|
||||||
import ScheduledTrainStatus from './ScheduledTrainStatus.vue';
|
import { ActiveScenery, Station } from '../../typings/common';
|
||||||
import { SceneryTimetableRow } from './typings';
|
import SceneryTimetableList from './SceneryTimetable/SceneryTimetableList.vue';
|
||||||
import { ActiveScenery, Station, TooltipTrainInfo, Train } from '../../typings/common';
|
|
||||||
import { getTrainStopStatus, stopStatusPriority } from './utils';
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'SceneryTimetable',
|
name: 'SceneryTimetable',
|
||||||
|
|
||||||
components: { Loading, ScheduledTrainStatus },
|
components: { SceneryTimetableHeader, SceneryTimetableList },
|
||||||
|
|
||||||
mixins: [dateMixin, routerMixin, trainCategoryMixin],
|
mixins: [dateMixin, routerMixin, trainCategoryMixin],
|
||||||
|
|
||||||
@@ -313,69 +81,6 @@ export default defineComponent({
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
tabliceZbiorczeHref() {
|
|
||||||
let url = `https://tablice-td2.web.app/?station=${this.station!.name}`;
|
|
||||||
if (this.chosenCheckpoint) url += `&checkpoint=${this.chosenCheckpoint}`;
|
|
||||||
|
|
||||||
return url;
|
|
||||||
},
|
|
||||||
|
|
||||||
pragotronHref() {
|
|
||||||
let url = `https://pragotron-td2.web.app/board?name=${this.station!.name}®ion=${this.mainStore.region.id}`;
|
|
||||||
if (this.chosenCheckpoint) url += `&checkpoint=${this.chosenCheckpoint}`;
|
|
||||||
|
|
||||||
return url;
|
|
||||||
},
|
|
||||||
|
|
||||||
generatorHref() {
|
|
||||||
return `https://generator-td2.web.app/?sceneryId=${this.onlineScenery!.name}|${this.onlineScenery!.region}`;
|
|
||||||
},
|
|
||||||
|
|
||||||
sceneryTimetables(): SceneryTimetableRow[] {
|
|
||||||
if (!this.onlineScenery) return [];
|
|
||||||
|
|
||||||
const sceneryName = this.$route.query['station']?.toString().replace(/_/g, ' ') ?? '';
|
|
||||||
|
|
||||||
return this.onlineScenery.scheduledTrains
|
|
||||||
.filter(
|
|
||||||
(ct) =>
|
|
||||||
// ct.timetablePathElement.stationName == sceneryName &&
|
|
||||||
ct.train.region == this.mainStore.region.id &&
|
|
||||||
this.chosenCheckpoint &&
|
|
||||||
ct.checkpointStop.stopNameRAW.toLowerCase() == this.chosenCheckpoint.toLowerCase()
|
|
||||||
)
|
|
||||||
.map((ct) => {
|
|
||||||
const trainStopStatus = getTrainStopStatus(
|
|
||||||
ct.checkpointStop,
|
|
||||||
ct.train.currentStationName,
|
|
||||||
sceneryName
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
|
||||||
checkpointStop: ct.checkpointStop,
|
|
||||||
train: ct.train,
|
|
||||||
prevElement: ct.previousSceneryElement,
|
|
||||||
nextElement: ct.nextSceneryElement,
|
|
||||||
currentElement: ct.timetablePathElement,
|
|
||||||
status: trainStopStatus
|
|
||||||
};
|
|
||||||
})
|
|
||||||
.sort((a, b) => {
|
|
||||||
if (stopStatusPriority.indexOf(a.status) - stopStatusPriority.indexOf(b.status) < 0)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (stopStatusPriority.indexOf(a.status) - stopStatusPriority.indexOf(b.status) > 0)
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
if (a.checkpointStop.arrivalTimestamp > b.checkpointStop.arrivalTimestamp) return 1;
|
|
||||||
if (a.checkpointStop.arrivalTimestamp < b.checkpointStop.arrivalTimestamp) return -1;
|
|
||||||
|
|
||||||
return a.checkpointStop.departureTimestamp > b.checkpointStop.departureTimestamp ? 1 : -1;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
loadSelectedOption() {
|
loadSelectedOption() {
|
||||||
const queryCheckpoint = this.$route.query['checkpoint']?.toString();
|
const queryCheckpoint = this.$route.query['checkpoint']?.toString();
|
||||||
@@ -402,205 +107,17 @@ export default defineComponent({
|
|||||||
checkpointsListRef[0] ??
|
checkpointsListRef[0] ??
|
||||||
sceneryName;
|
sceneryName;
|
||||||
}
|
}
|
||||||
},
|
|
||||||
|
|
||||||
setCheckpoint(cp: string) {
|
|
||||||
this.chosenCheckpoint = cp;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@use '../../styles/responsive';
|
|
||||||
@use '../../styles/animations';
|
|
||||||
@use '../../styles/badge';
|
|
||||||
|
|
||||||
.scenery-timetable {
|
.scenery-timetable {
|
||||||
|
display: grid;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: scroll;
|
|
||||||
padding: 0 0.5em;
|
padding: 0 0.5em;
|
||||||
}
|
overflow: hidden;
|
||||||
|
grid-template-rows: auto 1fr;
|
||||||
.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.25em;
|
|
||||||
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(300px, 1fr));
|
|
||||||
gap: 1.2em 0.5em;
|
|
||||||
|
|
||||||
overflow: hidden;
|
|
||||||
|
|
||||||
background: #353535;
|
|
||||||
|
|
||||||
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(3, 1fr);
|
|
||||||
gap: 0.2em;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
width: 100%;
|
|
||||||
max-width: 400px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.timetable-checkpoints {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 0.5em;
|
|
||||||
|
|
||||||
flex-wrap: wrap;
|
|
||||||
font-size: 1.1em;
|
|
||||||
|
|
||||||
margin-top: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.checkpoint-item {
|
|
||||||
color: #aaa;
|
|
||||||
display: inline;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.current {
|
|
||||||
font-weight: bold;
|
|
||||||
color: var(--clr-primary);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.timetable-list {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.general-info {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-train {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
gap: 0.25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-train > .train-badge {
|
|
||||||
font-size: 0.85em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-number {
|
|
||||||
color: var(--clr-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-route {
|
|
||||||
width: 100%;
|
|
||||||
margin-top: 0.25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stop-comments-icon > img {
|
|
||||||
width: 1.3em;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.schedule {
|
|
||||||
&-arrival,
|
|
||||||
&-departure {
|
|
||||||
font-size: 1.15em;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-stop {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
gap: 0.5em;
|
|
||||||
align-items: end;
|
|
||||||
|
|
||||||
.stop-connection {
|
|
||||||
font-size: 0.95em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stop-time {
|
|
||||||
position: relative;
|
|
||||||
inline-size: max-content;
|
|
||||||
align-self: center;
|
|
||||||
font-size: 0.9em;
|
|
||||||
|
|
||||||
color: var(--clr-primary);
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: '\027F6';
|
|
||||||
display: block;
|
|
||||||
font-size: 2.2em;
|
|
||||||
line-height: 0.65em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.arrival-time.begins,
|
|
||||||
.departure-time.terminates {
|
|
||||||
font-size: 0.85em;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include responsive.smallScreen {
|
|
||||||
.timetable-item {
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -0,0 +1,114 @@
|
|||||||
|
<template>
|
||||||
|
<div class="scenery-timetable-header">
|
||||||
|
<h3>
|
||||||
|
<img src="/images/icon-timetable.svg" alt="icon-timetable" />
|
||||||
|
<span>{{ $t('scenery.timetables') }}</span>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
<span class="text--primary">{{ onlineScenery?.scheduledTrainCount.all ?? 0 }}</span>
|
||||||
|
<span> / </span>
|
||||||
|
<span class="text--grayed">
|
||||||
|
{{ onlineScenery?.scheduledTrainCount.confirmed ?? 0 }}
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="header-links" v-if="station && onlineScenery">
|
||||||
|
<a
|
||||||
|
:href="generatorHref"
|
||||||
|
target="_blank"
|
||||||
|
data-tooltip-type="HtmlTooltip"
|
||||||
|
:data-tooltip-content="`<b>${$t('scenery.gnr-link')}</b>`"
|
||||||
|
>
|
||||||
|
<img src="/images/icon-gnr.svg" alt="GeneraTOR app icon" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a
|
||||||
|
:href="pragotronHref"
|
||||||
|
target="_blank"
|
||||||
|
data-tooltip-type="HtmlTooltip"
|
||||||
|
:data-tooltip-content="`<b>${$t('scenery.pragotron-link')}</b>`"
|
||||||
|
>
|
||||||
|
<img src="/images/icon-pragotron.svg" alt="icon-pragotron" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a
|
||||||
|
:href="tabliceZbiorczeHref"
|
||||||
|
target="_blank"
|
||||||
|
data-tooltip-type="HtmlTooltip"
|
||||||
|
:data-tooltip-content="`<b>${$t('scenery.tablice-link')}</b>`"
|
||||||
|
>
|
||||||
|
<img src="/images/icon-tablice.ico" alt="icon-tablice" />
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { computed, PropType } from 'vue';
|
||||||
|
import { Station, ActiveScenery } from '../../../typings/common';
|
||||||
|
import { useMainStore } from '../../../store/mainStore';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
station: {
|
||||||
|
type: Object as PropType<Station>
|
||||||
|
},
|
||||||
|
|
||||||
|
onlineScenery: {
|
||||||
|
type: Object as PropType<ActiveScenery>
|
||||||
|
},
|
||||||
|
|
||||||
|
chosenCheckpoint: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const mainStore = useMainStore();
|
||||||
|
|
||||||
|
const tabliceZbiorczeHref = computed(() => {
|
||||||
|
let url = `https://tablice-td2.web.app/?station=${props.station!.name}`;
|
||||||
|
if (props.chosenCheckpoint) url += `&checkpoint=${props.chosenCheckpoint}`;
|
||||||
|
|
||||||
|
return url;
|
||||||
|
});
|
||||||
|
|
||||||
|
const pragotronHref = computed(() => {
|
||||||
|
let url = `https://pragotron-td2.web.app/board?name=${props.station!.name}®ion=${mainStore.region.id}`;
|
||||||
|
if (props.chosenCheckpoint) url += `&checkpoint=${props.chosenCheckpoint}`;
|
||||||
|
|
||||||
|
return url;
|
||||||
|
});
|
||||||
|
|
||||||
|
const generatorHref = computed(() => {
|
||||||
|
return `https://generator-td2.web.app/?sceneryId=${props.onlineScenery!.name}|${props.onlineScenery!.region}`;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.scenery-timetable-header {
|
||||||
|
background-color: #181818;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
gap: 0.5em;
|
||||||
|
font-size: 1.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 25px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-links {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.25em;
|
||||||
|
margin-left: 0.5em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,439 @@
|
|||||||
|
<template>
|
||||||
|
<div class="scenery-timetable-list">
|
||||||
|
<!-- Checkpoints derived from station data -->
|
||||||
|
<div class="timetable-checkpoints" v-if="station?.generalInfo?.checkpoints">
|
||||||
|
<template v-for="(ch, i) in station.generalInfo.checkpoints" :key="i">
|
||||||
|
<template v-if="i > 0">•</template>
|
||||||
|
<router-link
|
||||||
|
class="checkpoint-item"
|
||||||
|
:class="{ current: chosenCheckpoint === ch }"
|
||||||
|
:to="`/scenery?station=${station.name}&checkpoint=${ch}`"
|
||||||
|
>
|
||||||
|
{{ ch }}
|
||||||
|
</router-link>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Missing checkpoints if scenery is not in database -->
|
||||||
|
<div class="timetable-checkpoints" v-else-if="onlineScenery">
|
||||||
|
<template v-for="(ch, i) in onlineScenery.missingCheckpoints" :key="i">
|
||||||
|
<template v-if="i > 0">•</template>
|
||||||
|
<router-link
|
||||||
|
class="checkpoint-item"
|
||||||
|
:class="{ current: chosenCheckpoint === ch }"
|
||||||
|
:to="`/scenery?station=${onlineScenery.name}&checkpoint=${ch}`"
|
||||||
|
>
|
||||||
|
{{ ch }}
|
||||||
|
</router-link>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="list-container">
|
||||||
|
<transition-group name="list-anim" tag="ul">
|
||||||
|
<li
|
||||||
|
v-if="apiStore.dataStatuses.connection == 0 && sceneryTimetables.length == 0"
|
||||||
|
style="padding-bottom: 5em"
|
||||||
|
key="list-loading"
|
||||||
|
>
|
||||||
|
<Loading />
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li
|
||||||
|
class="timetable-item empty"
|
||||||
|
v-else-if="sceneryTimetables.length == 0 && !onlineScenery"
|
||||||
|
key="list-offline"
|
||||||
|
>
|
||||||
|
{{ $t('scenery.offline') }}
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li
|
||||||
|
class="timetable-item empty"
|
||||||
|
v-else-if="sceneryTimetables.length == 0"
|
||||||
|
key="list-no-timetables"
|
||||||
|
>
|
||||||
|
{{ $t('scenery.no-timetables') }}
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li
|
||||||
|
v-else
|
||||||
|
v-for="(row, i) in sceneryTimetables"
|
||||||
|
:key="row.train.id"
|
||||||
|
>
|
||||||
|
<!-- {{ row.train.id + row.checkpointStop.arrivalTimestamp.toString() }} -->
|
||||||
|
<router-link class="timetable-item-link" tabindex="0" :to="row.train.driverRouteLocation">
|
||||||
|
<span class="item-general">
|
||||||
|
<span class="general-info">
|
||||||
|
<div class="info-train">
|
||||||
|
<!-- Cargo warnings & details badges -->
|
||||||
|
<span
|
||||||
|
class="train-badge twr"
|
||||||
|
v-if="row.train.timetableData!.twr"
|
||||||
|
data-tooltip-type="BaseTooltip"
|
||||||
|
:data-tooltip-content="$t('warnings.TWR')"
|
||||||
|
>
|
||||||
|
TWR
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span
|
||||||
|
class="train-badge tn"
|
||||||
|
v-if="row.train.timetableData!.hasDangerousCargo"
|
||||||
|
data-tooltip-type="BaseTooltip"
|
||||||
|
:data-tooltip-content="$t('warnings.TN')"
|
||||||
|
>
|
||||||
|
TN
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span
|
||||||
|
class="train-badge pn"
|
||||||
|
v-if="row.train.timetableData!.hasExtraDeliveries"
|
||||||
|
data-tooltip-type="BaseTooltip"
|
||||||
|
:data-tooltip-content="$t('warnings.PN')"
|
||||||
|
>
|
||||||
|
PN
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<!-- Train info -->
|
||||||
|
<span
|
||||||
|
data-tooltip-type="TrainInfoTooltip"
|
||||||
|
:data-tooltip-content="row.train.id"
|
||||||
|
class="tooltip-help"
|
||||||
|
>
|
||||||
|
<b class="text--primary">
|
||||||
|
{{ row.train.timetableData!.category }}
|
||||||
|
</b>
|
||||||
|
|
||||||
|
<b> {{ row.train.trainNo }}</b>
|
||||||
|
•
|
||||||
|
{{ row.train.driverName }}
|
||||||
|
|
||||||
|
<i
|
||||||
|
class="fa-solid fa-user-slash"
|
||||||
|
style="color: salmon"
|
||||||
|
v-if="!row.train.online && row.train.lastSeen <= Date.now() - 60000"
|
||||||
|
></i>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<!-- Train stop comments -->
|
||||||
|
<span
|
||||||
|
v-if="row.checkpointStop.comments"
|
||||||
|
class="stop-comments-icon"
|
||||||
|
data-tooltip-type="BaseTooltip"
|
||||||
|
:data-tooltip-content="row.checkpointStop.comments"
|
||||||
|
>
|
||||||
|
<img src="/images/icon-warning.svg" />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="info-route">
|
||||||
|
<strong>{{ row.train.timetableData!.route.replace('|', ' - ') }}</strong>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ScheduledTrainStatus :sceneryTimetableRow="row" />
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="item-schedule">
|
||||||
|
<span class="schedule-arrival">
|
||||||
|
<span class="arrival-time begins" v-if="row.checkpointStop.beginsHere">
|
||||||
|
{{ $t('timetables.begins') }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="arrival-time" v-else>
|
||||||
|
<div v-if="row.checkpointStop.arrivalDelay == 0">
|
||||||
|
<span>{{ timestampToTimeString(row.checkpointStop.arrivalTimestamp) }}</span>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<div>
|
||||||
|
<s style="margin-right: 0.2em" class="text--grayed">{{
|
||||||
|
timestampToTimeString(row.checkpointStop.arrivalTimestamp)
|
||||||
|
}}</s>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
{{ timestampToTimeString(row.checkpointStop.arrivalRealTimestamp) }}
|
||||||
|
({{ row.checkpointStop.arrivalDelay > 0 ? '+' : ''
|
||||||
|
}}{{ row.checkpointStop.arrivalDelay }})
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="schedule-stop">
|
||||||
|
<span class="stop-connection">
|
||||||
|
{{ row.currentElement.arrivalRouteExt }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="stop-time">
|
||||||
|
{{ row.checkpointStop.stopTime || '' }}
|
||||||
|
{{ row.checkpointStop.stopTime ? row.checkpointStop.stopType || 'pt' : '' }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="stop-connection">
|
||||||
|
{{ row.currentElement.departureRouteExt }}
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="schedule-departure">
|
||||||
|
<span class="departure-time terminates" v-if="row.checkpointStop.terminatesHere">
|
||||||
|
{{ $t('timetables.terminates') }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="departure-time" v-else>
|
||||||
|
<div v-if="row.checkpointStop.departureDelay == 0">
|
||||||
|
<span>{{ timestampToTimeString(row.checkpointStop.departureTimestamp) }}</span>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<div>
|
||||||
|
<s style="margin-right: 0.2em" class="text--grayed">{{
|
||||||
|
timestampToTimeString(row.checkpointStop.departureTimestamp)
|
||||||
|
}}</s>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
{{ timestampToTimeString(row.checkpointStop.departureRealTimestamp) }}
|
||||||
|
({{ row.checkpointStop.departureDelay > 0 ? '+' : ''
|
||||||
|
}}{{ row.checkpointStop.departureDelay }})
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</router-link>
|
||||||
|
</li>
|
||||||
|
</transition-group>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { computed, ComputedRef, PropType } from 'vue';
|
||||||
|
import { Station, ActiveScenery } from '../../../typings/common';
|
||||||
|
import { SceneryTimetableRow } from '../typings';
|
||||||
|
import { getTrainStopStatus, stopStatusPriorities } from '../utils';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useMainStore } from '../../../store/mainStore';
|
||||||
|
import { useApiStore } from '../../../store/apiStore';
|
||||||
|
import { timestampToTimeString } from '../../../composables/time';
|
||||||
|
import ScheduledTrainStatus from './ScheduledTrainStatus.vue';
|
||||||
|
import Loading from '../../Global/Loading.vue';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
station: {
|
||||||
|
type: Object as PropType<Station>
|
||||||
|
},
|
||||||
|
|
||||||
|
onlineScenery: {
|
||||||
|
type: Object as PropType<ActiveScenery>
|
||||||
|
},
|
||||||
|
|
||||||
|
chosenCheckpoint: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const mainStore = useMainStore();
|
||||||
|
const apiStore = useApiStore();
|
||||||
|
|
||||||
|
const sceneryTimetables: ComputedRef<SceneryTimetableRow[]> = computed(() => {
|
||||||
|
if (!props.onlineScenery) return [];
|
||||||
|
|
||||||
|
const sceneryName = route.query['station']?.toString().replace(/_/g, ' ') ?? '';
|
||||||
|
|
||||||
|
return props.onlineScenery.scheduledTrains
|
||||||
|
.filter(
|
||||||
|
(ct) =>
|
||||||
|
// ct.timetablePathElement.stationName == sceneryName &&
|
||||||
|
ct.train.region == mainStore.region.id &&
|
||||||
|
props.chosenCheckpoint &&
|
||||||
|
ct.checkpointStop.stopNameRAW.toLowerCase() == props.chosenCheckpoint.toLowerCase()
|
||||||
|
)
|
||||||
|
.map((ct) => {
|
||||||
|
const trainStopStatus = getTrainStopStatus(
|
||||||
|
ct.checkpointStop,
|
||||||
|
ct.train.currentStationName,
|
||||||
|
sceneryName
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
checkpointStop: ct.checkpointStop,
|
||||||
|
train: ct.train,
|
||||||
|
prevElement: ct.previousSceneryElement,
|
||||||
|
nextElement: ct.nextSceneryElement,
|
||||||
|
currentElement: ct.timetablePathElement,
|
||||||
|
status: trainStopStatus
|
||||||
|
};
|
||||||
|
})
|
||||||
|
.sort((a, b) => {
|
||||||
|
if (stopStatusPriorities.indexOf(a.status) - stopStatusPriorities.indexOf(b.status) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (stopStatusPriorities.indexOf(a.status) - stopStatusPriorities.indexOf(b.status) > 0)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
if (a.checkpointStop.arrivalTimestamp > b.checkpointStop.arrivalTimestamp) return 1;
|
||||||
|
if (a.checkpointStop.arrivalTimestamp < b.checkpointStop.arrivalTimestamp) return -1;
|
||||||
|
|
||||||
|
return a.checkpointStop.departureTimestamp > b.checkpointStop.departureTimestamp ? 1 : -1;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@use '../../../styles/responsive';
|
||||||
|
@use '../../../styles/animations';
|
||||||
|
@use '../../../styles/badge';
|
||||||
|
|
||||||
|
.scenery-timetable-list {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: auto 1fr;
|
||||||
|
overflow: hidden;
|
||||||
|
gap: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-general {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-schedule {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: 0.2em;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
max-width: 400px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timetable-checkpoints {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 0.5em;
|
||||||
|
|
||||||
|
flex-wrap: wrap;
|
||||||
|
font-size: 1.1em;
|
||||||
|
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkpoint-item {
|
||||||
|
color: #aaa;
|
||||||
|
display: inline;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.current {
|
||||||
|
font-weight: bold;
|
||||||
|
color: var(--clr-primary);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-container {
|
||||||
|
position: relative;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timetable-item,
|
||||||
|
.timetable-item-link {
|
||||||
|
margin: 0.5em 0;
|
||||||
|
padding: 0.5em;
|
||||||
|
max-width: 1100px;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||||
|
gap: 1.2em 0.5em;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
background: #353535;
|
||||||
|
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
|
&.empty {
|
||||||
|
padding: 1rem;
|
||||||
|
font-size: 1.2em;
|
||||||
|
color: #bbb;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.general-info {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-train {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-train > .train-badge {
|
||||||
|
font-size: 0.85em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-number {
|
||||||
|
color: var(--clr-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-route {
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stop-comments-icon > img {
|
||||||
|
width: 1.3em;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.schedule-arrival,
|
||||||
|
.schedule-departure {
|
||||||
|
font-size: 1.15em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.schedule-stop {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: 0.5em;
|
||||||
|
align-items: end;
|
||||||
|
|
||||||
|
.stop-connection {
|
||||||
|
font-size: 0.95em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stop-time {
|
||||||
|
position: relative;
|
||||||
|
inline-size: max-content;
|
||||||
|
align-self: center;
|
||||||
|
font-size: 0.9em;
|
||||||
|
|
||||||
|
color: var(--clr-primary);
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '\027F6';
|
||||||
|
display: block;
|
||||||
|
font-size: 2.2em;
|
||||||
|
line-height: 0.65em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrival-time.begins,
|
||||||
|
.departure-time.terminates {
|
||||||
|
font-size: 0.85em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include responsive.smallScreen {
|
||||||
|
.timetable-item {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
+2
-2
@@ -18,8 +18,8 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, PropType } from 'vue';
|
import { defineComponent, PropType } from 'vue';
|
||||||
import { StopStatus } from '../../typings/common';
|
import { StopStatus } from '../../../typings/common';
|
||||||
import { SceneryTimetableRow } from './typings';
|
import { SceneryTimetableRow } from '../typings';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
props: {
|
props: {
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { StopStatus, TrainStop } from '../../typings/common';
|
import { StopStatus, TrainStop } from '../../typings/common';
|
||||||
|
|
||||||
export const stopStatusPriority = [
|
export const stopStatusPriorities = [
|
||||||
StopStatus.ONLINE,
|
StopStatus.ONLINE,
|
||||||
StopStatus.STOPPED,
|
StopStatus.STOPPED,
|
||||||
StopStatus.DEPARTED,
|
StopStatus.DEPARTED,
|
||||||
|
|||||||
@@ -35,3 +35,10 @@ export function dateToLocaleString(date: Date, dateOptions: Intl.DateTimeFormatO
|
|||||||
|
|
||||||
return date.toLocaleString(locale.value == 'pl' ? 'pl-PL' : 'en-GB', dateOptions);
|
return date.toLocaleString(locale.value == 'pl' ? 'pl-PL' : 'en-GB', dateOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function timestampToTimeString(timestamp: number) {
|
||||||
|
return new Date(timestamp).toLocaleTimeString('pl-PL', {
|
||||||
|
hour: '2-digit',
|
||||||
|
minute: '2-digit'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
$animDuration: 95ms;
|
$animDuration: 120ms;
|
||||||
$animType: ease-in-out;
|
$animType: ease-in-out;
|
||||||
|
|
||||||
// List animation
|
// List animation
|
||||||
|
|||||||
Reference in New Issue
Block a user