mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 21:38:13 +00:00
127 lines
3.5 KiB
Vue
127 lines
3.5 KiB
Vue
<template>
|
|
<section class="scenery-dispatchers-history scenery-section">
|
|
<Loading v-if="dataStatus != 2" />
|
|
|
|
<div class="list-warning" v-else-if="dispatcherHistoryList.length == 0">{{ $t('scenery.history-list-empty') }}</div>
|
|
|
|
<ul class="history-list" v-else>
|
|
<li class="list-item" v-for="item in dispatcherHistoryList">
|
|
<router-link class="item-general" :to="`/journal/dispatchers?dispatcherName=${item.dispatcherName}`">
|
|
<span class="text--grayed">#{{ item.stationHash }} </span>
|
|
<b
|
|
v-if="item.dispatcherLevel !== null"
|
|
class="level-badge dispatcher"
|
|
:style="calculateExpStyle(item.dispatcherLevel, item.dispatcherIsSupporter)"
|
|
>
|
|
{{ item.dispatcherLevel >= 2 ? item.dispatcherLevel : 'L' }}
|
|
</b>
|
|
|
|
<b>{{ item.dispatcherName }}</b>
|
|
</router-link>
|
|
|
|
<div v-if="item.timestampTo">
|
|
<b>{{ $d(item.timestampFrom) }}</b>
|
|
|
|
{{ timestampToString(item.timestampFrom) }}
|
|
- {{ timestampToString(item.timestampTo) }} ({{ calculateDuration(item.currentDuration) }})
|
|
</div>
|
|
|
|
<div class="dispatcher-online" v-else>
|
|
{{ $t('journal.online-since') }}
|
|
<b>{{ timestampToString(item.timestampFrom) }}</b>
|
|
({{ calculateDuration(item.currentDuration) }})
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import axios from 'axios';
|
|
import { defineComponent, PropType } from 'vue';
|
|
import dateMixin from '../../mixins/dateMixin';
|
|
import { DataStatus } from '../../scripts/enums/DataStatus';
|
|
import { DispatcherHistory } from '../../scripts/interfaces/api/DispatchersAPIData';
|
|
import Station from '../../scripts/interfaces/Station';
|
|
import { URLs } from '../../scripts/utils/apiURLs';
|
|
import Loading from '../Global/Loading.vue';
|
|
import styleMixin from '../../mixins/styleMixin';
|
|
|
|
export default defineComponent({
|
|
name: 'SceneryDispatchersHistory',
|
|
mixins: [dateMixin, styleMixin],
|
|
props: {
|
|
station: {
|
|
type: Object as PropType<Station>,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
dispatcherHistoryList: [] as DispatcherHistory[],
|
|
dataStatus: DataStatus.Loading,
|
|
};
|
|
},
|
|
activated() {
|
|
this.fetchAPIData();
|
|
},
|
|
methods: {
|
|
async fetchAPIData(countFrom = 0, countLimit = 30) {
|
|
try {
|
|
const requestString = `${URLs.stacjownikAPI}/api/getDispatchers?stationName=${this.station.name}&countFrom=${countFrom}&countLimit=${countLimit}`;
|
|
const historyAPIData: DispatcherHistory[] = await (await axios.get(requestString)).data;
|
|
|
|
this.dispatcherHistoryList = historyAPIData;
|
|
this.dataStatus = DataStatus.Loaded;
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
},
|
|
},
|
|
components: { Loading },
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../styles/responsive.scss';
|
|
@import '../../styles/SceneryView/styles.scss';
|
|
|
|
.history-list {
|
|
padding: 0 0.5em;
|
|
}
|
|
|
|
.list-item {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
|
|
text-align: left;
|
|
background-color: #353535;
|
|
padding: 0.5em;
|
|
margin: 0.5em 0;
|
|
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.item-general {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 0.25em;
|
|
}
|
|
|
|
.dispatcher-online {
|
|
color: springgreen;
|
|
}
|
|
|
|
@include smallScreen {
|
|
.history-list {
|
|
font-size: 1.1em;
|
|
}
|
|
.list-item {
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
</style>
|