mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
83 lines
2.4 KiB
Vue
83 lines
2.4 KiB
Vue
<template>
|
|
<div>
|
|
<transition name="status-anim" mode="out-in">
|
|
<div :key="dataStatus">
|
|
<div class="journal_warning" v-if="store.isOffline">
|
|
{{ $t('app.offline') }}
|
|
</div>
|
|
|
|
<Loading v-else-if="dataStatus == DataStatus.Loading" />
|
|
|
|
<div v-else-if="dataStatus == DataStatus.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>
|
|
<TimetableHistoryList :timetableHistory="timetableHistory" />
|
|
|
|
<AddDataButton
|
|
:list="timetableHistory"
|
|
:scrollDataLoaded="scrollDataLoaded"
|
|
:scrollNoMoreData="scrollNoMoreData"
|
|
@addHistoryData="addHistoryData"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
|
|
<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 { DataStatus } from '../../../scripts/enums/DataStatus';
|
|
import { TimetableHistory } from '../../../scripts/interfaces/api/TimetablesAPIData';
|
|
import { useStore } from '../../../store/store';
|
|
|
|
import Loading from '../../Global/Loading.vue';
|
|
import ProgressBar from '../../Global/ProgressBar.vue';
|
|
import AddDataButton from '../../Global/AddDataButton.vue';
|
|
import TimetableHistoryList from './TimetableHistoryList.vue';
|
|
|
|
export default defineComponent({
|
|
components: { ProgressBar, Loading, AddDataButton, TimetableHistoryList },
|
|
|
|
props: {
|
|
timetableHistory: {
|
|
type: Array as PropType<TimetableHistory[]>,
|
|
required: true,
|
|
},
|
|
scrollNoMoreData: {
|
|
type: Boolean,
|
|
},
|
|
scrollDataLoaded: {
|
|
type: Boolean,
|
|
},
|
|
addHistoryData: {
|
|
type: Function as PropType<() => void>,
|
|
},
|
|
dataStatus: {
|
|
type: Number as PropType<DataStatus>,
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
DataStatus,
|
|
store: useStore(),
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../../styles/JournalSection.scss';
|
|
@import '../../../styles/animations.scss';
|
|
</style>
|