mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
113 lines
3.0 KiB
Vue
113 lines
3.0 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="historyItem in dispatcherHistoryList">
|
|
<div>
|
|
<span class="text--grayed">#{{ historyItem.stationHash }} </span>
|
|
<b class="text--primary">{{ historyItem.dispatcherName }}</b>
|
|
</div>
|
|
|
|
<div v-if="historyItem.timestampTo">
|
|
<b>{{ $d(historyItem.timestampFrom) }}</b>
|
|
|
|
{{ timestampToString(historyItem.timestampFrom) }}
|
|
- {{ timestampToString(historyItem.timestampTo) }} ({{ calculateDuration(historyItem.currentDuration) }})
|
|
</div>
|
|
|
|
<div class="dispatcher-online" v-else>
|
|
{{ $t('journal.online-since') }}
|
|
<b>{{ timestampToString(historyItem.timestampFrom) }}</b>
|
|
({{ calculateDuration(historyItem.currentDuration) }})
|
|
<span></span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
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 axios from 'axios';
|
|
import { defineComponent, PropType } from 'vue';
|
|
import Loading from '../Global/Loading.vue';
|
|
|
|
export default defineComponent({
|
|
name: 'SceneryDispatchersHistory',
|
|
mixins: [dateMixin],
|
|
props: {
|
|
station: {
|
|
type: Object as PropType<Station>,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
dispatcherHistoryList: [] as DispatcherHistory[],
|
|
dataStatus: DataStatus.Loading,
|
|
};
|
|
},
|
|
mounted() {
|
|
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;
|
|
|
|
console.log(this.dispatcherHistoryList);
|
|
} 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;
|
|
}
|
|
|
|
.dispatcher-online {
|
|
color: springgreen;
|
|
}
|
|
|
|
@include smallScreen {
|
|
.list-item {
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
</style>
|
|
|