Compare commits

...

15 Commits

21 changed files with 624 additions and 348 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "stacjownik", "name": "stacjownik",
"version": "1.28.7", "version": "1.29.0",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {
+5
View File
@@ -0,0 +1,5 @@
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="512" height="512" rx="256" fill="#151414"/>
<path d="M72.4253 291.986V279.965H120.201C123.283 279.965 124.824 278.424 124.824 275.342V264.246C124.824 261.266 123.54 259.571 120.971 259.16L90.9189 252.995C78.5898 250.529 72.4253 242.259 72.4253 228.183V219.553C72.4253 202.292 81.0557 193.662 98.3164 193.662H133.608L143.934 201.675V213.696H99.2411C96.1588 213.696 94.6177 215.237 94.6177 218.32V228.337C94.6177 231.214 95.9019 232.909 98.4705 233.423L128.523 239.433C140.852 241.899 147.016 250.17 147.016 264.246V274.109C147.016 291.37 138.386 300 121.125 300H82.7509L72.4253 291.986ZM167.651 300V193.662H219.433C236.694 193.662 245.324 202.292 245.324 219.553V237.122C245.324 249.964 240.546 257.978 230.991 261.163L248.406 295.377L245.786 300H226.676L207.874 263.013H189.843V300H167.651ZM189.843 242.978H218.508C221.591 242.978 223.132 241.437 223.132 238.355V218.32C223.132 215.237 221.591 213.696 218.508 213.696H189.843V242.978ZM262.96 274.109V253.766H285.153V275.342C285.153 278.424 286.694 279.965 289.776 279.965H310.736C313.818 279.965 315.359 278.424 315.359 275.342V213.696H286.386V193.662H337.551V274.109C337.551 291.37 328.921 300 311.66 300H288.852C271.591 300 262.96 291.37 262.96 274.109ZM361.948 300V193.662H413.731C430.991 193.662 439.622 202.292 439.622 219.553V240.204C439.622 257.465 430.991 266.095 413.731 266.095H384.141V300H361.948ZM384.141 246.06H412.806C415.888 246.06 417.429 244.519 417.429 241.437V218.32C417.429 215.237 415.888 213.696 412.806 213.696H384.141V246.06Z" fill="white"/>
<path d="M304.958 332.848V322.831H348.418V332.848H332.236V376H321.14V332.848H304.958ZM356.61 376V322.831H376.799C391.285 322.831 398.529 330.074 398.529 344.561V354.27C398.529 368.757 391.285 376 376.799 376H356.61ZM367.706 365.983H377.415C384.093 365.983 387.432 362.643 387.432 355.965V342.866C387.432 336.187 384.093 332.848 377.415 332.848H367.706V365.983ZM407.35 376V358.662C407.35 351.624 410.432 347.489 416.597 346.256L430.852 343.405C432.136 343.148 432.779 342.3 432.779 340.862V335.16C432.779 333.619 432.008 332.848 430.467 332.848H408.891V326.838L414.054 322.831H430.929C439.56 322.831 443.875 327.146 443.875 335.776V340.785C443.875 347.823 440.792 351.958 434.628 353.191L420.372 356.042C419.088 356.299 418.446 357.147 418.446 358.585V365.983H443.875V376H407.35Z" fill="#E63E3E"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

+1 -1
View File
@@ -187,7 +187,7 @@ a.discord {
text-decoration: underline; text-decoration: underline;
} }
.actions { .actions-container {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 0.5em; gap: 0.5em;
@@ -33,7 +33,7 @@
<h1 class="option-title">{{ $t('options.search-title') }}</h1> <h1 class="option-title">{{ $t('options.search-title') }}</h1>
<div class="search_content"> <div class="search_content">
<div class="search" v-for="(_, propName) in searchersValues" :key="propName"> <div class="search" v-for="(_, propName) in searchersValues" :key="propName">
<label v-if="propName == 'search-date'" for="search-date">{{ <label v-if="propName == 'search-date-from'" for="search-date">{{
$t(`options.search-${optionsType}-date`) $t(`options.search-${optionsType}-date`)
}}</label> }}</label>
@@ -45,13 +45,13 @@
@focus="preventKeyDown = true" @focus="preventKeyDown = true"
@blur="preventKeyDown = false" @blur="preventKeyDown = false"
:placeholder="$t(`options.${propName}`)" :placeholder="$t(`options.${propName}`)"
:type="propName == 'search-date' ? 'date' : 'text'" :type="propName.toString().startsWith('search-date') ? 'date' : 'text'"
:min="propName == 'search-date' ? '2022-02-01' : undefined" :min="propName.toString().startsWith('search-date') ? '2022-02-01' : undefined"
:id="`${propName}`" :id="`${propName}`"
:list="propName.toString()" :list="propName.toString()"
/> />
<button class="search-exit" v-if="propName != 'search-date'"> <button class="search-exit" v-if="!propName.toString().startsWith('search-date')">
<img <img
src="/images/icon-exit.svg" src="/images/icon-exit.svg"
alt="exit-icon" alt="exit-icon"
@@ -188,14 +188,14 @@ export default defineComponent({
if (!value || value == '') return; if (!value || value == '') return;
if (value.length < 3) return; if (value.length < 3) return;
this.startSearchTimeout('driver', value); if (this.showOptions) this.startSearchTimeout('driver', value);
}, },
async 'searchersValues.search-dispatcher'(value: string | undefined) { async 'searchersValues.search-dispatcher'(value: string | undefined) {
if (!value || value == '') return; if (!value || value == '') return;
if (value.length < 3) return; if (value.length < 3) return;
this.startSearchTimeout('dispatcher', value); if (this.showOptions) this.startSearchTimeout('dispatcher', value);
} }
}, },
@@ -283,7 +283,6 @@ export default defineComponent({
}, },
searchConfirm() { searchConfirm() {
this.$emit('onSearchConfirm');
this.handleRouteParams(); this.handleRouteParams();
}, },
@@ -24,39 +24,20 @@
<div class="g-separator"></div> <div class="g-separator"></div>
<div class="stock-specs"> <div class="stock-specs">
<span class="badge" v-if="timetable.authorName"> <span class="badge specs-badge" v-if="timetable.authorName">
<span>{{ $t('journal.dispatcher-name') }}</span> <span>{{ $t('journal.dispatcher-name') }}</span>
<span>{{ timetable.authorName }}</span> <span>{{ timetable.authorName }}</span>
</span> </span>
<span class="badge" v-if="timetable.maxSpeed"> <span class="badge specs-badge" v-if="timetable.trainMaxSpeed">
<span>{{ $t('journal.stock-timetable-speed') }}</span>
<span> {{ timetable.trainMaxSpeed }}km/h </span>
</span>
<span class="badge specs-badge" v-if="timetable.maxSpeed">
<span>{{ $t('journal.stock-max-speed') }}</span> <span>{{ $t('journal.stock-max-speed') }}</span>
<span>{{ timetable.maxSpeed }}km/h</span> <span>{{ timetable.maxSpeed }}km/h</span>
</span> </span>
<span class="badge" v-if="timetable.stockLength">
<span>{{ $t('journal.stock-length') }}</span>
<span>
{{
currentHistoryIndex == 0
? timetable.stockLength
: stockHistory[currentHistoryIndex].stockLength || timetable.stockLength
}}m
</span>
</span>
<span class="badge" v-if="timetable.stockMass">
<span>{{ $t('journal.stock-mass') }}</span>
<span>
{{
Math.floor(
(currentHistoryIndex == 0
? timetable.stockMass
: stockHistory[currentHistoryIndex].stockMass || timetable.stockMass) / 1000
)
}}t
</span>
</span>
</div> </div>
<div class="stock-dangers" v-if="timetable.warningNotes"> <div class="stock-dangers" v-if="timetable.warningNotes">
@@ -93,8 +74,35 @@
<!-- Historia zmian w składzie --> <!-- Historia zmian w składzie -->
<div v-if="timetable.stockString || stockHistory.length != 0"> <div v-if="timetable.stockString || stockHistory.length != 0">
<div class="g-separator"></div> <div class="g-separator"></div>
<b>{{ $t('journal.stock-preview') }}:</b> <b>{{ $t('journal.stock-preview') }}:</b>
<div class="stock-specs" style="margin-top: 0.5em">
<span class="badge specs-badge" v-if="timetable.stockLength">
<span>{{ $t('journal.stock-length') }}</span>
<span>
{{
currentHistoryIndex == 0
? timetable.stockLength
: stockHistory[currentHistoryIndex].stockLength || timetable.stockLength
}}m
</span>
</span>
<span class="badge specs-badge" v-if="timetable.stockMass">
<span>{{ $t('journal.stock-mass') }}</span>
<span>
{{
Math.floor(
(currentHistoryIndex == 0
? timetable.stockMass
: stockHistory[currentHistoryIndex].stockMass || timetable.stockMass) / 1000
)
}}t
</span>
</span>
</div>
<div class="stock-history"> <div class="stock-history">
<button class="btn btn--action" @click="copyStockToClipboard()"> <button class="btn btn--action" @click="copyStockToClipboard()">
<i class="fa-regular fa-copy"></i> {{ $t('journal.stock-copy') }} <i class="fa-regular fa-copy"></i> {{ $t('journal.stock-copy') }}
@@ -250,14 +258,21 @@ export default defineComponent({
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 0.5em; gap: 0.5em;
}
.badge { .specs-badge {
margin: 0; margin: 0;
span:first-child {
color: white;
background-color: #666;
border-radius: 0.25em 0 0 0.25em;
}
span:last-child { span:last-child {
color: black; color: black;
background-color: $accentCol; background-color: $accentCol;
} border-radius: 0 0.25em 0.25em 0;
} }
} }
+6 -3
View File
@@ -1,10 +1,14 @@
export namespace Journal { export namespace Journal {
export type DispatcherSearchKey = 'search-dispatcher' | 'search-station' | 'search-date'; export type DispatcherSearchKey =
| 'search-dispatcher'
| 'search-station'
| 'search-date-from'
| 'search-date-to';
export type TimetableSearchKey = export type TimetableSearchKey =
| 'search-driver' | 'search-driver'
| 'search-train' | 'search-train'
| 'search-date' | 'search-date-from'
| 'search-dispatcher' | 'search-dispatcher'
| 'search-issuedFrom' | 'search-issuedFrom'
| 'search-terminatingAt' | 'search-terminatingAt'
@@ -80,4 +84,3 @@ export namespace Journal {
isConfirmed: boolean; isConfirmed: boolean;
} }
} }
+8 -12
View File
@@ -4,14 +4,7 @@
:data-minor="stop.isSBL || (stop.nameRaw.endsWith(', po') && !stop.duration)" :data-minor="stop.isSBL || (stop.nameRaw.endsWith(', po') && !stop.duration)"
> >
<router-link v-if="/(, podg$|<strong>)/.test(stop.nameHtml)" :to="sceneryHref"> <router-link v-if="/(, podg$|<strong>)/.test(stop.nameHtml)" :to="sceneryHref">
<b class="stop-name" <b class="stop-name">
><i
v-if="!stop.isSceneryOnline"
class="fa-solid fa-ban"
data-tooltip-type="BaseTooltip"
:data-tooltip-content="$t('app.tooltip-scenery-offline')"
style="margin-right: 0.25rem; color: salmon"
></i>
{{ stop.nameRaw }} {{ stop.nameRaw }}
</b> </b>
</router-link> </router-link>
@@ -54,7 +47,10 @@
<span <span
v-if=" v-if="
stop.position != 'end' && stop.position != 'end' &&
(stop.duration != 0 || stop.status == 'stopped' || stop.departureDelay != stop.arrivalDelay) (stop.duration != 0 ||
stop.position == 'begin' ||
stop.status == 'stopped' ||
stop.departureDelay != stop.arrivalDelay)
" "
class="date departure" class="date departure"
:data-status-delayed="stop.departureDelay > 0" :data-status-delayed="stop.departureDelay > 0"
@@ -77,16 +73,16 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { PropType, defineComponent } from 'vue'; import { PropType, defineComponent, stop } from 'vue';
import dateMixin from '../../mixins/dateMixin'; import dateMixin from '../../mixins/dateMixin';
import { TrainScheduleStop } from './typings'; import { TrainSchedulePoint } from './typings';
export default defineComponent({ export default defineComponent({
mixins: [dateMixin], mixins: [dateMixin],
props: { props: {
stop: { stop: {
type: Object as PropType<TrainScheduleStop>, type: Object as PropType<TrainSchedulePoint>,
required: true required: true
} }
}, },
+39 -9
View File
@@ -140,6 +140,7 @@
tabindex="0" tabindex="0"
:data-tooltip="$t('trains.vmax-tooltip')" :data-tooltip="$t('trains.vmax-tooltip')"
> >
vMax:
{{ stockSpeedLimit }} km/h {{ stockSpeedLimit }} km/h
</em> </em>
</span> </span>
@@ -183,14 +184,20 @@
<script lang="ts"> <script lang="ts">
import { defineComponent } from 'vue'; import { defineComponent } from 'vue';
import styleMixin from '../../mixins/styleMixin';
import trainInfoMixin from '../../mixins/trainInfoMixin';
import ProgressBar from '../Global/ProgressBar.vue';
import { useMainStore } from '../../store/mainStore'; import { useMainStore } from '../../store/mainStore';
import { useApiStore } from '../../store/apiStore'; import { useApiStore } from '../../store/apiStore';
import StockList from '../Global/StockList.vue';
import { Train } from '../../typings/common'; import { Train } from '../../typings/common';
import speedLimits from '../../data/speedLimits.json';
import styleMixin from '../../mixins/styleMixin';
import trainInfoMixin from '../../mixins/trainInfoMixin';
import trainCategoryMixin from '../../mixins/trainCategoryMixin'; import trainCategoryMixin from '../../mixins/trainCategoryMixin';
import ProgressBar from '../Global/ProgressBar.vue';
import StockList from '../Global/StockList.vue';
export type SpeedLimitLocoType = keyof typeof speedLimits;
const isCompatibleLoco = (locoType: string): locoType is SpeedLimitLocoType =>
locoType in speedLimits;
export default defineComponent({ export default defineComponent({
mixins: [trainInfoMixin, styleMixin, trainCategoryMixin], mixins: [trainInfoMixin, styleMixin, trainCategoryMixin],
@@ -215,13 +222,36 @@ export default defineComponent({
computed: { computed: {
stockSpeedLimit() { stockSpeedLimit() {
return this.train.stockList.reduce((acc, stockName) => { let isPassenger = true;
const vehicleSpeed =
this.apiStore.vehiclesData?.find((v) => v.name == stockName.split(':')[0])?.group.speed ?? const vehicleMaxSpeed = this.train.stockList.reduce((acc, stockName) => {
300; const vehicleData = this.apiStore.vehiclesData?.find(
(v) => v.name == stockName.split(':')[0]
);
if (!vehicleData) return acc;
if (vehicleData.type == 'wagon-freight') isPassenger = false;
const vehicleSpeed = vehicleData.group.speed;
return Math.min(vehicleSpeed, acc); return Math.min(vehicleSpeed, acc);
}, 300); }, Infinity);
const headLoco = this.train.stockList[0].slice(0, this.train.stockList[0].indexOf('-'));
if (!isCompatibleLoco(headLoco)) return vehicleMaxSpeed;
if (this.train.stockList.length == 1) return speedLimits[headLoco]['none'];
const speedTable = speedLimits[headLoco][isPassenger ? 'passenger' : 'cargo'];
if (!speedTable) return vehicleMaxSpeed;
let massKey = Object.keys(speedTable).findLast(
(massKey) => this.train.mass >= Number(massKey)
);
return massKey ? ((speedTable as any)[massKey] as number) : vehicleMaxSpeed;
}, },
journalRouteLocation() { journalRouteLocation() {
return { return {
@@ -178,6 +178,12 @@ export default defineComponent({
this.trainFilterList.forEach((filter) => { this.trainFilterList.forEach((filter) => {
filter.isActive = true; filter.isActive = true;
}); });
this.sorterActive.id = 'routeDistance';
this.sorterActive.dir = -1;
this.searchedDriver = '';
this.searchedTrain = '';
}, },
onInputClear(id: 'driver' | 'train') { onInputClear(id: 'driver' | 'train') {
+194 -75
View File
@@ -3,15 +3,17 @@
<div class="schedule-wrapper" v-if="train.timetableData"> <div class="schedule-wrapper" v-if="train.timetableData">
<div class="stops"> <div class="stops">
<div <div
v-for="(stop, i) in scheduleStops" v-for="(stop, i) in scheduleStopsV2"
:key="i" :key="i"
class="stop" class="stop"
:data-status="stop.status" :data-status="stop.status"
:data-sbl="stop.isSBL && stop.sceneryName == scheduleStopsV2[i + 1]?.sceneryName"
:data-position="stop.position" :data-position="stop.position"
:data-delayed="stop.departureDelay > 0" :data-delayed="stop.departureDelay > 0"
:data-stop-type="stop.type" :data-stop-type="stop.type"
:data-minor-stop-active="stop.isActive" :data-is-active="stop.isActive"
:data-last-confirmed="stop.isLastConfirmed" :data-track-count-departure="stop.departureLineInfo?.routeTracks ?? 2"
:data-track-count-arrival="stop.arrivalLineInfo?.routeTracks ?? 2"
> >
<span class="stop_info"> <span class="stop_info">
<span class="distance"> <span class="distance">
@@ -32,7 +34,7 @@
<div></div> <div></div>
<div class="progress"> <div class="progress">
<div class="line line_connection" v-if="i < scheduleStops.length - 1"></div> <div class="line line_connection" v-if="i < scheduleStopsV2.length - 1"></div>
</div> </div>
<div class="bottom-line-info"> <div class="bottom-line-info">
@@ -42,17 +44,20 @@
</div> </div>
<!-- Routes --> <!-- Routes -->
<span <span
v-if=" v-if="
stop.departureLine && stop.departureLine &&
scheduleStops[i + 1] != undefined && (scheduleStopsV2[i + 1]?.arrivalLineInfo?.routeSpeed !=
!/-|_|(^it\d+)|(^sbl)/gi.test(stop.departureLine) stop.arrivalLineInfo?.routeSpeed ||
stop.sceneryName != scheduleStopsV2[i + 1]?.sceneryName)
" "
> >
<div class="scenery-route"> <div class="scenery-route">
<span>{{ stop.departureLine }}</span> <span>{{ stop.departureLine }}</span>
<span v-if="stop.departureLineInfo"> <span v-if="stop.departureLineInfo">
| {{ stop.departureLineInfo.routeSpeed }} <span> | {{ stop.departureLineInfo.routeSpeed }}</span>
<img <img
:src=" :src="
@@ -60,7 +65,7 @@
? '/images/icon-catenary.svg' ? '/images/icon-catenary.svg'
: '/images/icon-we4a.png' : '/images/icon-we4a.png'
" "
width="10" width="14"
data-tooltip-type="BaseTooltip" data-tooltip-type="BaseTooltip"
:data-tooltip-content=" :data-tooltip-content="
$t( $t(
@@ -72,7 +77,7 @@
<img <img
v-if="stop.departureLineInfo.isRouteSBL" v-if="stop.departureLineInfo.isRouteSBL"
src="/images/icon-sbl-transparent.svg" src="/images/icon-sbl-transparent.svg"
width="10" width="14"
data-tooltip-type="BaseTooltip" data-tooltip-type="BaseTooltip"
:data-tooltip-content="$t('trains.sbl-tooltip')" :data-tooltip-content="$t('trains.sbl-tooltip')"
/> />
@@ -80,39 +85,48 @@
</div> </div>
<div <div
v-if="stop.sceneryName != scheduleStops[i + 1]?.sceneryName" v-if="stop.sceneryName != scheduleStopsV2[i + 1]?.sceneryName"
class="scenery-change-name" class="scenery-change-name"
> >
<span>{{ scheduleStops[i + 1].sceneryName }}</span> <span>{{ scheduleStopsV2[i + 1].sceneryName }}</span>
<span v-if="stop.departureLineInfo?.routeTracks == 1"> &UpDownArrow;</span>
<span v-else> &DownArrowUpArrow;</span> <i
v-if="!scheduleStopsV2[i + 1].isSceneryOnline"
class="fa-solid fa-ban fa-sm"
data-tooltip-type="BaseTooltip"
:data-tooltip-content="$t('app.tooltip-scenery-offline')"
style="color: salmon; margin-left: 0.25em"
></i>
</div> </div>
<div class="scenery-route"> <div
<span> {{ scheduleStops[i + 1].arrivalLine }}</span> class="scenery-route"
v-if="stop.sceneryName != scheduleStopsV2[i + 1]?.sceneryName"
>
<span> {{ scheduleStopsV2[i + 1].arrivalLine }}</span>
<span v-if="scheduleStops[i + 1].arrivalLineInfo"> <span v-if="scheduleStopsV2[i + 1].arrivalLineInfo">
| {{ scheduleStops[i + 1].arrivalLineInfo!.routeSpeed }} <span> | {{ scheduleStopsV2[i + 1].arrivalLineInfo!.routeSpeed }} </span>
<img <img
:src=" :src="
scheduleStops[i + 1].arrivalLineInfo!.isElectric scheduleStopsV2[i + 1].arrivalLineInfo?.isElectric
? '/images/icon-catenary.svg' ? '/images/icon-catenary.svg'
: '/images/icon-we4a.png' : '/images/icon-we4a.png'
" "
data-tooltip-type="BaseTooltip" data-tooltip-type="BaseTooltip"
:data-tooltip-content=" :data-tooltip-content="
$t( $t(
`trains.${!scheduleStops[i + 1].arrivalLineInfo!.isElectric ? 'no-' : ''}catenary-tooltip` `trains.${!scheduleStopsV2[i + 1].arrivalLineInfo?.isElectric ? 'no-' : ''}catenary-tooltip`
) )
" "
width="10" width="14"
/> />
<img <img
v-if="scheduleStops[i + 1].arrivalLineInfo!.isRouteSBL" v-if="scheduleStopsV2[i + 1].arrivalLineInfo!.isRouteSBL"
src="/images/icon-sbl-transparent.svg" src="/images/icon-sbl-transparent.svg"
width="10" width="14"
data-tooltip-type="BaseTooltip" data-tooltip-type="BaseTooltip"
:data-tooltip-content="$t('trains.sbl-tooltip')" :data-tooltip-content="$t('trains.sbl-tooltip')"
/> />
@@ -134,8 +148,8 @@ import StopLabel from './StopLabel.vue';
import StockList from '../Global/StockList.vue'; import StockList from '../Global/StockList.vue';
import { useMainStore } from '../../store/mainStore'; import { useMainStore } from '../../store/mainStore';
import { useApiStore } from '../../store/apiStore'; import { useApiStore } from '../../store/apiStore';
import { Train } from '../../typings/common'; import { StationRoutesInfo, TimetablePathElement, Train } from '../../typings/common';
import { TrainScheduleStop } from './typings'; import { TrainSchedulePoint } from './typings';
export default defineComponent({ export default defineComponent({
components: { StopLabel, StockList }, components: { StopLabel, StockList },
@@ -157,37 +171,92 @@ export default defineComponent({
}; };
}, },
computed: { methods: {
scheduleStops(): TrainScheduleStop[] { getPathSceneryData(pathEl: TimetablePathElement) {
if (!this.train.timetableData) return []; const sceneryData =
this.store.stationList?.find((sc) => sc.name == pathEl.stationName) ?? null;
const { timetablePath } = this.train.timetableData; if (!sceneryData || !sceneryData.generalInfo) return null;
let currentPathIndex = 0;
return ( const activeScenery = this.apiStore.activeData?.activeSceneries?.find(
this.train.timetableData?.followingStops.map((stop, i, arr) => { (sc) => sc.stationName == pathEl.stationName
const isExternal =
i < arr.length - 1 &&
stop.departureLine === timetablePath[currentPathIndex].departureRouteExt;
const sceneryName = timetablePath[currentPathIndex].stationName;
const sceneryInfo = this.apiStore.sceneryData.find((st) => st.name == sceneryName);
const isSceneryOnline =
(this.apiStore.activeData?.activeSceneries?.find((sc) => sc.stationName == sceneryName)
?.isOnline ?? 0) == 1;
const arrivalLineInfo = sceneryInfo?.routesInfo.find(
(r) => r.routeName == stop.arrivalLine
); );
const departureLineInfo = sceneryInfo?.routesInfo.find( const arrivalLineData = pathEl.arrivalRouteExt
(r) => r.routeName == stop.departureLine ? (sceneryData.generalInfo.routes.all.find(
); (rt) => rt.routeName == pathEl.arrivalRouteExt
) ?? null)
: null;
if (isExternal) currentPathIndex++; const departureLineData = pathEl.departureRouteExt
? (sceneryData.generalInfo.routes.all.find(
(rt) => rt.routeName == pathEl.departureRouteExt
) ?? null)
: null;
return { return {
generalInfo: sceneryData.generalInfo,
isOnline:
activeScenery &&
(activeScenery.isOnline == 1 || activeScenery.lastSeen >= Date.now() - 60000),
arrivalLineData,
departureLineData
};
}
},
computed: {
scheduleStopsV2() {
if (!this.train.timetableData) return [];
const { timetablePath, followingStops } = this.train.timetableData;
const stopRows: TrainSchedulePoint[] = [];
let currentPathIndex = 0;
let currentPath = timetablePath[0];
let pathData = this.getPathSceneryData(currentPath);
let arrivalLineInfo: StationRoutesInfo | null = null;
let departureLineInfo: StationRoutesInfo | null = null;
let isActive = false;
if (pathData?.departureLineData) {
arrivalLineInfo = pathData.departureLineData;
departureLineInfo = pathData.departureLineData;
}
for (const stop of followingStops) {
let isExternal = false;
if (
stop.arrivalLine &&
currentPath.arrivalRouteExt &&
stop.arrivalLine == currentPath.arrivalRouteExt
) {
isExternal = true;
if (pathData?.arrivalLineData) {
arrivalLineInfo = pathData.arrivalLineData;
}
}
let correctedDepartureLineData: StationRoutesInfo | null = null;
const internalRouteInfo = stop.departureLine
? pathData?.generalInfo.routes.all.find(
(route) => route.isInternal && route.routeName == stop.departureLine
)
: undefined;
if (internalRouteInfo) {
correctedDepartureLineData = internalRouteInfo;
departureLineInfo = internalRouteInfo;
}
let rowData: TrainSchedulePoint = {
nameHtml: stop.stopName, nameHtml: stop.stopName,
nameRaw: stop.stopNameRAW, nameRaw: stop.stopNameRAW,
@@ -200,7 +269,9 @@ export default defineComponent({
departureDelay: stop.departureDelay, departureDelay: stop.departureDelay,
arrivalDelay: stop.arrivalDelay, arrivalDelay: stop.arrivalDelay,
duration: stop.stopTime, duration: stop.stopTime ?? 0,
type: stop.stopType,
distance: stop.stopDistance,
comments: stop.comments ?? null, comments: stop.comments ?? null,
@@ -208,23 +279,65 @@ export default defineComponent({
departureLine: stop.departureLine, departureLine: stop.departureLine,
arrivalLineInfo: arrivalLineInfo, arrivalLineInfo: arrivalLineInfo,
departureLineInfo: departureLineInfo, departureLineInfo,
isExternal, isExternal,
type: stop.stopType, isActive: isActive,
distance: stop.stopDistance,
isActive: this.activeMinorStops.includes(i),
isLastConfirmed: this.lastConfirmed === i && !stop.terminatesHere,
isSBL: /sbl/gi.test(stop.stopName), isSBL: /sbl/gi.test(stop.stopName),
position: stop.beginsHere ? 'begin' : stop.terminatesHere ? 'end' : 'en-route', position: stop.beginsHere ? 'begin' : stop.terminatesHere ? 'end' : 'en-route',
status: stop.confirmed ? 'confirmed' : stop.stopped ? 'stopped' : 'unconfirmed', status: stop.confirmed ? 'confirmed' : stop.stopped ? 'stopped' : 'unconfirmed',
sceneryName, sceneryName: currentPath.stationName,
isSceneryOnline isSceneryOnline: pathData?.isOnline ?? false
}; };
}) ?? []
); if (internalRouteInfo) {
arrivalLineInfo = departureLineInfo;
}
if (
stopRows[stopRows.length - 1]?.status == 'confirmed' &&
rowData.status != 'confirmed' &&
rowData.status != 'stopped'
)
stopRows[stopRows.length - 1].isActive = true;
if (
stopRows[stopRows.length - 1]?.isActive == true &&
!/(^<strong>|, podg$)/.test(rowData.nameHtml)
)
rowData.isActive = true;
stopRows.push(rowData);
if (
stop.departureLine &&
currentPath.departureRouteExt &&
stop.departureLine == currentPath.departureRouteExt
) {
// Reverse search for last scenery checkpoint
if (pathData?.departureLineData) {
stopRows[stopRows.length - 1].isExternal = true;
for (let i = stopRows.length - 1; i > 0; i--) {
stopRows[i].departureLineInfo = pathData.departureLineData;
if (/(^<strong>|, podg$)/.test(stopRows[i].nameHtml)) {
break;
}
stopRows[i].arrivalLineInfo = pathData.departureLineData;
}
}
currentPath = timetablePath[++currentPathIndex];
pathData = this.getPathSceneryData(currentPath);
}
}
return stopRows;
}, },
lastConfirmed() { lastConfirmed() {
@@ -297,6 +410,10 @@ $blinkAnim: 0.5s ease-in-out alternate infinite blink;
} }
.stop { .stop {
&[data-sbl='true'] {
display: none;
}
// Begin stop // Begin stop
&[data-position='begin'] { &[data-position='begin'] {
.node { .node {
@@ -328,20 +445,19 @@ $blinkAnim: 0.5s ease-in-out alternate infinite blink;
border-color: $haltClr; border-color: $haltClr;
} }
&[data-minor-stop-active='true'] { // &[data-minor-stop-active='true'] {
.progress > .line { // .progress > .line {
animation: $blinkAnim; // animation: $blinkAnim;
} // }
& + div { // & + div {
.progress > .line_node-top { // .progress > .line_node-top {
animation: $blinkAnim; // animation: $blinkAnim;
} // }
} // }
} // }
// Last confirmed outpost / checkpoint &[data-is-active='true'] {
&[data-last-confirmed='true'] {
.progress > .line_connection { .progress > .line_connection {
animation: $blinkAnim; animation: $blinkAnim;
} }
@@ -362,6 +478,7 @@ $blinkAnim: 0.5s ease-in-out alternate infinite blink;
.progress > .node { .progress > .node {
border-color: $confirmedClr; border-color: $confirmedClr;
} }
.progress > .line { .progress > .line {
border-left: 2px solid $confirmedClr; border-left: 2px solid $confirmedClr;
border-right: 2px solid $confirmedClr; border-right: 2px solid $confirmedClr;
@@ -382,19 +499,22 @@ $blinkAnim: 0.5s ease-in-out alternate infinite blink;
// Unused so far // Unused so far
&[data-track-count-departure='2'] { &[data-track-count-departure='2'] {
.progress > .line { .progress > .line {
width: 6px; width: 8px;
border-width: 3px;
} }
} }
&[data-track-count-arrival='2'] { &[data-track-count-arrival='2'] {
.progress > .line_node-top { .progress > .line_node-top {
width: 6px; width: 8px;
border-width: 3px;
} }
} }
&[data-track-count-arrival='1'] { &[data-track-count-arrival='1'] {
.progress > .line_node-top { .progress > .line_node-top {
width: 4px; width: 2px;
border-width: 2px;
} }
} }
@@ -522,8 +642,7 @@ $blinkAnim: 0.5s ease-in-out alternate infinite blink;
align-items: center; align-items: center;
} }
img { img[data-tooltip] {
width: 1em;
cursor: help; cursor: help;
} }
} }
+22 -3
View File
@@ -1,5 +1,12 @@
<template> <template>
<transition name="status-anim" mode="out-in" tag="div" class="train-table"> <transition
name="status-anim"
mode="out-in"
tag="div"
class="train-table"
@scroll="onScroll"
ref="trainTableRef"
>
<div :key="apiStore.dataStatuses.connection"> <div :key="apiStore.dataStatuses.connection">
<div class="table-warning" key="offline" v-if="store.isOffline"> <div class="table-warning" key="offline" v-if="store.isOffline">
{{ $t('app.offline') }} {{ $t('app.offline') }}
@@ -39,6 +46,10 @@ export default defineComponent({
} }
}, },
data: () => ({
scrollTop: 0
}),
setup() { setup() {
const store = useMainStore(); const store = useMainStore();
const apiStore = useApiStore(); const apiStore = useApiStore();
@@ -58,6 +69,16 @@ export default defineComponent({
}; };
}, },
activated() {
(this.$refs['trainTableRef'] as HTMLElement).scrollTop = this.scrollTop;
},
methods: {
onScroll(e: Event) {
this.scrollTop = (e.target as HTMLElement).scrollTop;
}
},
computed: { computed: {
dataStatus() { dataStatus() {
if (this.store.isOffline) return Status.Data.Offline; if (this.store.isOffline) return Status.Data.Offline;
@@ -92,6 +113,4 @@ export default defineComponent({
background: #1a1a1a; background: #1a1a1a;
} }
</style> </style>
+32
View File
@@ -165,3 +165,35 @@ export interface TrainScheduleStop {
comments: string | null; comments: string | null;
} }
export interface TrainSchedulePoint {
nameHtml: string;
nameRaw: string;
status: 'confirmed' | 'unconfirmed' | 'stopped';
position: 'begin' | 'end' | 'en-route';
type: string;
duration: number;
distance: number;
arrivalScheduled: number;
arrivalReal: number;
departureScheduled: number;
departureReal: number;
comments: string | null;
arrivalDelay: number;
departureDelay: number;
arrivalLine: string | null;
departureLine: string | null;
arrivalLineInfo: StationRoutesInfo | null;
departureLineInfo: StationRoutesInfo | null;
isExternal: boolean,
isActive: boolean;
isSBL: boolean;
sceneryName: string | null;
isSceneryOnline: boolean;
}
+156
View File
@@ -0,0 +1,156 @@
{
"EU07": {
"passenger": {
"650000": 125
},
"cargo": {
"2000000": 70
},
"none": 110
},
"4E": {
"passenger": {
"650000": 125
},
"cargo": {
"2000000": 70
},
"none": 110
},
"EU07E": {
"passenger": {
"650000": 125
},
"cargo": {
"2000000": 70
},
"none": 110
},
"EP07": {
"passenger": {
"650000": 125
},
"cargo": null,
"none": 110
},
"EP08": {
"passenger": {
"650000": 140
},
"cargo": null,
"none": 110
},
"EP09": {
"passenger": {
"650000": 160
},
"cargo": null,
"none": 160
},
"ET22": {
"passenger": {
"650000": 125
},
"cargo": {
"1200000": 100,
"3100000": 70
},
"none": 125
},
"201E": {
"passenger": {
"650000": 125
},
"cargo": {
"1200000": 100,
"3100000": 70
},
"none": 125
},
"ET41": {
"passenger": {
"700000": 125
},
"cargo": {
"4000000": 70,
"3500000": 80,
"2500000": 90,
"2000000": 100
},
"none": 110
},
"SM42": {
"passenger": {
"95000": 90,
"200000": 80,
"300000": 70,
"450000": 60,
"750000": 50,
"1130000": 40,
"1720000": 30,
"2400000": 20
},
"cargo": {
"95000": 90,
"200000": 80,
"300000": 70,
"450000": 60,
"750000": 50,
"1130000": 40,
"1720000": 30,
"2400000": 20
},
"none": 90
},
"M62": {
"passenger": {
"500000": 100,
"800000": 80,
"1200000": 60,
"2000000": 40,
"3000000": 20
},
"cargo": {
"500000": 100,
"800000": 80,
"1200000": 60,
"2000000": 40,
"3000000": 20
},
"none": 100
},
"ST44": {
"passenger": {
"500000": 100,
"800000": 80,
"1200000": 60,
"2000000": 40,
"3000000": 20
},
"cargo": {
"500000": 100,
"800000": 80,
"1200000": 60,
"2000000": 40,
"3000000": 20
},
"none": 100
},
"CTLR4C": {
"passenger": {
"500000": 100,
"800000": 80,
"1200000": 60,
"2000000": 40,
"3000000": 20
},
"cargo": {
"500000": 100,
"800000": 80,
"1200000": 60,
"2000000": 40,
"3000000": 20
},
"none": 100
}
}
+7 -77
View File
@@ -59,20 +59,16 @@
"EI": "domestic express", "EI": "domestic express",
"EC": "international express", "EC": "international express",
"EN": "domestic night express", "EN": "domestic night express",
"MP": "intervoivodeship bullet", "MP": "intervoivodeship bullet",
"MO": "intervoivodeship regio", "MO": "intervoivodeship regio",
"MM": "international bullet", "MM": "international bullet",
"MH": "intervoivodeship night bullet", "MH": "intervoivodeship night bullet",
"RP": "voivodeship bullet", "RP": "voivodeship bullet",
"RM": "international voivodeship regio", "RM": "international voivodeship regio",
"RO": "voivodeship regio", "RO": "voivodeship regio",
"RA": "voivodeship regio (urban)", "RA": "voivodeship regio (urban)",
"PW": "empty passenger", "PW": "empty passenger",
"PX": "empty passenger test drive", "PX": "empty passenger test drive",
"TC": "international freight (intermodal)", "TC": "international freight (intermodal)",
"TG": "international freight (organized cargo)", "TG": "international freight (organized cargo)",
"TR": "international freight (unorganized cargo)", "TR": "international freight (unorganized cargo)",
@@ -82,18 +78,14 @@
"TK": "freight (for stations & sidings)", "TK": "freight (for stations & sidings)",
"TS": "empty freight test drive", "TS": "empty freight test drive",
"TH": "locomotive rolling stock (over 3 vehicles)", "TH": "locomotive rolling stock (over 3 vehicles)",
"LT": "freight locomotive only", "LT": "freight locomotive only",
"LP": "passenger locomotive only", "LP": "passenger locomotive only",
"LS": "shunting locomotive only", "LS": "shunting locomotive only",
"LZ": "shunting locomotive only", "LZ": "shunting locomotive only",
"ZN": "inspection / diagnostic type", "ZN": "inspection / diagnostic type",
"ZU": "other maintenance type", "ZU": "other maintenance type",
"ZG": "emergency (deprecated)", "ZG": "emergency (deprecated)",
"AP": "voivodeship regio (deprecated)", "AP": "voivodeship regio (deprecated)",
"E": "electric loco", "E": "electric loco",
"J": "EMU", "J": "EMU",
"S": "diesel loco", "S": "diesel loco",
@@ -132,7 +124,6 @@
"mechaniczne": "levers (mechanical)", "mechaniczne": "levers (mechanical)",
"mechaniczne+SPK": "levers + SPK", "mechaniczne+SPK": "levers + SPK",
"mechaniczne+SCS": "levers + SCS", "mechaniczne+SCS": "levers + SCS",
"abbrevs": { "abbrevs": {
"SPK": "SPK", "SPK": "SPK",
"SCS": "SCS", "SCS": "SCS",
@@ -161,14 +152,11 @@
"options": { "options": {
"filters": "FILTERS", "filters": "FILTERS",
"donate": "DONATE", "donate": "DONATE",
"search-button": "SEARCH", "search-button": "SEARCH",
"reset-button": "RESET", "reset-button": "RESET",
"sort-title": "SORT BY:", "sort-title": "SORT BY:",
"filter-title": "FILTER BY:", "filter-title": "FILTER BY:",
"search-title": "SEARCH:", "search-title": "SEARCH:",
"search-train-no": "Train no. / #", "search-train-no": "Train no. / #",
"search-train": "Train no.", "search-train": "Train no.",
"search-driver": "Driver name", "search-driver": "Driver name",
@@ -178,10 +166,10 @@
"search-issuedFrom": "Issuing scenery name", "search-issuedFrom": "Issuing scenery name",
"search-via": "Via scenery name", "search-via": "Via scenery name",
"search-terminatingAt": "Terminating scenery name", "search-terminatingAt": "Terminating scenery name",
"search-timetables-date": "Timetable date (UTC+2 / CEST)", "search-timetables-date": "Timetable date",
"search-dispatchers-date": "Service date (UTC+2 / CEST)", "search-dispatchers-date": "Service date (from / to)",
"search-date": "Date (UTC+2 / CEST)", "search-date-from": "Date (UTC+2 / CEST)",
"search-date-to": "Date (UTC+2 / CEST)",
"sort-mass": "mass", "sort-mass": "mass",
"sort-speed": "speed", "sort-speed": "speed",
"sort-length": "length", "sort-length": "length",
@@ -190,13 +178,11 @@
"sort-progress": "route progress", "sort-progress": "route progress",
"sort-delay": "current delay", "sort-delay": "current delay",
"sort-id": "timetable id", "sort-id": "timetable id",
"sort-allStopsCount": "total stops", "sort-allStopsCount": "total stops",
"sort-beginDate": "date", "sort-beginDate": "date",
"sort-timetableId": "timetable ID", "sort-timetableId": "timetable ID",
"sort-timestampFrom": "date", "sort-timestampFrom": "date",
"sort-currentDuration": "duration", "sort-currentDuration": "duration",
"filter-noComments": "NO COMMENTS", "filter-noComments": "NO COMMENTS",
"filter-withComments": "COMMENTS", "filter-withComments": "COMMENTS",
"filter-twr": "TWR", "filter-twr": "TWR",
@@ -211,13 +197,10 @@
"filter-other": "OTHER", "filter-other": "OTHER",
"filter-noTimetable": "NO TIMETABLE", "filter-noTimetable": "NO TIMETABLE",
"filter-withTimetable": "TIMETABLE", "filter-withTimetable": "TIMETABLE",
"filter-reset": "RESET FILTERS", "filter-reset": "RESET FILTERS",
"filter-clear": "CLEAR FILTERS", "filter-clear": "CLEAR FILTERS",
"filter-section-timetable-status": "TIMETABLE STATUS", "filter-section-timetable-status": "TIMETABLE STATUS",
"filter-section-special": "SPECIAL TYPE", "filter-section-special": "SPECIAL TYPE",
"filter-all-statuses": "ALL", "filter-all-statuses": "ALL",
"filter-abandoned": "ABANDONED", "filter-abandoned": "ABANDONED",
"filter-fulfilled": "FULFILLED", "filter-fulfilled": "FULFILLED",
@@ -225,7 +208,6 @@
}, },
"filters": { "filters": {
"desc": " &bull; Left mouse click: select / unselect chosen filter <br /> &bull; Double left click: unselect all filters but chosen from a <b class='text--primary'>group</b> <br /> &bull; <span style='color: coral'>RESET</span>: reset all filters from a <b class='text--primary'>group</b>", "desc": " &bull; Left mouse click: select / unselect chosen filter <br /> &bull; Double left click: unselect all filters but chosen from a <b class='text--primary'>group</b> <br /> &bull; <span style='color: coral'>RESET</span>: reset all filters from a <b class='text--primary'>group</b>",
"sections": { "sections": {
"quick": "QUICK FILTERS", "quick": "QUICK FILTERS",
"stationType": "STATION TYPE", "stationType": "STATION TYPE",
@@ -240,18 +222,14 @@
"timetables": "ACTIVE TIMETABLES", "timetables": "ACTIVE TIMETABLES",
"spawns": "OPEN SPAWNS" "spawns": "OPEN SPAWNS"
}, },
"changed-filters-count": "Changed filters:", "changed-filters-count": "Changed filters:",
"no-changed-filters": "No changed filters", "no-changed-filters": "No changed filters",
"all-available": "ALL AVAILABLE", "all-available": "ALL AVAILABLE",
"all-free": "CURRENTLY FREE", "all-free": "CURRENTLY FREE",
"endingStatus": "ENDS SOON", "endingStatus": "ENDS SOON",
"afkStatus": "AFK", "afkStatus": "AFK",
"noSpaceStatus": "NO SPACE", "noSpaceStatus": "NO SPACE",
"unavailableStatus": "UNAVAILABLE", "unavailableStatus": "UNAVAILABLE",
"title": "STATION FILTERS", "title": "STATION FILTERS",
"default": "IN-GAME", "default": "IN-GAME",
"notDefault": "ADDITIONAL", "notDefault": "ADDITIONAL",
@@ -260,7 +238,6 @@
"unavailable": "UNSUPPORTED", "unavailable": "UNSUPPORTED",
"nonPublic": "NON-PUBLIC", "nonPublic": "NON-PUBLIC",
"abandoned": "ABANDONED", "abandoned": "ABANDONED",
"SPK": "SPK", "SPK": "SPK",
"SPK-R": "SPK + MANUAL", "SPK-R": "SPK + MANUAL",
"SPK-M": "SPK + MECH.", "SPK-M": "SPK + MECH.",
@@ -270,29 +247,22 @@
"SPE": "SPE", "SPE": "SPE",
"manual": "MANUAL", "manual": "MANUAL",
"mechanical": "MECHANICAL", "mechanical": "MECHANICAL",
"SUP": "SUP (RASP-UZK)", "SUP": "SUP (RASP-UZK)",
"noSUP": "WITHOUT SUP", "noSUP": "WITHOUT SUP",
"ASDEK": "ASDEK", "ASDEK": "ASDEK",
"noASDEK": "NO ASDEK", "noASDEK": "NO ASDEK",
"SBL": "AUTOMATIC (SBL)", "SBL": "AUTOMATIC (SBL)",
"PBL": "SEMIAUTOMATIC (PBL)", "PBL": "SEMIAUTOMATIC (PBL)",
"modern": "MODERN", "modern": "MODERN",
"semaphores": "SEMAPHORES", "semaphores": "SEMAPHORES",
"mixed": "MIXED", "mixed": "MIXED",
"historical": "HISTORICAL", "historical": "HISTORICAL",
"free": "FREE", "free": "FREE",
"occupied": "OCCUPIED", "occupied": "OCCUPIED",
"withActiveTimetables": "ACTIVE", "withActiveTimetables": "ACTIVE",
"withoutActiveTimetables": "NO ACTIVE", "withoutActiveTimetables": "NO ACTIVE",
"junction": "JUNCTIONS", "junction": "JUNCTIONS",
"nonJunction": "OTHER", "nonJunction": "OTHER",
"sliders": { "sliders": {
"minLevel": "MIN. REQUIRED DISPATCHER LEVEL", "minLevel": "MIN. REQUIRED DISPATCHER LEVEL",
"maxLevel": "MAX. REQUIRED DISPATCHER LEVEL", "maxLevel": "MAX. REQUIRED DISPATCHER LEVEL",
@@ -303,13 +273,11 @@
"minTwoWayCatenary": "MIN. CATENARY DOUBLE TRACK ROUTES", "minTwoWayCatenary": "MIN. CATENARY DOUBLE TRACK ROUTES",
"minTwoWay": "MIN. OTHER DOUBLE TRACK ROUTES" "minTwoWay": "MIN. OTHER DOUBLE TRACK ROUTES"
}, },
"sceneries-search": "SCENERY SEARCH:", "sceneries-search": "SCENERY SEARCH:",
"sceneries-placeholder": "Enter scenery name...", "sceneries-placeholder": "Enter scenery name...",
"authors-search": "SEARCH BY AUTHOR NAME (other filters apply):", "authors-search": "SEARCH BY AUTHOR NAME (other filters apply):",
"authors-placeholder": "Enter the author nickname...", "authors-placeholder": "Enter the author nickname...",
"search-button-title": "SEARCH", "search-button-title": "SEARCH",
"minimum-hours-title": "SHOW ONLY SCENERIES UNTIL:", "minimum-hours-title": "SHOW ONLY SCENERIES UNTIL:",
"now": "NOW", "now": "NOW",
"hour": "h", "hour": "h",
@@ -372,7 +340,6 @@
"no-trains": "No trains to show here!", "no-trains": "No trains to show here!",
"loading": "Loading train data...", "loading": "Loading train data...",
"offline": "Offline ride", "offline": "Offline ride",
"stats": "TRAFFIC STATISTICS", "stats": "TRAFFIC STATISTICS",
"stats-speed": "TRAINS SPEED (MIN, AVG, MAX) [km/h]", "stats-speed": "TRAINS SPEED (MIN, AVG, MAX) [km/h]",
"stats-length": "TIMETABLES LENGTH (MIN, AVG, MAX) [km]", "stats-length": "TIMETABLES LENGTH (MIN, AVG, MAX) [km]",
@@ -380,23 +347,17 @@
"stats-special-twr": "HIGH RISK", "stats-special-twr": "HIGH RISK",
"stats-special-skr": "EXCEEDED STRUCT. GAUGE", "stats-special-skr": "EXCEEDED STRUCT. GAUGE",
"stats-locos": "MOST COMMON UNITS", "stats-locos": "MOST COMMON UNITS",
"current-scenery": "on scenery", "current-scenery": "on scenery",
"current-signal": "at signal", "current-signal": "at signal",
"current-track": "on track", "current-track": "on track",
"vmax-tooltip": "Maximum speed based on vehicles and acceptable train mass",
"vmax-tooltip": "Maximum train speed based on rolling stock vehicles - braked weight is not included",
"catenary-tooltip": "Electrified route", "catenary-tooltip": "Electrified route",
"no-catenary-tooltip": "Non-electrified route", "no-catenary-tooltip": "Non-electrified route",
"sbl-tooltip": "Route with SBL\n(automatic block signalling)", "sbl-tooltip": "Route with SBL\n(automatic block signalling)",
"delayed": "Delayed: ", "delayed": "Delayed: ",
"preponed": "Ahead of schedule: ", "preponed": "Ahead of schedule: ",
"on-time": "On time", "on-time": "On time",
"route-progress": "Progress: ", "route-progress": "Progress: ",
"detailed-timetable": "Detailed timetable for train no. ", "detailed-timetable": "Detailed timetable for train no. ",
"via-title": "Via: ", "via-title": "Via: ",
"no-timetable": "no current timetable", "no-timetable": "no current timetable",
@@ -409,24 +370,20 @@
"timetable-comments": "Exploitation comments available for this train", "timetable-comments": "Exploitation comments available for this train",
"comment": "Exploitation comments for: ", "comment": "Exploitation comments for: ",
"table-limit": "For performance reasons there's a limit of 10 trains shown at the same time.", "table-limit": "For performance reasons there's a limit of 10 trains shown at the same time.",
"last-seen-now": "since now", "last-seen-now": "since now",
"last-seen-min": "since one minute", "last-seen-min": "since one minute",
"last-seen-ago": "since {minutes} minutes", "last-seen-ago": "since {minutes} minutes",
"scenery-offline": "Offline ride", "scenery-offline": "Offline ride",
"timeout": "An error occured while trying to refresh SWDR timetable data!", "timeout": "An error occured while trying to refresh SWDR timetable data!",
"driver-journal-link": "DRIVER JOURNAL", "driver-journal-link": "DRIVER JOURNAL",
"driver-srjp-link": "SRJP",
"driver-return-link": "GO BACK", "driver-return-link": "GO BACK",
"driver-not-found-header": "Train not found! :/", "driver-not-found-header": "Train not found! :/",
"driver-not-found-desc-1": "This train has already been terminated, changed its number or is offline.", "driver-not-found-desc-1": "This train has already been terminated, changed its number or is offline.",
"driver-not-found-desc-2": "You can browse timetable history in the", "driver-not-found-desc-2": "You can browse timetable history in the",
"driver-not-found-journal": "TIMETABLES JOURNAL", "driver-not-found-journal": "TIMETABLES JOURNAL",
"driver-not-found-others": "Player {driver} is online as:", "driver-not-found-others": "Player {driver} is online as:",
"driver-not-found-return": "GO BACK TO THE MAIN SITE", "driver-not-found-return": "GO BACK TO THE MAIN SITE",
"stock-copy": "COPY THE STOCK", "stock-copy": "COPY THE STOCK",
"stock-clipboard-success": "Successfully copied the railway stock in a text form to your clipboard!", "stock-clipboard-success": "Successfully copied the railway stock in a text form to your clipboard!",
"stock-clipboard-failure": "Oops! Something happened and the railway stock couldn't be copied to your clipboard! :/" "stock-clipboard-failure": "Oops! Something happened and the railway stock couldn't be copied to your clipboard! :/"
@@ -451,14 +408,10 @@
"loading": "Loading dispatcher history data...", "loading": "Loading dispatcher history data...",
"no-history": "No dispatcher history found!", "no-history": "No dispatcher history found!",
"data-refreshed-at": "Data refreshed at", "data-refreshed-at": "Data refreshed at",
"section-timetables": "TIMETABLES", "section-timetables": "TIMETABLES",
"section-dispatchers": "DISPATCHERS", "section-dispatchers": "DISPATCHERS",
"no-further-data": "No further data for current parameters", "no-further-data": "No further data for current parameters",
"loading-further-data": "Loading...", "loading-further-data": "Loading...",
"route-length": "Route length:", "route-length": "Route length:",
"station-count": "Stations:", "station-count": "Stations:",
"dispatcher-name": "Author", "dispatcher-name": "Author",
@@ -467,32 +420,25 @@
"timetable-fulfilled": "FULFILLED", "timetable-fulfilled": "FULFILLED",
"timetable-abandoned": "ABANDONED", "timetable-abandoned": "ABANDONED",
"timetable-online-button": "ONLINE TIMETABLE", "timetable-online-button": "ONLINE TIMETABLE",
"online-since": "ONLINE SINCE", "online-since": "ONLINE SINCE",
"duty-lasted": "The duty lasted", "duty-lasted": "The duty lasted",
"hours": "{value} hour | {value} hours", "hours": "{value} hour | {value} hours",
"minutes": "{value} min | {value} mins", "minutes": "{value} min | {value} mins",
"seconds": "{value} s", "seconds": "{value} s",
"entry-details": "DETAILS", "entry-details": "DETAILS",
"no-entry-details": "NO DETAILS AVAILABLE", "no-entry-details": "NO DETAILS AVAILABLE",
"stock-length": "Length", "stock-length": "Length",
"stock-mass": "Mass", "stock-mass": "Mass",
"stock-max-speed": "Max. speed", "stock-max-speed": "Max. speed",
"stock-timetable-speed": "Timetable speed",
"stock-dangers": "ADDITIONAL NOTES", "stock-dangers": "ADDITIONAL NOTES",
"stock-preview": "STOCK PREVIEW", "stock-preview": "STOCK PREVIEW",
"stock-copy": "COPY THE STOCK", "stock-copy": "COPY THE STOCK",
"stock-clipboard-success": "Successfully copied the railway stock in a text form to your clipboard:", "stock-clipboard-success": "Successfully copied the railway stock in a text form to your clipboard:",
"stock-clipboard-failure": "Oops! Something happened and the railway stock couldn't be copied to your clipboard! :/", "stock-clipboard-failure": "Oops! Something happened and the railway stock couldn't be copied to your clipboard! :/",
"load-data": "Load further data...", "load-data": "Load further data...",
"last-seen-at": "Last seen at", "last-seen-at": "Last seen at",
"currently-at": "Currently at", "currently-at": "Currently at",
"driver-stats": { "driver-stats": {
"button": "DRIVER STATS", "button": "DRIVER STATS",
"title": "{name}'s DRIVER STATS", "title": "{name}'s DRIVER STATS",
@@ -503,7 +449,6 @@
"distance": "DISTANCE", "distance": "DISTANCE",
"stations": "STATIONS" "stations": "STATIONS"
}, },
"daily-stats": { "daily-stats": {
"button": "DAILY STATS", "button": "DAILY STATS",
"title": "STATS OF THE DAY", "title": "STATS OF THE DAY",
@@ -515,14 +460,12 @@
"most-active-driver": "The most active driver: {driver} (total driven distance: {distance})", "most-active-driver": "The most active driver: {driver} (total driven distance: {distance})",
"longest-duties": "The longest service: {dispatcher} at {station} (duration: {duration})", "longest-duties": "The longest service: {dispatcher} at {station} (duration: {duration})",
"count": "timetable | timetables", "count": "timetable | timetables",
"rippedSwitches": "RIPPED SWITCHES", "rippedSwitches": "RIPPED SWITCHES",
"derailments": "DERAILMENTS", "derailments": "DERAILMENTS",
"skippedStopSignals": "SKIPPED STOP SIGNALS", "skippedStopSignals": "SKIPPED STOP SIGNALS",
"radioStops": "RADIOSTOPS", "radioStops": "RADIOSTOPS",
"kills": "KILLS" "kills": "KILLS"
}, },
"dispatcher-stats": { "dispatcher-stats": {
"button": "DISPATCHER STATS", "button": "DISPATCHER STATS",
"title": "{name}'s DISPATCHER STATS", "title": "{name}'s DISPATCHER STATS",
@@ -536,13 +479,10 @@
"timetables-max": "LONGEST TIMETABLE", "timetables-max": "LONGEST TIMETABLE",
"timetables-avg": "AVG TIMETABLE DISTANCE" "timetables-avg": "AVG TIMETABLE DISTANCE"
}, },
"stats-loading": "Fetching statistics...", "stats-loading": "Fetching statistics...",
"stats-error": "Oops! An unexpected error occurred while trying to fetch statistics! :/", "stats-error": "Oops! An unexpected error occurred while trying to fetch statistics! :/",
"timetable-location-signal": "signal:", "timetable-location-signal": "signal:",
"timetable-location-route": "route:", "timetable-location-route": "route:",
"history-name": "Scenery name", "history-name": "Scenery name",
"history-hash": "Hash", "history-hash": "Hash",
"history-dispatcher": "Dispatcher", "history-dispatcher": "Dispatcher",
@@ -569,30 +509,22 @@
"project-title": "Project name", "project-title": "Project name",
"one-way-routes": "One way routes", "one-way-routes": "One way routes",
"two-way-routes": "Two way routes", "two-way-routes": "Two way routes",
"option-active-timetables": "Active timetables", "option-active-timetables": "Active timetables",
"option-timetables-history": "Timetables history PL1", "option-timetables-history": "Timetables history PL1",
"option-dispatchers-history": "Dispatchers history PL1", "option-dispatchers-history": "Dispatchers history PL1",
"timetable-via": "ALL TIMETABLES", "timetable-via": "ALL TIMETABLES",
"timetable-issuedFrom": "BEGINS HERE", "timetable-issuedFrom": "BEGINS HERE",
"timetable-terminatingAt": "TERMINATES HERE", "timetable-terminatingAt": "TERMINATES HERE",
"timetable-issued-date": "Issued", "timetable-issued-date": "Issued",
"timetable-issued-by": " by:", "timetable-issued-by": " by:",
"timetable-issued-for": " for driver:", "timetable-issued-for": " for driver:",
"dispatcher-rate": "Rate:", "dispatcher-rate": "Rate:",
"dispatcher-status-changes": "Status changes:", "dispatcher-status-changes": "Status changes:",
"req-level": "all dispatcher levels | dispatcher level {lvl} required | dispatcher level {lvl} required", "req-level": "all dispatcher levels | dispatcher level {lvl} required | dispatcher level {lvl} required",
"history-list-empty": "No recorded scenery history!", "history-list-empty": "No recorded scenery history!",
"forum-topic": "Official {name} forum topic", "forum-topic": "Official {name} forum topic",
"pragotron-link": "Timetable pallet board", "pragotron-link": "Timetable pallet board",
"tablice-link": "Timetable summary board (by Thundo)", "tablice-link": "Timetable summary board (by Thundo)",
"bottom-info": "Show full history in the Journal tab" "bottom-info": "Show full history in the Journal tab"
}, },
"availability": { "availability": {
@@ -609,10 +541,8 @@
"terminated": "Timetable terminated", "terminated": "Timetable terminated",
"begins": "BEGINS HERE", "begins": "BEGINS HERE",
"terminates": "TERMINATES\nHERE", "terminates": "TERMINATES\nHERE",
"from": "FROM", "from": "FROM",
"to": "TO", "to": "TO",
"desc-arriving": "The train is not here yet. It's going to come from: {prevStationName} (szlak {prevDepartureLine})", "desc-arriving": "The train is not here yet. It's going to come from: {prevStationName} (szlak {prevDepartureLine})",
"desc-online": "The train is at the station. It's going to leave to: {nextStationName} (szlak {nextArrivalLine})", "desc-online": "The train is at the station. It's going to leave to: {nextStationName} (szlak {nextArrivalLine})",
"desc-stopped": "The train is at the station and is stopped. It's going to leave towards: {nextStationName} (szlak {nextArrivalLine})", "desc-stopped": "The train is at the station and is stopped. It's going to leave towards: {nextStationName} (szlak {nextArrivalLine})",
+7 -74
View File
@@ -56,20 +56,16 @@
"EI": "ekspres krajowy", "EI": "ekspres krajowy",
"EC": "ekspres międzynarodowy", "EC": "ekspres międzynarodowy",
"EN": "ekspres krajowy nocny", "EN": "ekspres krajowy nocny",
"MP": "międzywojewódzki pospieszny", "MP": "międzywojewódzki pospieszny",
"MO": "międzywojewódzki osobowy", "MO": "międzywojewódzki osobowy",
"MM": "międzynarodowy pospieszny", "MM": "międzynarodowy pospieszny",
"MH": "międzywojewódzki pospieszny (nocny)", "MH": "międzywojewódzki pospieszny (nocny)",
"RP": "wojewódzki pospieszny", "RP": "wojewódzki pospieszny",
"RO": "wojewódzki osobowy", "RO": "wojewódzki osobowy",
"RM": "wojewódzki osobowy międzynarodowy", "RM": "wojewódzki osobowy międzynarodowy",
"RA": "wojewódzki osobowy aglomeracyjny", "RA": "wojewódzki osobowy aglomeracyjny",
"PW": "pasażerski próżny - służbowy", "PW": "pasażerski próżny - służbowy",
"PX": "pasażerski próżny próbny", "PX": "pasażerski próżny próbny",
"TC": "towarowy międzynarodowy intermodalny", "TC": "towarowy międzynarodowy intermodalny",
"TG": "towarowy międzynarodowy masowy", "TG": "towarowy międzynarodowy masowy",
"TR": "towarowy międzynarodowy niemasowy", "TR": "towarowy międzynarodowy niemasowy",
@@ -79,18 +75,14 @@
"TK": "towarowy zdawczy", "TK": "towarowy zdawczy",
"TS": "towarowy próżny próbny", "TS": "towarowy próżny próbny",
"TH": "skład lokomotyw (powyżej 3 pojazdów)", "TH": "skład lokomotyw (powyżej 3 pojazdów)",
"LT": "lokomotywa towarowa luzem", "LT": "lokomotywa towarowa luzem",
"LP": "lokomotywa pasażerska luzem", "LP": "lokomotywa pasażerska luzem",
"LS": "lokomotywa manewrowa luzem", "LS": "lokomotywa manewrowa luzem",
"LZ": "lokomotywa dla poc. utrzymaniowo-naprawczych", "LZ": "lokomotywa dla poc. utrzymaniowo-naprawczych",
"ZN": "inspekcyjny / diagnostyczny", "ZN": "inspekcyjny / diagnostyczny",
"ZU": "inny utrzymaniowy", "ZU": "inny utrzymaniowy",
"ZG": "ratunkowy (kat. wycofana)", "ZG": "ratunkowy (kat. wycofana)",
"AP": "wojewódzki osobowy (kat. wycofana)", "AP": "wojewódzki osobowy (kat. wycofana)",
"E": "elektrowóz", "E": "elektrowóz",
"J": "EZT", "J": "EZT",
"S": "spalinowóz", "S": "spalinowóz",
@@ -129,7 +121,6 @@
"mechaniczne": "mechaniczne", "mechaniczne": "mechaniczne",
"mechaniczne+SPK": "mechaniczne z SPK", "mechaniczne+SPK": "mechaniczne z SPK",
"mechaniczne+SCS": "mechaniczne z SCS", "mechaniczne+SCS": "mechaniczne z SCS",
"abbrevs": { "abbrevs": {
"SPK": "SPK", "SPK": "SPK",
"SCS": "SCS", "SCS": "SCS",
@@ -158,14 +149,11 @@
"options": { "options": {
"filters": "FILTRY", "filters": "FILTRY",
"donate": "WESPRZYJ", "donate": "WESPRZYJ",
"search-button": "SZUKAJ", "search-button": "SZUKAJ",
"reset-button": "ZRESETUJ", "reset-button": "ZRESETUJ",
"sort-title": "SORTUJ WG:", "sort-title": "SORTUJ WG:",
"filter-title": "FILTRUJ WG:", "filter-title": "FILTRUJ WG:",
"search-title": "SZUKAJ:", "search-title": "SZUKAJ:",
"search-train-no": "Nr pociągu", "search-train-no": "Nr pociągu",
"search-train": "Nr pociągu / #", "search-train": "Nr pociągu / #",
"search-driver": "Nick maszynisty", "search-driver": "Nick maszynisty",
@@ -175,10 +163,10 @@
"search-issuedFrom": "Sceneria początkowa", "search-issuedFrom": "Sceneria początkowa",
"search-via": "Przez scenerię", "search-via": "Przez scenerię",
"search-terminatingAt": "Sceneria końcowa", "search-terminatingAt": "Sceneria końcowa",
"search-timetables-date": "Data rozkładu jazdy (UTC+2 / CEST)", "search-timetables-date": "Data rozkładu jazdy",
"search-dispatchers-date": "Data służby (UTC+2 / CEST)", "search-dispatchers-date": "Data służby (od / do)",
"search-date": "Data (UTC+2 / CEST)", "search-date-from": "Data (UTC+2 / CEST)",
"search-date-to": "Data (UTC+2 / CEST)",
"sort-routeDistance": "kilometraż", "sort-routeDistance": "kilometraż",
"sort-allStopsCount": "stacje", "sort-allStopsCount": "stacje",
"sort-beginDate": "data", "sort-beginDate": "data",
@@ -186,7 +174,6 @@
"sort-timestampFrom": "data", "sort-timestampFrom": "data",
"sort-currentDuration": "czas dyżuru", "sort-currentDuration": "czas dyżuru",
"sort-id": "id rozkładu", "sort-id": "id rozkładu",
"sort-mass": "masa", "sort-mass": "masa",
"sort-speed": "prędkość", "sort-speed": "prędkość",
"sort-length": "długość", "sort-length": "długość",
@@ -194,7 +181,6 @@
"sort-progress": "przebyta trasa", "sort-progress": "przebyta trasa",
"sort-delay": "opóźnienie", "sort-delay": "opóźnienie",
"sort-comments": "uwagi ekspl.", "sort-comments": "uwagi ekspl.",
"filter-withComments": "UWAGI EKSPLOATACYJNE", "filter-withComments": "UWAGI EKSPLOATACYJNE",
"filter-noComments": "BEZ UWAG", "filter-noComments": "BEZ UWAG",
"filter-twr": "TWR", "filter-twr": "TWR",
@@ -209,13 +195,10 @@
"filter-other": "INNE", "filter-other": "INNE",
"filter-noTimetable": "BEZ RJ", "filter-noTimetable": "BEZ RJ",
"filter-withTimetable": "ROZKŁAD JAZDY", "filter-withTimetable": "ROZKŁAD JAZDY",
"filter-reset": "ZRESETUJ FILTRY", "filter-reset": "ZRESETUJ FILTRY",
"filter-clear": "WYŁĄCZ FILTRY", "filter-clear": "WYŁĄCZ FILTRY",
"filter-section-timetable-status": "STATUS ROZKŁADU JAZDY", "filter-section-timetable-status": "STATUS ROZKŁADU JAZDY",
"filter-section-special": "TYPY SPECJALNE", "filter-section-special": "TYPY SPECJALNE",
"filter-all-specials": "WSZYSTKIE", "filter-all-specials": "WSZYSTKIE",
"filter-abandoned": "PORZUCONE", "filter-abandoned": "PORZUCONE",
"filter-fulfilled": "WYPEŁNIONE", "filter-fulfilled": "WYPEŁNIONE",
@@ -223,7 +206,6 @@
}, },
"filters": { "filters": {
"desc": " &bull; Kliknięcie: zaznaczenie / odznaczenie filtru <br /> &bull; Podwójne kliknięcie: odznaczenie reszty filtrów z <b class='text--primary'>grupy</b> <br /> &bull; <span style='color: coral'>RESET</span>: zresetowanie filtrów z <b class='text--primary'>grupy</b>", "desc": " &bull; Kliknięcie: zaznaczenie / odznaczenie filtru <br /> &bull; Podwójne kliknięcie: odznaczenie reszty filtrów z <b class='text--primary'>grupy</b> <br /> &bull; <span style='color: coral'>RESET</span>: zresetowanie filtrów z <b class='text--primary'>grupy</b>",
"sections": { "sections": {
"quick": "SZYBKIE FILTRY", "quick": "SZYBKIE FILTRY",
"stationType": "RODZAJ STACJI", "stationType": "RODZAJ STACJI",
@@ -238,18 +220,14 @@
"timetables": "AKTYWNE ROZKŁADY JAZDY", "timetables": "AKTYWNE ROZKŁADY JAZDY",
"spawns": "OTWARTE SPAWNY" "spawns": "OTWARTE SPAWNY"
}, },
"changed-filters-count": "Zmienione filtry:", "changed-filters-count": "Zmienione filtry:",
"no-changed-filters": "Brak zmienionych filtrów", "no-changed-filters": "Brak zmienionych filtrów",
"all-available": "WSZYSTKIE DOSTĘPNE", "all-available": "WSZYSTKIE DOSTĘPNE",
"all-free": "WSZYSTKIE WOLNE", "all-free": "WSZYSTKIE WOLNE",
"endingStatus": "KOŃCZY", "endingStatus": "KOŃCZY",
"afkStatus": "Z/W", "afkStatus": "Z/W",
"noSpaceStatus": "BRAK MIEJSCA", "noSpaceStatus": "BRAK MIEJSCA",
"unavailableStatus": "NIEDOSTĘPNY", "unavailableStatus": "NIEDOSTĘPNY",
"title": "FILTRUJ STACJE", "title": "FILTRUJ STACJE",
"default": "DOMYŚLNA", "default": "DOMYŚLNA",
"notDefault": "POZA PACZKĄ", "notDefault": "POZA PACZKĄ",
@@ -258,7 +236,6 @@
"unavailable": "NIEDOSTĘPNA", "unavailable": "NIEDOSTĘPNA",
"nonPublic": "NIEPUBLICZNA", "nonPublic": "NIEPUBLICZNA",
"abandoned": "WYCOFANA", "abandoned": "WYCOFANA",
"SPK": "SPK", "SPK": "SPK",
"SPK-R": "SPK + RĘCZNE", "SPK-R": "SPK + RĘCZNE",
"SPK-M": "SPK + MECH.", "SPK-M": "SPK + MECH.",
@@ -267,16 +244,12 @@
"SCS-M": "SCS + MECH.", "SCS-M": "SCS + MECH.",
"SPE": "SPE", "SPE": "SPE",
"manual": "RĘCZNE", "manual": "RĘCZNE",
"SUP": "SUP (RASP-UZK)", "SUP": "SUP (RASP-UZK)",
"noSUP": "BEZ SUP", "noSUP": "BEZ SUP",
"ASDEK": "ASDEK", "ASDEK": "ASDEK",
"noASDEK": "BEZ ASDEK-a", "noASDEK": "BEZ ASDEK-a",
"SBL": "SAMOCZYNNA", "SBL": "SAMOCZYNNA",
"PBL": "PÓŁSAMOCZYNNA", "PBL": "PÓŁSAMOCZYNNA",
"mechanical": "MECHANICZNE", "mechanical": "MECHANICZNE",
"modern": "WSPÓŁCZESNA", "modern": "WSPÓŁCZESNA",
"semaphores": "KSZTAŁTOWA", "semaphores": "KSZTAŁTOWA",
@@ -284,13 +257,10 @@
"historical": "HISTORYCZNA", "historical": "HISTORYCZNA",
"free": "WOLNA", "free": "WOLNA",
"occupied": "ZAJĘTA", "occupied": "ZAJĘTA",
"withActiveTimetables": "AKTYWNE", "withActiveTimetables": "AKTYWNE",
"withoutActiveTimetables": "BEZ AKTYWNYCH", "withoutActiveTimetables": "BEZ AKTYWNYCH",
"junction": "WĘZŁOWE", "junction": "WĘZŁOWE",
"nonJunction": "INNE", "nonJunction": "INNE",
"sliders": { "sliders": {
"minLevel": "MIN. WYMAGANY POZIOM DYŻURNEGO", "minLevel": "MIN. WYMAGANY POZIOM DYŻURNEGO",
"maxLevel": "MAKS. WYMAGANY POZIOM DYŻURNEGO", "maxLevel": "MAKS. WYMAGANY POZIOM DYŻURNEGO",
@@ -301,7 +271,6 @@
"minTwoWayCatenary": "SZLAKI DWUTOROWE ZELEKTR. (MINIMUM)", "minTwoWayCatenary": "SZLAKI DWUTOROWE ZELEKTR. (MINIMUM)",
"minTwoWay": "SZLAKI DWUTOROWE NIEZELEKTR. (MINIMUM)" "minTwoWay": "SZLAKI DWUTOROWE NIEZELEKTR. (MINIMUM)"
}, },
"sceneries-search": "WYSZUKAJ SCENERIĘ:", "sceneries-search": "WYSZUKAJ SCENERIĘ:",
"sceneries-placeholder": "Wpisz nazwę scenerii...", "sceneries-placeholder": "Wpisz nazwę scenerii...",
"authors-search": "WYSZUKAJ AUTORA (uwzględnia inne filtry):", "authors-search": "WYSZUKAJ AUTORA (uwzględnia inne filtry):",
@@ -367,23 +336,17 @@
"no-trains": "Brak pociągów do wyświetlenia!", "no-trains": "Brak pociągów do wyświetlenia!",
"loading": "Pobieranie danych o pociągach...", "loading": "Pobieranie danych o pociągach...",
"offline": "Przejazd offline", "offline": "Przejazd offline",
"current-scenery": "na scenerii", "current-scenery": "na scenerii",
"current-signal": "przy semaforze", "current-signal": "przy semaforze",
"current-track": "na szlaku", "current-track": "na szlaku",
"vmax-tooltip": "Maksymalna prędkość obliczona na podstawie pojazdów w składzie i masy dopuszczalnej",
"vmax-tooltip": "Maksymalna prędkość na podstawie pojazdów w składzie - nie bierze pod uwagę masy hamowania",
"catenary-tooltip": "Szlak zelektryfikowany", "catenary-tooltip": "Szlak zelektryfikowany",
"no-catenary-tooltip": "Szlak niezelektryfikowany", "no-catenary-tooltip": "Szlak niezelektryfikowany",
"sbl-tooltip": "Szlak posiadający\nsamoczynną blokadę liniową", "sbl-tooltip": "Szlak posiadający\nsamoczynną blokadę liniową",
"delayed": "Opóźniony: ", "delayed": "Opóźniony: ",
"preponed": "Przed czasem: ", "preponed": "Przed czasem: ",
"on-time": "Planowo", "on-time": "Planowo",
"route-progress": "Postęp: ", "route-progress": "Postęp: ",
"detailed-timetable": "Szczegółowy rozkład jazdy pociągu ", "detailed-timetable": "Szczegółowy rozkład jazdy pociągu ",
"via-title": "Przez: ", "via-title": "Przez: ",
"no-timetable": "brak rozkładu jazdy", "no-timetable": "brak rozkładu jazdy",
@@ -394,25 +357,20 @@
"loco-diesel": "Spalinowóz", "loco-diesel": "Spalinowóz",
"timetable-comments": "Pociąg z uwagami eksploatacyjnymi", "timetable-comments": "Pociąg z uwagami eksploatacyjnymi",
"comment": "Uwagi eksploatacyjne dla: ", "comment": "Uwagi eksploatacyjne dla: ",
"last-seen-now": "od niedawna", "last-seen-now": "od niedawna",
"last-seen-min": "od minuty", "last-seen-min": "od minuty",
"last-seen-ago": "od {minutes} minut", "last-seen-ago": "od {minutes} minut",
"scenery-offline": "Przejazd offline", "scenery-offline": "Przejazd offline",
"timeout": "Wystąpił problem z aktualizacją rozkładów jazdy z SWDR", "timeout": "Wystąpił problem z aktualizacją rozkładów jazdy z SWDR",
"driver-journal-link": "DZIENNIK MASZYNISTY", "driver-journal-link": "DZIENNIK MASZYNISTY",
"driver-srjp-link": "SRJP",
"driver-return-link": "POWRÓT", "driver-return-link": "POWRÓT",
"driver-not-found-header": "Nie znaleziono pociągu! :/", "driver-not-found-header": "Nie znaleziono pociągu! :/",
"driver-not-found-desc-1": "Ten pociąg prawdopodobnie zakończył już swój bieg, zmienił numer lub jest offline.", "driver-not-found-desc-1": "Ten pociąg prawdopodobnie zakończył już swój bieg, zmienił numer lub jest offline.",
"driver-not-found-desc-2": "Historię rozkładów jazdy możesz przejrzeć w", "driver-not-found-desc-2": "Historię rozkładów jazdy możesz przejrzeć w",
"driver-not-found-journal": "DZIENNIKU RJ", "driver-not-found-journal": "DZIENNIKU RJ",
"driver-not-found-others": "Gracz {driver} jest online jako:", "driver-not-found-others": "Gracz {driver} jest online jako:",
"driver-not-found-return": "WRÓĆ NA STRONĘ GŁÓWNĄ", "driver-not-found-return": "WRÓĆ NA STRONĘ GŁÓWNĄ",
"stock-copy": "SKOPIUJ SKŁAD", "stock-copy": "SKOPIUJ SKŁAD",
"stock-clipboard-success": "Pomyślnie skopiowano skład w postaci tekstowej do schowka!", "stock-clipboard-success": "Pomyślnie skopiowano skład w postaci tekstowej do schowka!",
"stock-clipboard-failure": "Ups! Nie udało się skopiować składu do schowka! :/" "stock-clipboard-failure": "Ups! Nie udało się skopiować składu do schowka! :/"
@@ -437,19 +395,15 @@
"loading": "Ładowanie historii dyżurów...", "loading": "Ładowanie historii dyżurów...",
"no-history": "Brak historii dyżurów dla tej scenerii!", "no-history": "Brak historii dyżurów dla tej scenerii!",
"data-refreshed-at": "Dane odświeżone o", "data-refreshed-at": "Dane odświeżone o",
"section-timetables": "ROZKŁADY JAZDY", "section-timetables": "ROZKŁADY JAZDY",
"section-dispatchers": "DYŻURNI", "section-dispatchers": "DYŻURNI",
"no-further-data": "Brak dalszych wyników dla podanych parametrów", "no-further-data": "Brak dalszych wyników dla podanych parametrów",
"loading-further-data": "Ładowanie...", "loading-further-data": "Ładowanie...",
"online-since": "ONLINE OD", "online-since": "ONLINE OD",
"duty-lasted": "Dyżur trwał", "duty-lasted": "Dyżur trwał",
"hours": "{value} godz.", "hours": "{value} godz.",
"minutes": "{value} min.", "minutes": "{value} min.",
"seconds": "{value} sek.", "seconds": "{value} sek.",
"route-length": "Kilometraż:", "route-length": "Kilometraż:",
"station-count": "Stacje:", "station-count": "Stacje:",
"dispatcher-name": "Autor", "dispatcher-name": "Autor",
@@ -458,25 +412,20 @@
"timetable-fulfilled": "WYPEŁNIONY", "timetable-fulfilled": "WYPEŁNIONY",
"timetable-abandoned": "PORZUCONY", "timetable-abandoned": "PORZUCONY",
"timetable-online-button": "RJ ONLINE", "timetable-online-button": "RJ ONLINE",
"entry-details": "SZCZEGÓŁY", "entry-details": "SZCZEGÓŁY",
"no-entry-details": "BRAK DOSTĘPNYCH SZCZEGÓŁÓW", "no-entry-details": "BRAK DOSTĘPNYCH SZCZEGÓŁÓW",
"stock-length": "Długość", "stock-length": "Długość",
"stock-mass": "Masa", "stock-mass": "Masa",
"stock-max-speed": "Prędkość maks.", "stock-max-speed": "Prędkość maks.",
"stock-timetable-speed": "Prędkość RJ",
"stock-dangers": "DODATKOWE UWAGI", "stock-dangers": "DODATKOWE UWAGI",
"stock-preview": "PODGLĄD SKŁADU", "stock-preview": "PODGLĄD SKŁADU",
"stock-copy": "SKOPIUJ SKŁAD", "stock-copy": "SKOPIUJ SKŁAD",
"stock-clipboard-success": "Pomyślnie skopiowano skład w postaci tekstowej do schowka:", "stock-clipboard-success": "Pomyślnie skopiowano skład w postaci tekstowej do schowka:",
"stock-clipboard-failure": "Ups! Nie udało się skopiować składu do schowka! :/", "stock-clipboard-failure": "Ups! Nie udało się skopiować składu do schowka! :/",
"load-data": "Pobierz dalszą historię...", "load-data": "Pobierz dalszą historię...",
"last-seen-at": "Ostatnio widziany na: ", "last-seen-at": "Ostatnio widziany na: ",
"currently-at": "Obecnie na scenerii: ", "currently-at": "Obecnie na scenerii: ",
"driver-stats": { "driver-stats": {
"button": "STAT. MASZYNISTY", "button": "STAT. MASZYNISTY",
"title": "STATYSTYKI MASZYNISTY {name}", "title": "STATYSTYKI MASZYNISTY {name}",
@@ -487,7 +436,6 @@
"distance": "DYSTANS", "distance": "DYSTANS",
"stations": "STACJE" "stations": "STACJE"
}, },
"daily-stats": { "daily-stats": {
"button": "STATYSTYKI DNIA", "button": "STATYSTYKI DNIA",
"title": "STATYSTYKI DNIA", "title": "STATYSTYKI DNIA",
@@ -499,14 +447,12 @@
"most-active-driver": "Najaktywniejszy maszynista: {driver} (łączny przejechany dystans: {distance})", "most-active-driver": "Najaktywniejszy maszynista: {driver} (łączny przejechany dystans: {distance})",
"longest-duties": "Najdłuższa służba: {dispatcher} na scenerii {station} (czas trwania: {duration})", "longest-duties": "Najdłuższa służba: {dispatcher} na scenerii {station} (czas trwania: {duration})",
"count": "rozkład jazdy | rozkładów jazdy", "count": "rozkład jazdy | rozkładów jazdy",
"rippedSwitches": "ROZPRUTE ZWROTNICE", "rippedSwitches": "ROZPRUTE ZWROTNICE",
"derailments": "WYKOLEJENIA", "derailments": "WYKOLEJENIA",
"skippedStopSignals": "POMINIĘTE S1", "skippedStopSignals": "POMINIĘTE S1",
"radioStops": "RADIOSTOPY", "radioStops": "RADIOSTOPY",
"kills": "POTRĄCENIA" "kills": "POTRĄCENIA"
}, },
"dispatcher-stats": { "dispatcher-stats": {
"button": "STATYSTYKI DYŻURNEGO", "button": "STATYSTYKI DYŻURNEGO",
"title": "STATYSTYKI DYŻURNEGO {name}", "title": "STATYSTYKI DYŻURNEGO {name}",
@@ -519,13 +465,10 @@
"timetables-max": "NAJDŁUŻSZY WYSTAWIONY RJ", "timetables-max": "NAJDŁUŻSZY WYSTAWIONY RJ",
"timetables-avg": "ŚREDNIA WYSTAWIONYCH RJ" "timetables-avg": "ŚREDNIA WYSTAWIONYCH RJ"
}, },
"stats-loading": "Pobieranie statystyk...", "stats-loading": "Pobieranie statystyk...",
"stats-error": "Ups! Wystąpił błąd podczas próby pobrania statystyk!", "stats-error": "Ups! Wystąpił błąd podczas próby pobrania statystyk!",
"timetable-location-signal": "semafor:", "timetable-location-signal": "semafor:",
"timetable-location-route": "szlak:", "timetable-location-route": "szlak:",
"history-name": "Sceneria", "history-name": "Sceneria",
"history-hash": "Hash", "history-hash": "Hash",
"history-dispatcher": "Dyżurny", "history-dispatcher": "Dyżurny",
@@ -552,30 +495,22 @@
"project-title": "Projekt", "project-title": "Projekt",
"one-way-routes": "Szlaki jednotorowe", "one-way-routes": "Szlaki jednotorowe",
"two-way-routes": "Szlaki dwutorowe", "two-way-routes": "Szlaki dwutorowe",
"option-active-timetables": "Aktywne rozkłady jazdy", "option-active-timetables": "Aktywne rozkłady jazdy",
"option-timetables-history": "Historia rozkładów PL1", "option-timetables-history": "Historia rozkładów PL1",
"option-dispatchers-history": "Historia dyżurów PL1", "option-dispatchers-history": "Historia dyżurów PL1",
"timetable-via": "WSZYSTKIE RJ", "timetable-via": "WSZYSTKIE RJ",
"timetable-issuedFrom": "ROZPOCZYNA BIEG", "timetable-issuedFrom": "ROZPOCZYNA BIEG",
"timetable-terminatingAt": "KOŃCZY BIEG", "timetable-terminatingAt": "KOŃCZY BIEG",
"timetable-issued-date": "Wystawiony", "timetable-issued-date": "Wystawiony",
"timetable-issued-by": " przez:", "timetable-issued-by": " przez:",
"timetable-issued-for": " dla maszynisty:", "timetable-issued-for": " dla maszynisty:",
"dispatcher-rate": "Ocena:", "dispatcher-rate": "Ocena:",
"dispatcher-status-changes": "Zmiany statusów:", "dispatcher-status-changes": "Zmiany statusów:",
"req-level": "ogólnodostępna | minimum {lvl} poziom dyżurnego | minimum {lvl} poziom dyżurnego", "req-level": "ogólnodostępna | minimum {lvl} poziom dyżurnego | minimum {lvl} poziom dyżurnego",
"history-list-empty": "Brak historii dla tej scenerii!", "history-list-empty": "Brak historii dla tej scenerii!",
"forum-topic": "Oficjalny wątek scenerii {name}", "forum-topic": "Oficjalny wątek scenerii {name}",
"pragotron-link": "Paletowa tablica informacyjna", "pragotron-link": "Paletowa tablica informacyjna",
"tablice-link": "Tablica informacyjna zbiorcza (autorstwa Thundo)", "tablice-link": "Tablica informacyjna zbiorcza (autorstwa Thundo)",
"bottom-info": "Pokaż pełną historię w zakładce Dziennika" "bottom-info": "Pokaż pełną historię w zakładce Dziennika"
}, },
"availability": { "availability": {
@@ -592,10 +527,8 @@
"terminated": "Rozkład jazdy zakończony", "terminated": "Rozkład jazdy zakończony",
"begins": "ROZPOCZYNA\nBIEG", "begins": "ROZPOCZYNA\nBIEG",
"terminates": "KOŃCZY BIEG", "terminates": "KOŃCZY BIEG",
"from": "Z", "from": "Z",
"to": "DO", "to": "DO",
"desc-arriving": "Pociągu nie ma jeszcze na tej scenerii. Przyjedzie z: {prevStationName} (szlak {prevDepartureLine})", "desc-arriving": "Pociągu nie ma jeszcze na tej scenerii. Przyjedzie z: {prevStationName} (szlak {prevDepartureLine})",
"desc-online": "Pociąg jest na tej scenerii. Odjedzie do: {nextStationName} (szlak {nextArrivalLine})", "desc-online": "Pociąg jest na tej scenerii. Odjedzie do: {nextStationName} (szlak {nextArrivalLine})",
"desc-stopped": "Pociąg jest na tej scenerii i odbywa postój. Odjedzie do: {nextStationName} (szlak {nextArrivalLine})", "desc-stopped": "Pociąg jest na tej scenerii i odbywa postój. Odjedzie do: {nextStationName} (szlak {nextArrivalLine})",
+8 -1
View File
@@ -97,6 +97,7 @@ export const useMainStore = defineStore('mainStore', {
warningNotes: timetable.warningNotes, warningNotes: timetable.warningNotes,
hasDangerousCargo: timetable.hasDangerousCargo, hasDangerousCargo: timetable.hasDangerousCargo,
hasExtraDeliveries: timetable.hasExtraDeliveries, hasExtraDeliveries: timetable.hasExtraDeliveries,
trainMaxSpeed: timetable.trainMaxSpeed,
timetablePath: timetable.path.split(';').map((pathElementString) => { timetablePath: timetable.path.split(';').map((pathElementString) => {
const [arrival, station, departure] = pathElementString.split(','); const [arrival, station, departure] = pathElementString.split(',');
@@ -112,7 +113,10 @@ export const useMainStore = defineStore('mainStore', {
: undefined : undefined
} as Train; } as Train;
const stationNameKey = train.currentStationName.indexOf('.sc') != -1 ? train.currentStationName.split(' ').slice(0, -1).join(' ') : train.currentStationName; const stationNameKey =
train.currentStationName.indexOf('.sc') != -1
? train.currentStationName.split(' ').slice(0, -1).join(' ')
: train.currentStationName;
// Sceneries trains map // Sceneries trains map
if (sceneriesTrains.has(stationNameKey)) { if (sceneriesTrains.has(stationNameKey)) {
@@ -319,6 +323,8 @@ export const useMainStore = defineStore('mainStore', {
return apiStore.sceneryData.map((scenery) => { return apiStore.sceneryData.map((scenery) => {
const routes = scenery.routesInfo.reduce( const routes = scenery.routesInfo.reduce(
(acc, route) => { (acc, route) => {
acc['all'].push(route);
if (route.hidden) return acc; if (route.hidden) return acc;
const tracksKey = route.routeTracks == 2 ? 'double' : 'single'; const tracksKey = route.routeTracks == 2 ? 'double' : 'single';
@@ -349,6 +355,7 @@ export const useMainStore = defineStore('mainStore', {
doubleElectrifiedNames: [], doubleElectrifiedNames: [],
doubleOtherNames: [], doubleOtherNames: [],
sblNames: [], sblNames: [],
all: [],
minRouteSpeed: 0, minRouteSpeed: 0,
maxRouteSpeed: 0 maxRouteSpeed: 0
} as StationRoutes } as StationRoutes
+2 -2
View File
@@ -196,9 +196,7 @@ export namespace API {
timetableId: number; timetableId: number;
category: string; category: string;
route: string; route: string;
stopList: TimetableStop[]; stopList: TimetableStop[];
TWR: boolean; TWR: boolean;
SKR: boolean; SKR: boolean;
hasDangerousCargo: boolean; hasDangerousCargo: boolean;
@@ -206,6 +204,7 @@ export namespace API {
warningNotes: string | null; warningNotes: string | null;
sceneries: string[]; sceneries: string[];
path: string; path: string;
trainMaxSpeed: number;
} }
} }
@@ -270,6 +269,7 @@ export namespace API {
warningNotes: string | null; warningNotes: string | null;
hasDangerousCargo: boolean; hasDangerousCargo: boolean;
hasExtraDeliveries: boolean; hasExtraDeliveries: boolean;
trainMaxSpeed?: number;
} }
export type Response = Data[]; export type Response = Data[];
+4
View File
@@ -1,4 +1,5 @@
import { RouteLocationRaw } from 'vue-router'; import { RouteLocationRaw } from 'vue-router';
import { StationJSONData } from '../store/typings';
export type Availability = 'default' | 'unavailable' | 'nonPublic' | 'abandoned' | 'nonDefault'; export type Availability = 'default' | 'unavailable' | 'nonPublic' | 'abandoned' | 'nonDefault';
export type ScenerySpawnType = 'passenger' | 'freight' | 'loco' | 'all'; export type ScenerySpawnType = 'passenger' | 'freight' | 'loco' | 'all';
@@ -90,6 +91,7 @@ export interface TrainTimetableData {
routeDistance: number; routeDistance: number;
sceneries: string[]; sceneries: string[];
timetablePath: TimetablePathElement[]; timetablePath: TimetablePathElement[];
trainMaxSpeed: number;
} }
export interface Station { export interface Station {
@@ -122,6 +124,7 @@ export interface StationGeneralInfo {
export interface StationRoutes { export interface StationRoutes {
single: StationRoutesInfo[]; single: StationRoutesInfo[];
double: StationRoutesInfo[]; double: StationRoutesInfo[];
all: StationRoutesInfo[];
singleElectrifiedNames: string[]; singleElectrifiedNames: string[];
singleOtherNames: string[]; singleOtherNames: string[];
@@ -142,6 +145,7 @@ export interface StationRoutesInfo {
routeSpeed: number; routeSpeed: number;
routeTracks: number; routeTracks: number;
hidden?: boolean; hidden?: boolean;
realLineNo?: number;
} }
export interface ActiveScenery { export interface ActiveScenery {
+25 -4
View File
@@ -2,13 +2,28 @@
<section class="driver-view"> <section class="driver-view">
<div class="view-wrapper"> <div class="view-wrapper">
<div v-if="chosenTrain"> <div v-if="chosenTrain">
<div class="actions"> <div class="actions-container">
<div class="actions actions-left">
<a class="a-button btn--image" @click="$router.back()"> <a class="a-button btn--image" @click="$router.back()">
<img src="/images/icon-back.svg" alt="train icon" /> <img src="/images/icon-back.svg" alt="train icon" />
<span> <span>
{{ $t('trains.driver-return-link') }} {{ $t('trains.driver-return-link') }}
</span> </span>
</a> </a>
</div>
<div class="actions actions-right">
<a
class="a-button btn--image"
:href="`https://srjp-td2.web.app/?id=${chosenTrain.id}`"
target="_blank"
>
<span class="hidable">
{{ $t('trains.driver-srjp-link') }}
</span>
<img src="/images/icon-srjp.svg" alt="srjp icon" />
</a>
<router-link <router-link
:to="`/journal/timetables?search-driver=${chosenTrain.driverName}`" :to="`/journal/timetables?search-driver=${chosenTrain.driverName}`"
@@ -21,6 +36,7 @@
<img src="/images/icon-train.svg" alt="train icon" /> <img src="/images/icon-train.svg" alt="train icon" />
</router-link> </router-link>
</div> </div>
</div>
<div class="train-card"> <div class="train-card">
<TrainInfo :train="chosenTrain" :extended="true" /> <TrainInfo :train="chosenTrain" :extended="true" />
@@ -142,14 +158,19 @@ $viewBgCol: #1a1a1a;
min-height: calc(100vh - 7em); min-height: calc(100vh - 7em);
} }
.actions { .actions-container {
display: flex; display: flex;
align-items: flex-end; align-items: flex-end;
justify-content: space-between; justify-content: space-between;
gap: 0.5em; gap: 0.5em;
} }
.actions > a { .actions {
display: flex;
gap: 0.5em;
}
.actions-container > .actions > a {
background-color: $viewBgCol; background-color: $viewBgCol;
padding: 0.5em; padding: 0.5em;
border-radius: 0.5em 0.5em 0 0; border-radius: 0.5em 0.5em 0 0;
@@ -189,7 +210,7 @@ $viewBgCol: #1a1a1a;
} }
@include smallScreen { @include smallScreen {
.actions > a > span.hidable { span.hidable {
display: none; display: none;
} }
} }
+13 -12
View File
@@ -65,6 +65,8 @@ interface DispatchersQueryParams {
stationHash?: string; stationHash?: string;
timestampFrom?: number; timestampFrom?: number;
timestampTo?: number; timestampTo?: number;
dateFrom?: string;
dateTo?: string;
countFrom?: number; countFrom?: number;
countLimit?: number; countLimit?: number;
sortBy?: Journal.DispatcherSorter['id']; sortBy?: Journal.DispatcherSorter['id'];
@@ -127,7 +129,8 @@ export default defineComponent({
const searchersValues = reactive({ const searchersValues = reactive({
'search-dispatcher': '', 'search-dispatcher': '',
'search-station': '', 'search-station': '',
'search-date': '' 'search-date-from': '',
'search-date-to': ''
} as Journal.DispatcherSearchType); } as Journal.DispatcherSearchType);
provide('sorterActive', sorterActive); provide('sorterActive', sorterActive);
@@ -189,7 +192,8 @@ export default defineComponent({
handleRouteParams() { handleRouteParams() {
this.$router.push({ this.$router.push({
query: { query: {
'search-date': this.searchersValues['search-date'] || undefined, 'search-date-from': this.searchersValues['search-date-from'] || undefined,
'search-date-to': this.searchersValues['search-date-to'] || undefined,
'search-station': this.searchersValues['search-station'] || undefined, 'search-station': this.searchersValues['search-station'] || undefined,
'search-dispatcher': this.searchersValues['search-dispatcher'] || undefined 'search-dispatcher': this.searchersValues['search-dispatcher'] || undefined
} }
@@ -235,7 +239,8 @@ export default defineComponent({
}, },
setOptions(options: { [key: string]: string }) { setOptions(options: { [key: string]: string }) {
this.searchersValues['search-date'] = options['search-date'] ?? ''; this.searchersValues['search-date-from'] = options['search-date-from'] ?? '';
this.searchersValues['search-date-to'] = options['search-date-to'] ?? '';
this.searchersValues['search-station'] = options['search-station'] ?? ''; this.searchersValues['search-station'] = options['search-station'] ?? '';
this.searchersValues['search-dispatcher'] = options['search-dispatcher'] ?? ''; this.searchersValues['search-dispatcher'] = options['search-dispatcher'] ?? '';
@@ -272,17 +277,13 @@ export default defineComponent({
const dispatcherName = this.searchersValues['search-dispatcher'].trim() || undefined; const dispatcherName = this.searchersValues['search-dispatcher'].trim() || undefined;
const stationName = this.searchersValues['search-station'].trim() || undefined; const stationName = this.searchersValues['search-station'].trim() || undefined;
const dateString = this.searchersValues['search-date'].trim() || undefined; const dateFromString = this.searchersValues['search-date-from'].trim() || undefined;
const dateToString = this.searchersValues['search-date-to'].trim() || undefined;
const timestampFrom = dateString
? Date.parse(new Date(dateString).toISOString()) - 120 * 60 * 1000
: undefined;
const timestampTo = timestampFrom ? timestampFrom + 86400000 : undefined;
queryParams['dispatcherName'] = dispatcherName; queryParams['dispatcherName'] = dispatcherName;
queryParams['timestampFrom'] = timestampFrom; queryParams['dateFrom'] = dateFromString;
queryParams['timestampTo'] = timestampTo; queryParams['dateTo'] = dateToString ? `${dateToString}T23:00:00` : undefined;
queryParams['countLimit'] = 30; queryParams['countLimit'] = 30;
if (stationName && stationName.startsWith('#')) if (stationName && stationName.startsWith('#'))
+2 -2
View File
@@ -215,7 +215,7 @@ export default defineComponent({
'search-issuedFrom': '', 'search-issuedFrom': '',
'search-via': '', 'search-via': '',
'search-terminatingAt': '', 'search-terminatingAt': '',
'search-date': '' 'search-date-from': ''
} as Journal.TimetableSearchType); } as Journal.TimetableSearchType);
const countFromIndex = ref(0); const countFromIndex = ref(0);
@@ -352,7 +352,7 @@ export default defineComponent({
const driverName = this.searchersValues['search-driver'].trim() || undefined; const driverName = this.searchersValues['search-driver'].trim() || undefined;
const trainNo = this.searchersValues['search-train'].trim() || undefined; const trainNo = this.searchersValues['search-train'].trim() || undefined;
const authorName = this.searchersValues['search-dispatcher'].trim() || undefined; const authorName = this.searchersValues['search-dispatcher'].trim() || undefined;
const dateFrom = this.searchersValues['search-date'].trim() || undefined; const dateFrom = this.searchersValues['search-date-from'].trim() || undefined;
const issuedFrom = this.searchersValues['search-issuedFrom'].trim() || undefined; const issuedFrom = this.searchersValues['search-issuedFrom'].trim() || undefined;
const via = this.searchersValues['search-via'].trim() || undefined; const via = this.searchersValues['search-via'].trim() || undefined;
const terminatingAt = this.searchersValues['search-terminatingAt'].trim() || undefined; const terminatingAt = this.searchersValues['search-terminatingAt'].trim() || undefined;