mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-04 05:48:11 +00:00
Poprawki w infinite scrollu
This commit is contained in:
@@ -21,13 +21,15 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul v-else>
|
<ul v-else>
|
||||||
<li v-for="(item, i) in historyList" :key="item.timetableId" :style="`--delay: ${i * 50}ms`">
|
<transition-group name="history-list-anim">
|
||||||
|
<li v-for="(item, i) in historyList" :key="item.timetableId">
|
||||||
<div class="history_item-top">
|
<div class="history_item-top">
|
||||||
<span>
|
<span>
|
||||||
<span @click="navigateToTrain(!item.terminated ? item.trainNo : null)" style="cursor: pointer">
|
<span @click="navigateToTrain(!item.terminated ? item.trainNo : null)" style="cursor: pointer">
|
||||||
<b class="text--primary">{{ item.trainCategoryCode }} </b>
|
<b class="text--primary">{{ item.trainCategoryCode }} </b>
|
||||||
<b>{{ item.trainNo }}</b>
|
<b>{{ item.trainNo }}</b>
|
||||||
| <span>{{ item.driverName }}</span> | <span class="text--grayed">#{{ item.timetableId }}</span>
|
| <span>{{ item.driverName }}</span> |
|
||||||
|
<span class="text--grayed">#{{ item.timetableId }}</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
@@ -110,6 +112,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
</transition-group>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
@@ -118,7 +121,6 @@
|
|||||||
|
|
||||||
<div class="history_warning" v-if="scrollNoMoreData">Brak dalszych wyników dla podanych parametrów</div>
|
<div class="history_warning" v-if="scrollNoMoreData">Brak dalszych wyników dla podanych parametrów</div>
|
||||||
<div class="history_warning" v-else-if="!scrollDataLoaded">Pobieranie kolejnych wyników...</div>
|
<div class="history_warning" v-else-if="!scrollDataLoaded">Pobieranie kolejnych wyników...</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
@@ -265,7 +267,7 @@ export default defineComponent({
|
|||||||
const element = this.$refs.scrollElement as HTMLElement;
|
const element = this.$refs.scrollElement as HTMLElement;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
element.getBoundingClientRect().bottom * 0.9 < window.innerHeight &&
|
element.getBoundingClientRect().bottom * 0.85 < window.innerHeight &&
|
||||||
this.scrollDataLoaded &&
|
this.scrollDataLoaded &&
|
||||||
!this.scrollNoMoreData
|
!this.scrollNoMoreData
|
||||||
)
|
)
|
||||||
@@ -385,6 +387,7 @@ export default defineComponent({
|
|||||||
@import '../styles/responsive.scss';
|
@import '../styles/responsive.scss';
|
||||||
@import '../styles/option.scss';
|
@import '../styles/option.scss';
|
||||||
|
|
||||||
|
// Animations
|
||||||
.warning {
|
.warning {
|
||||||
&-enter-from,
|
&-enter-from,
|
||||||
&-leave-to {
|
&-leave-to {
|
||||||
@@ -400,6 +403,18 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.history-list-anim {
|
||||||
|
&-enter-active,
|
||||||
|
&-leave-active {
|
||||||
|
transition: all 0.5s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-enter-from,
|
||||||
|
&-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.history-view {
|
.history-view {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user