Dodano możliwość podglądu uwag eksploatacyjnych rozkładu jazdy

This commit is contained in:
2022-01-06 21:15:16 +01:00
parent 11c6f25988
commit 6e28263b01
4 changed files with 64 additions and 20 deletions
+17 -2
View File
@@ -14,7 +14,10 @@
{{ Math.floor(stop.stopDistance) }}
</span>
<span class="stop-name" v-html="stop.stopName"></span>
<span class="stop-name">
<span v-html="stop.stopName"></span>
<img v-if="stop.comments" :src="icons.warning" :title="`Uwagi eksploatacyjne: ${stop.comments}`">
</span>
<span class="stop-date">
<span
class="date arrival"
@@ -59,6 +62,7 @@
</span>
</span>
<div class="stop_line" v-if="i < followingStops.length - 1">
<div class="progress-bar"></div>
@@ -88,8 +92,15 @@ export default defineComponent({
required: true,
},
},
emits: ['click'],
data: () => ({
icons: {
warning: require("@/assets/icon-warning.svg")
}
}),
setup(props) {
return {
lastConfirmed: computed(() => {
@@ -177,7 +188,6 @@ $stopNameClr: #22a8d1;
top: -1px;
left: -17px;
height: 100%;
width: 3px;
@@ -335,6 +345,11 @@ ul.stop_list > li.stop {
display: flex;
align-items: center;
img {
width: 1em;
margin-left: 0.5em;
}
}
.stop-date {
+41 -18
View File
@@ -19,10 +19,9 @@
:key="i"
tabindex="0"
@keydown.enter="changeScheduleShowState(train.timetableData?.timetableId)"
:ref="el => registerReference(el, train.timetableData?.timetableId)"
:ref="(el) => registerReference(el, train.timetableData?.timetableId)"
>
<div class="wrapper" @click="changeScheduleShowState(train.timetableData?.timetableId)">
<div class="row-wrapper" @click="changeScheduleShowState(train.timetableData?.timetableId)">
<span class="info">
<div class="info_timetable" v-if="!train.timetableData">
<div class="timetable_general">
@@ -58,7 +57,10 @@
<span class="activator">
SRJP
<img :src="showedSchedule == train.timetableData.timetableId ? ascSVG : descSVG" alt="arrow-icon" />
<img
:src="showedSchedule == train.timetableData.timetableId ? icons.arrowAsc : icons.arrowDesc"
alt="arrow-icon"
/>
</span>
<span class="content"> {{ $t('trains.detailed-timetable') }} {{ train.trainNo }} </span>
@@ -77,6 +79,10 @@
</span>
</div>
</div>
<div class="info_comments" v-if="hasTimetableComments(train.timetableData)">
<img :src="icons.warning" title="Pociąg z uwagami eksplatacyjnymi" />
</div>
</span>
<span class="driver">
@@ -168,8 +174,11 @@ export default defineComponent({
showedSchedule: 0,
defaultLocoImage: require('@/assets/unknown.png'),
ascSVG: require('@/assets/icon-arrow-asc.svg'),
descSVG: require('@/assets/icon-arrow-desc.svg'),
icons: {
warning: require('@/assets/icon-warning.svg'),
arrowAsc: require('@/assets/icon-arrow-asc.svg'),
arrowDesc: require('@/assets/icon-arrow-desc.svg'),
},
stats: {
main: [
@@ -261,7 +270,7 @@ export default defineComponent({
},
registerReference(el: HTMLElement, timetableId: number | undefined) {
if(timetableId) this.elList[timetableId] = el;
if (timetableId) this.elList[timetableId] = el;
},
focusOnTrain(trainNoStr: string) {
@@ -321,6 +330,10 @@ export default defineComponent({
return '';
},
hasTimetableComments(timetableData: Train['timetableData']) {
return timetableData?.followingStops.some((stop) => stop.comments) || false;
},
},
activated() {
@@ -374,6 +387,16 @@ img.train-image {
background-color: var(--clr-secondary);
cursor: pointer;
.row-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
grid-template-rows: 1fr;
@include smallScreen() {
font-size: 1.2em;
}
}
}
&_cars {
@@ -384,18 +407,12 @@ img.train-image {
}
}
.wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
grid-template-rows: 1fr;
@include smallScreen() {
font-size: 1.2em;
}
}
.info {
.timetable {
display: flex;
flex-direction: column;
justify-content: space-between;
& .timetable {
&_hero {
display: flex;
}
@@ -450,6 +467,12 @@ img.train-image {
}
}
}
&_comments {
img {
width: 2em;
}
}
}
.driver {