Files
evilspins/app/pages/index.vue
valere 399519d1d4
All checks were successful
Deploy App / build (push) Successful in 2m4s
Deploy App / deploy (push) Successful in 21s
multi cards
2026-02-11 16:49:34 +01:00

59 lines
1.3 KiB
Vue

<template>
<section class="deck">
<div v-for="(card, index) in cards" :key="index">
<PlayingCard :card="card" :isFaceUp="isFaceUp[index] || false" />
</div>
</section>
</template>
<script setup lang="ts">
import type { Card } from '~~/types/types'
const nbCards = 1 // Nombre de cartes à afficher
const cards = ref<Card[]>([])
const isFaceUp = ref<boolean[]>([])
// Chargement des cartes
const loadCards = async () => {
try {
const promises = Array(nbCards).fill(0).map(() =>
$fetch<Card>('/api/card/random')
)
const results = await Promise.all(promises)
cards.value = results
isFaceUp.value = new Array(nbCards).fill(false)
} catch (error) {
console.error('Error loading cards:', error)
}
}
// Animation de retournement des cartes
const flipCards = () => {
isFaceUp.value.forEach((_, index) => {
setTimeout(() => {
isFaceUp.value[index] = true
}, 400 * (index + 1))
})
}
onMounted(async () => {
await loadCards()
setTimeout(flipCards, 600)
})
useHead({
title: computed(() =>
cards.value[0] ? `${cards.value[0].artist} - ${cards.value[0].title}` : 'Loading...'
)
})
</script>
<style lang="scss" scoped>
.deck {
@apply screen-centered h-screen;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
}
</style>