forked from mirrors/homebox
95ab14b866
* format readme * update logo * format html * add logo to docs * repository for document and document tokens * add attachments type and repository * autogenerate types via scripts * use autogenerated types * attachment type updates * add insured and quantity fields for items * implement HasID interface for entities * implement label updates for items * implement service update method * WIP item update client side actions * check err on attachment * finish types for basic items editor * remove unused var * house keeping
39 lines
971 B
Vue
39 lines
971 B
Vue
<script setup lang="ts">
|
|
import { LabelOut, LabelSummary } from "~~/lib/api/types/data-contracts";
|
|
|
|
export type sizes = "sm" | "md" | "lg";
|
|
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"
|
|
:class="{
|
|
'p-3': size !== 'sm',
|
|
'p-2 badge-sm': size === 'sm',
|
|
}"
|
|
:to="`/label/${label.id}`"
|
|
>
|
|
<label class="swap swap-rotate" :class="isActive ? 'swap-active' : ''">
|
|
<Icon name="heroicons-arrow-right" class="mr-2 swap-on"></Icon>
|
|
<Icon name="heroicons-tag" class="mr-2 swap-off"></Icon>
|
|
</label>
|
|
{{ label.name }}
|
|
</NuxtLink>
|
|
</template>
|