mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
b77c9be36f
* bump prettier/eslint-plugin * bump nuxt pwa * use typed imports * set vue version to fix layout errors * disable import
42 lines
1.1 KiB
Vue
42 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import type { LabelOut, LabelSummary } from "~~/lib/api/types/data-contracts";
|
|
import MdiArrowRight from "~icons/mdi/arrow-right";
|
|
import MdiTagOutline from "~icons/mdi/tag-outline";
|
|
|
|
export type sizes = "sm" | "md" | "lg" | "xl";
|
|
defineProps({
|
|
label: {
|
|
type: Object as () => LabelOut | LabelSummary,
|
|
required: true,
|
|
},
|
|
size: {
|
|
type: String as () => sizes,
|
|
default: "md",
|
|
},
|
|
});
|
|
|
|
const badge = ref(null);
|
|
const isHover = useElementHover(badge);
|
|
const { focused } = useFocus(badge);
|
|
|
|
const isActive = computed(() => isHover.value || focused.value);
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink
|
|
ref="badge"
|
|
class="badge badge-secondary text-secondary-content"
|
|
:class="{
|
|
'badge-lg p-4': size === 'lg',
|
|
'p-3': size !== 'sm' && size !== 'lg',
|
|
'p-2 badge-sm': size === 'sm',
|
|
}"
|
|
:to="`/label/${label.id}`"
|
|
>
|
|
<label class="swap swap-rotate" :class="isActive ? 'swap-active' : ''">
|
|
<MdiArrowRight class="mr-2 swap-on" />
|
|
<MdiTagOutline class="mr-2 swap-off" />
|
|
</label>
|
|
{{ label.name }}
|
|
</NuxtLink>
|
|
</template>
|