| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!--suppress VueUnrecognizedSlot -->
- <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"
- >
- <!--suppress HtmlUnknownTarget -->
- <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>
|