mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
125 lines
2.9 KiB
Vue
125 lines
2.9 KiB
Vue
<template>
|
|
<div>
|
|
<div class="journal_warning" v-if="store.isOffline">
|
|
{{ $t('app.offline') }}
|
|
</div>
|
|
|
|
<Loading v-else-if="dataStatus == Status.Data.Loading" />
|
|
|
|
<div v-else-if="dataStatus == Status.Data.Error" class="journal_warning error">
|
|
{{ $t('app.error') }}
|
|
</div>
|
|
|
|
<div v-else-if="timetableHistory.length == 0" class="journal_warning">
|
|
{{ $t('app.no-result') }}
|
|
</div>
|
|
|
|
<div v-else>
|
|
<transition-group name="list-anim" class="journal-list" tag="ul">
|
|
<JournalTimetableEntry
|
|
v-for="(timetableEntry, i) in timetableHistory"
|
|
:key="timetableEntry.id"
|
|
:timetableEntry="timetableEntry"
|
|
:onToggleShowExtraInfo="() => toggleExtraInfo(timetableEntry.id)"
|
|
:showExtraInfo="extraInfoIndexes.includes(timetableEntry.id)"
|
|
/>
|
|
</transition-group>
|
|
|
|
<AddDataButton
|
|
:list="timetableHistory"
|
|
:scrollDataLoaded="scrollDataLoaded"
|
|
:scrollNoMoreData="scrollNoMoreData"
|
|
@addHistoryData="addHistoryData"
|
|
/>
|
|
</div>
|
|
|
|
<div class="journal_warning" v-if="scrollNoMoreData">{{ $t('journal.no-further-data') }}</div>
|
|
|
|
<div class="journal_warning" v-else-if="!scrollDataLoaded">
|
|
{{ $t('journal.loading-further-data') }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, PropType } from 'vue';
|
|
|
|
import Loading from '../../Global/Loading.vue';
|
|
import AddDataButton from '../../Global/AddDataButton.vue';
|
|
import JournalTimetableEntry from './JournalTimetableEntry.vue';
|
|
|
|
import { useMainStore } from '../../../store/mainStore';
|
|
import { Status } from '../../../typings/common';
|
|
import { API } from '../../../typings/api';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
Loading,
|
|
AddDataButton,
|
|
JournalTimetableEntry
|
|
},
|
|
|
|
props: {
|
|
timetableHistory: {
|
|
type: Array as PropType<API.TimetableHistory.Response>,
|
|
required: true
|
|
},
|
|
scrollNoMoreData: {
|
|
type: Boolean
|
|
},
|
|
scrollDataLoaded: {
|
|
type: Boolean
|
|
},
|
|
addHistoryData: {
|
|
type: Function as PropType<() => void>
|
|
},
|
|
dataStatus: {
|
|
type: Number as PropType<Status.Data>
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
Status,
|
|
store: useMainStore(),
|
|
extraInfoIndexes: [] as number[]
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
'$route.query': {
|
|
deep: true,
|
|
handler() {
|
|
this.extraInfoIndexes.length = 0;
|
|
}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
toggleExtraInfo(id: number) {
|
|
const existingIdx = this.extraInfoIndexes.indexOf(id);
|
|
|
|
if (existingIdx != -1) this.extraInfoIndexes.splice(existingIdx, 1);
|
|
else this.extraInfoIndexes.push(id);
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@use '../../../styles/animations';
|
|
@use '../../../styles/journal-section';
|
|
@use '../../../styles/responsive';
|
|
|
|
@include responsive.smallScreen{
|
|
.journal_item-info {
|
|
text-align: center;
|
|
}
|
|
|
|
.item-route {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
</style>
|