mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e43f1e0819 | |||
| f130e6900b | |||
| db205915be | |||
| 05c38e10e3 | |||
| a8f683a585 | |||
| 68f6fc8a42 | |||
| 6d3b32cd7d | |||
| fadecc9d2c |
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "stacjownik",
|
"name": "stacjownik",
|
||||||
"version": "1.20.1",
|
"version": "1.20.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -3,13 +3,17 @@
|
|||||||
<span class="name" v-html="stop.nameHtml"></span>
|
<span class="name" v-html="stop.nameHtml"></span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="date arrival"
|
|
||||||
v-if="stop.position != 'begin'"
|
v-if="stop.position != 'begin'"
|
||||||
:class="{
|
class="date arrival"
|
||||||
delayed: stop.arrivalDelay > 0 && stop.status != 'unconfirmed',
|
:data-status="
|
||||||
preponed: stop.arrivalDelay < 0 && stop.status != 'unconfirmed',
|
stop.arrivalDelay > 0 && stop.status != 'unconfirmed'
|
||||||
'on-time': stop.arrivalDelay == 0 && stop.status == 'confirmed'
|
? 'delayed'
|
||||||
}"
|
: stop.arrivalDelay < 0 && stop.status != 'unconfirmed'
|
||||||
|
? 'preponed'
|
||||||
|
: stop.arrivalDelay == 0 && stop.status == 'confirmed'
|
||||||
|
? 'on-time'
|
||||||
|
: ''
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<span v-if="stop.arrivalDelay != 0 && stop.status != 'unconfirmed'">
|
<span v-if="stop.arrivalDelay != 0 && stop.status != 'unconfirmed'">
|
||||||
<s>{{ timestampToString(stop.arrivalScheduled) }}</s>
|
<s>{{ timestampToString(stop.arrivalScheduled) }}</s>
|
||||||
@@ -23,20 +27,37 @@
|
|||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
|
v-if="
|
||||||
|
stop.duration ||
|
||||||
|
(stop.status == 'stopped' &&
|
||||||
|
stop.position != 'begin' &&
|
||||||
|
stop.departureDelay != stop.arrivalDelay)
|
||||||
|
"
|
||||||
class="date stop"
|
class="date stop"
|
||||||
v-if="stop.duration || stop.status == 'stopped'"
|
:data-stop-types="stop.type.replace(', ', '-')"
|
||||||
:class="stop.type.replace(', ', '-')"
|
:data-stop-status="
|
||||||
|
stop.departureDelay - stop.arrivalDelay > 0 && !stop.duration ? 'delayed' : ''
|
||||||
|
"
|
||||||
>
|
>
|
||||||
{{ stop.duration }} {{ stop.type == '' ? 'pt' : stop.type }}
|
{{ stop.duration || stop.departureDelay - stop.arrivalDelay }}
|
||||||
|
{{ stop.type == '' ? 'pt' : stop.type }}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
|
v-if="
|
||||||
|
stop.position != 'end' &&
|
||||||
|
(stop.duration != 0 || stop.status == 'stopped' || stop.departureDelay != stop.arrivalDelay)
|
||||||
|
"
|
||||||
class="date departure"
|
class="date departure"
|
||||||
v-if="stop.position != 'end' && (stop.duration != 0 || stop.status == 'stopped')"
|
:data-status="
|
||||||
:class="{
|
stop.departureDelay > 0 && stop.status == 'confirmed'
|
||||||
delayed: stop.departureDelay > 0 && stop.status == 'confirmed',
|
? 'delayed'
|
||||||
preponed: stop.departureDelay < 0 && stop.status == 'confirmed'
|
: stop.departureDelay < 0 && stop.status == 'confirmed'
|
||||||
}"
|
? 'preponed'
|
||||||
|
: stop.departureDelay == 0 && stop.status == 'confirmed'
|
||||||
|
? 'on-time'
|
||||||
|
: ''
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<span v-if="stop.departureDelay != 0 && stop.status == 'confirmed'">
|
<span v-if="stop.departureDelay != 0 && stop.status == 'confirmed'">
|
||||||
<s>{{ timestampToString(stop.departureScheduled) }}</s>
|
<s>{{ timestampToString(stop.departureScheduled) }}</s>
|
||||||
@@ -78,6 +99,10 @@ $stopDefaultClr: #252525;
|
|||||||
$stopNameClr: #22a8d1;
|
$stopNameClr: #22a8d1;
|
||||||
|
|
||||||
.stop-label {
|
.stop-label {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
&[data-sbl='true'] {
|
&[data-sbl='true'] {
|
||||||
.date {
|
.date {
|
||||||
display: none;
|
display: none;
|
||||||
@@ -90,10 +115,6 @@ $stopNameClr: #22a8d1;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
background: $stopNameClr;
|
background: $stopNameClr;
|
||||||
padding: 0.3em 0.5em;
|
padding: 0.3em 0.5em;
|
||||||
@@ -112,18 +133,22 @@ $stopNameClr: #22a8d1;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.stop {
|
.stop {
|
||||||
&.ph,
|
&[data-stop-types='ph'],
|
||||||
&.ph-pm,
|
&[data-stop-types='ph-pm'],
|
||||||
&.pm {
|
&[data-stop-types='pm'] {
|
||||||
background: $stopExchangeClr;
|
background: $stopExchangeClr;
|
||||||
}
|
}
|
||||||
|
|
||||||
background: $stopDefaultClr;
|
background: $stopDefaultClr;
|
||||||
|
|
||||||
|
&[data-stop-status='delayed'] {
|
||||||
|
color: $delayedClr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.arrival,
|
.arrival,
|
||||||
.departure {
|
.departure {
|
||||||
&.delayed {
|
&[data-status='delayed'] {
|
||||||
s {
|
s {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
@@ -133,7 +158,7 @@ $stopNameClr: #22a8d1;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.preponed {
|
&[data-status='preponed'] {
|
||||||
s {
|
s {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,19 +30,12 @@
|
|||||||
<StopLabel :stop="stop" />
|
<StopLabel :stop="stop" />
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div class="stop_line" v-if="i < scheduleStops.length - 1">
|
<div class="stop_line">
|
||||||
<!-- Grid placeholder -->
|
<!-- Grid placeholder -->
|
||||||
<div>
|
<div></div>
|
||||||
<!-- <div class="speed-departure" v-if="stop.currentDepartureRoute">
|
|
||||||
{{ stop.currentDepartureRoute.routeSpeed }}
|
|
||||||
</div>
|
|
||||||
<div class="speed-next-arrival" v-if="stop.nextArrivalRoute">
|
|
||||||
{{ stop.nextArrivalRoute.routeSpeed }}
|
|
||||||
</div> -->
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="progress">
|
<div class="progress">
|
||||||
<div class="line line_connection"></div>
|
<div class="line line_connection" v-if="i < scheduleStops.length - 1"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bottom-line-info">
|
<div class="bottom-line-info">
|
||||||
@@ -121,13 +114,6 @@ export interface TrainScheduleStop {
|
|||||||
sceneryHash: string;
|
sceneryHash: string;
|
||||||
distance: number;
|
distance: number;
|
||||||
|
|
||||||
// arrivalTrackCount: number;
|
|
||||||
// departureTrackCount: number;
|
|
||||||
|
|
||||||
// currentArrivalRoute?: StationRoutesInfo;
|
|
||||||
// currentDepartureRoute?: StationRoutesInfo;
|
|
||||||
// nextArrivalRoute?: StationRoutesInfo;
|
|
||||||
|
|
||||||
arrivalLine: string | null;
|
arrivalLine: string | null;
|
||||||
departureLine: string | null;
|
departureLine: string | null;
|
||||||
|
|
||||||
@@ -157,8 +143,6 @@ export default defineComponent({
|
|||||||
computed: {
|
computed: {
|
||||||
scheduleStops(): TrainScheduleStop[] {
|
scheduleStops(): TrainScheduleStop[] {
|
||||||
let currentSceneryIndex = 0;
|
let currentSceneryIndex = 0;
|
||||||
// let lastDepartureTrackCount = 2;
|
|
||||||
// let lastArrivalTrackCount = 2;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
this.train.timetableData?.followingStops.map((stop, i, arr) => {
|
this.train.timetableData?.followingStops.map((stop, i, arr) => {
|
||||||
@@ -170,33 +154,6 @@ export default defineComponent({
|
|||||||
)
|
)
|
||||||
currentSceneryIndex++;
|
currentSceneryIndex++;
|
||||||
|
|
||||||
// const sceneryInfo = this.apiStore.sceneryData.find(
|
|
||||||
// (sd) =>
|
|
||||||
// sd.name.toLocaleLowerCase() ==
|
|
||||||
// this.timetableSceneryNames[currentSceneryIndex].toLocaleLowerCase()
|
|
||||||
// );
|
|
||||||
|
|
||||||
// const nextSceneryInfo = this.apiStore.sceneryData.find(
|
|
||||||
// (sd) =>
|
|
||||||
// sd.name.toLocaleLowerCase() ==
|
|
||||||
// this.timetableSceneryNames[currentSceneryIndex + 1]?.toLocaleLowerCase()
|
|
||||||
// );
|
|
||||||
|
|
||||||
// const currentDepartureRoute = sceneryInfo?.routesInfo.find(
|
|
||||||
// (r) => r.routeName == stop.departureLine
|
|
||||||
// );
|
|
||||||
|
|
||||||
// const currentArrivalRoute = sceneryInfo?.routesInfo.find(
|
|
||||||
// (r) => r.routeName == stop.arrivalLine
|
|
||||||
// );
|
|
||||||
|
|
||||||
// const nextArrivalRoute = nextSceneryInfo?.routesInfo.find(
|
|
||||||
// (r) => r.routeName == arr[i + 1]?.arrivalLine
|
|
||||||
// );
|
|
||||||
|
|
||||||
// lastDepartureTrackCount = currentDepartureRoute?.routeTracks ?? lastDepartureTrackCount;
|
|
||||||
// lastArrivalTrackCount = currentArrivalRoute?.routeTracks ?? lastArrivalTrackCount;
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
nameHtml: stop.stopName,
|
nameHtml: stop.stopName,
|
||||||
nameRaw: stop.stopNameRAW,
|
nameRaw: stop.stopNameRAW,
|
||||||
@@ -217,16 +174,6 @@ export default defineComponent({
|
|||||||
arrivalLine: stop.arrivalLine,
|
arrivalLine: stop.arrivalLine,
|
||||||
departureLine: stop.departureLine,
|
departureLine: stop.departureLine,
|
||||||
|
|
||||||
// arrivalSpeed: nextArrivalRoute?.routeSpeed ?? null,
|
|
||||||
// departureSpeed: currentDepartureRoute?.routeSpeed ?? null,
|
|
||||||
|
|
||||||
// arrivalTrackCount: currentArrivalRoute?.routeTracks ?? lastArrivalTrackCount,
|
|
||||||
// departureTrackCount: currentDepartureRoute?.routeTracks ?? lastDepartureTrackCount,
|
|
||||||
|
|
||||||
// currentArrivalRoute,
|
|
||||||
// currentDepartureRoute,
|
|
||||||
// nextArrivalRoute,
|
|
||||||
|
|
||||||
type: stop.stopType,
|
type: stop.stopType,
|
||||||
distance: stop.stopDistance,
|
distance: stop.stopDistance,
|
||||||
isActive: this.activeMinorStops.includes(i),
|
isActive: this.activeMinorStops.includes(i),
|
||||||
|
|||||||
@@ -8732,7 +8732,7 @@
|
|||||||
"departureDelay": 0,
|
"departureDelay": 0,
|
||||||
"beginsHere": true,
|
"beginsHere": true,
|
||||||
"terminatesHere": false,
|
"terminatesHere": false,
|
||||||
"confirmed": 0,
|
"confirmed": 1,
|
||||||
"stopped": 0,
|
"stopped": 0,
|
||||||
"stopTime": null
|
"stopTime": null
|
||||||
},
|
},
|
||||||
@@ -9380,7 +9380,7 @@
|
|||||||
"stopType": "",
|
"stopType": "",
|
||||||
"stopDistance": 123.62,
|
"stopDistance": 123.62,
|
||||||
"pointId": "1663532077406",
|
"pointId": "1663532077406",
|
||||||
"comments": null,
|
"comments": "test121",
|
||||||
"mainStop": true,
|
"mainStop": true,
|
||||||
"arrivalLine": "Sk",
|
"arrivalLine": "Sk",
|
||||||
"arrivalTimestamp": 1701889320000,
|
"arrivalTimestamp": 1701889320000,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -12,7 +12,7 @@
|
|||||||
"p4": "Every person who decides to contribute at least {b1} (in case of PayPal it must be a payment including additional transaction fees) for the development of Stacjownik, will receive (upon a personal request) {img}{b2} of username in the app and on my Discord server (after verifying the payment author, preferably by providing the username directly with the payment).",
|
"p4": "Every person who decides to contribute at least {b1} (in case of PayPal it must be a payment including additional transaction fees) for the development of Stacjownik, will receive (upon a personal request) {img}{b2} of username in the app and on my Discord server (after verifying the payment author, preferably by providing the username directly with the payment).",
|
||||||
"p4-b1": "5 PLN",
|
"p4-b1": "5 PLN",
|
||||||
"p4-b2": "a symbolic highlight",
|
"p4-b2": "a symbolic highlight",
|
||||||
"p5": "Thank you and enjoy the app!<br />~ Spythegre",
|
"p5": "Thank you and enjoy the app!<br />~ Spythere",
|
||||||
"action-exit": "Maybe next time...",
|
"action-exit": "Maybe next time...",
|
||||||
"action-paypal": "DONATE WITH PAYPAL",
|
"action-paypal": "DONATE WITH PAYPAL",
|
||||||
"action-buycoffee": "BUY ME A COFFEE!",
|
"action-buycoffee": "BUY ME A COFFEE!",
|
||||||
|
|||||||
Reference in New Issue
Block a user