| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <Toolbar :pt="{ root: 'min-h-11.5 rounded-b-none' }">
- <template #start>
- <div class="ps-6 text-sm whitespace-nowrap text-primary">
- Showing
- <strong class="font-semibold">{{ filteredCountText }}</strong> of
- <strong class="font-semibold">{{ count }}</strong>
- {{ pluralize("character", count) }}
- </div>
- </template>
- <template #end>
- <Button
- v-if="isSignedIn"
- class="border-none px-6! py-3.25"
- variant="text"
- >
- <NuxtLink
- class="flex items-center gap-0.5"
- :to="{ name: 'characterCreate' }"
- >
- <span class="font-semibold">Add</span>
- <Icon name="ph:plus-bold" />
- </NuxtLink>
- </Button>
- </template>
- </Toolbar>
- </template>
- <script setup>
- const props = defineProps({
- count: {
- type: Number,
- required: true
- },
- filteredCount: {
- type: Number,
- required: true
- }
- })
- const { isSignedIn } = useAuthClient()
- const filteredCountText = computed(() => {
- switch (props.filteredCount) {
- case props.count:
- return "all"
- case 0:
- return "none"
- default:
- return props.filteredCount
- }
- })
- </script>
- <style scoped></style>
|