LocationDetailPage: Seat not selectable, loading animation during fetching

This commit is contained in:
2024-11-04 18:15:49 +01:00
parent 7e649240ca
commit 07c4b7ba80
10 changed files with 260 additions and 188 deletions

View File

@@ -0,0 +1,53 @@
<script setup lang="ts">
import { useLocationStore } from '@/stores/location.store';
import cardViewHorizontal from '@/components/basics/cardViewHorizontal.vue';
import sectionDivider from '@/components/basics/sectionDivider.vue';
import concertListItem from '@/components/pageParts/concertListItem.vue';
const locationStore = useLocationStore()
</script>
<template>
<!-- Concerts divider -->
<v-row>
<v-col>
<section-divider :title="$t('concert.concert', 2)" />
</v-col>
</v-row>
<!-- Display skeleton cards on fetching -->
<v-row v-for="i in 3" v-if="locationStore.fetchInProgress">
<v-col class="text-center">
<card-view-horizontal :loading="true" />
</v-col>
</v-row>
<!-- Show concerts after fetching -->
<v-row
v-else-if="locationStore.location.concerts.length > 0"
v-for="concert of locationStore.location.concerts"
>
<v-col>
<concert-list-item
:concert="concert"
:band="concert.band"
:location="locationStore.location"
:title="concert.name"
>
<template #description>
{{ concert.band.name }}
</template>
</concert-list-item>
</v-col>
</v-row>
<!-- Show empty state if no items there -->
<v-row v-else>
<v-col>
<v-empty-state
icon="mdi-magnify"
:title="$t('concert.noConcertsFound')"
/>
</v-col>
</v-row>
</template>