mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
117 lines
2.8 KiB
Vue
117 lines
2.8 KiB
Vue
<template>
|
|
<div class="stock-list">
|
|
<ul>
|
|
<li v-for="(stockName, i) in trainStockList" :key="i">
|
|
<p>
|
|
{{ stockName.split(':')[0].split('_').splice(0, 2).join(' ') }}
|
|
{{ stockName.split(':')[1] }}
|
|
</p>
|
|
|
|
<span>
|
|
<img
|
|
:src="`https://rj.td2.info.pl/dist/img/thumbnails/${stockName.split(':')[0]}${
|
|
/^EN/.test(stockName) ? 'rb' : ''
|
|
}.png`"
|
|
@error="onImageError($event, stockName)"
|
|
width="400"
|
|
height="60"
|
|
/>
|
|
|
|
<img
|
|
v-if="/^(EN|2EN)/.test(stockName)"
|
|
:src="`https://rj.td2.info.pl/dist/img/thumbnails/${stockName.split(':')[0]}s.png`"
|
|
@error="
|
|
(event) => ((event.target as HTMLImageElement).src = '/images/icon-loco-ezt-s.png')
|
|
"
|
|
/>
|
|
|
|
<img
|
|
class="train-thumbnail"
|
|
v-if="/^EN71/.test(stockName)"
|
|
:src="`https://rj.td2.info.pl/dist/img/thumbnails/${stockName.split(':')[0]}s.png`"
|
|
@error="
|
|
(event) => ((event.target as HTMLImageElement).src = '/images/icon-loco-ezt-s.png')
|
|
"
|
|
/>
|
|
|
|
<img
|
|
class="train-thumbnail"
|
|
v-if="/^(EN|2EN)/.test(stockName)"
|
|
:src="`https://rj.td2.info.pl/dist/img/thumbnails/${stockName.split(':')[0]}ra.png`"
|
|
@error="
|
|
(event) => ((event.target as HTMLImageElement).src = '/images/icon-loco-ezt-ra.png')
|
|
"
|
|
/>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { PropType, defineComponent } from 'vue';
|
|
import { useStore } from '../../store/mainStore';
|
|
import { API } from '../../typings/api';
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
trainStockList: {
|
|
type: Array as PropType<string[]>,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
store: useStore()
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
onImageError(event: Event, stockName: string) {
|
|
const fallbackName =
|
|
Object.keys(this.store.rollingStockData!.info).find((type) => {
|
|
return this.store.rollingStockData!.info[type as keyof API.RollingStock.Info].find(
|
|
(v) => v[0] === stockName.split(':')[0]
|
|
);
|
|
}) || 'vehicle-unknown';
|
|
|
|
(event.target as HTMLImageElement).src = `/images/icon-${fallbackName}.png`;
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.stock-list {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.stock-list ul {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
overflow: auto;
|
|
margin: 0 auto;
|
|
padding: 1em 0;
|
|
}
|
|
|
|
ul > li > span {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
img {
|
|
max-height: 60px;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
color: #aaa;
|
|
font-size: 0.9em;
|
|
margin-bottom: 1em;
|
|
}
|
|
</style>
|