Skip to content

Commit

Permalink
webapp/container/IconCardSmall: avoid slots
Browse files Browse the repository at this point in the history
  • Loading branch information
tharvik committed Jun 26, 2024
1 parent 89dbeca commit 8b58308
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 60 deletions.
40 changes: 10 additions & 30 deletions webapp/src/components/containers/IconCardSmall.vue
Original file line number Diff line number Diff line change
@@ -1,48 +1,28 @@
<template>
<div
class="
flex
items-center
justify-between
p-4
bg-white
rounded-md
dark:bg-darker
"
class="flex items-center justify-between p-4 bg-white rounded-md dark:bg-darker"
>
<div>
<h6
class="
text-xs
font-medium
leading-none
tracking-wider
text-gray-500
uppercase
dark:text-primary-light
"
class="text-xs font-medium leading-none tracking-wider text-gray-500 uppercase dark:text-primary-light"
>
<slot name="header" />
{{ header }}
</h6>
<span class="text-xl font-semibold">
<slot name="text" />
{{ text }}
</span>
</div>
<div>
<span>
<slot name="icon" />
<slot />
</span>
</div>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'IconCardSmall',
props: {
customClass: { default: '', type: String }
}
})
<script setup lang="ts">
defineProps<{
header: string;
text: string;
}>();
</script>
49 changes: 19 additions & 30 deletions webapp/src/components/training/TrainingInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,27 @@
<div class="space-y-4 md:space-y-8">
<!-- Fancy training statistics -->
<div class="flex flex-wrap justify-center gap-4 md:gap-8">
<IconCardSmall class="w-72 shrink-0">
<template #header>
current round
</template>
<template #text>
{{ (logs.last()?.round ?? 0) + 1 }}
</template>
<template #icon>
<Timer />
</template>
<IconCardSmall
header="current round"
:text="`${(logs.last()?.round ?? 0) + 1}`"
class="w-72 shrink-0"
>
<Timer />
</IconCardSmall>
<IconCardSmall class="w-72 shrink-0">
<template #header>
current # of participants
</template>
<template #text>
{{ participants.current }}
</template>
<template #icon>
<People />
</template>
<IconCardSmall
header="current # of participants"
:text="`${participants.current}`"
class="w-72 shrink-0"
>
<People />
</IconCardSmall>
<IconCardSmall class="w-72 shrink-0">
<template #header>
average # of participants
</template>
<template #text>
{{ participants.average }}
</template>
<template #icon>
<People />
</template>
<IconCardSmall
header="average # of participants"
:text="`${participants.average}`"
class="w-72 shrink-0"
>
<People />
</IconCardSmall>
</div>
Expand Down

0 comments on commit 8b58308

Please sign in to comment.