mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 13:23:14 +01:00
* feat: migrate tools page and label generator to shadcn * chore: lint issues * feat: also do profile page * feat: shadcn 404 page * feat: login page shadcn * fix: daisyui ironically breaks the z height for the login page * feat: componentise the language selector and add it to the login page * feat: use nuxtlink * feat: card and table made more shadcn * feat: shadcn statscard * chore: lint * feat: shadcn labelchip and locationcard * feat: shadcn locations page * refactor: remove unused new item page * chore: lint * feat: shadcn item card * fix: wrapping of location and lint * feat: ctrl enter in text area in form submits form * feat: begin shadcn locations page and remove pageqrcode comp in favour of integrating it into labelmaker * chore: lint + remove unused code * fix: remove uneeded margin * feat: shadcn labels page and fix some issues with location * feat: shadcn scanner * chore: lint * feat: begin shadcning item pages * feat: shadcn maintenance page * feat: begin shadcn search page * fix: quick switch blurry text and crashing page when switching + incorrect z height for create menu * feat: finish shadcn search page * chore: lint * feat: shadcn edit item page * fix: quickmenumodal bug * feat: shadcn item details page * feat: remove all non-color related daisyui classes * fix: type error * fix: quick menu modal again :(
98 lines
3.3 KiB
Vue
98 lines
3.3 KiB
Vue
<template>
|
|
<Card class="overflow-hidden">
|
|
<NuxtLink :to="`/item/${item.id}`">
|
|
<div class="relative h-[200px]">
|
|
<img v-if="imageUrl" class="h-[200px] w-full object-cover shadow-md" loading="lazy" :src="imageUrl" alt="" />
|
|
<div class="absolute inset-x-1 bottom-1">
|
|
<Badge class="text-wrap bg-neutral text-neutral-content hover:bg-neutral/90 hover:underline">
|
|
<NuxtLink v-if="item.location" :to="`/location/${item.location.id}`">
|
|
{{ locationString }}
|
|
</NuxtLink>
|
|
</Badge>
|
|
</div>
|
|
</div>
|
|
<div class="col-span-4 flex grow flex-col gap-y-1 bg-base-100 p-4 pt-2">
|
|
<h2 class="line-clamp-2 text-ellipsis text-wrap text-lg font-bold">{{ item.name }}</h2>
|
|
<Separator class="mb-1" />
|
|
<TooltipProvider :delay-duration="0">
|
|
<div class="flex items-center gap-2">
|
|
<Tooltip v-if="item.insured">
|
|
<TooltipTrigger>
|
|
<MdiShieldCheck class="size-5 text-primary" />
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
{{ $t("global.insured") }}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
<Tooltip v-if="item.archived">
|
|
<TooltipTrigger>
|
|
<MdiArchive class="size-5 text-red-700" />
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
{{ $t("global.archived") }}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
<div class="grow"></div>
|
|
<Tooltip>
|
|
<TooltipTrigger>
|
|
<Badge>
|
|
{{ item.quantity }}
|
|
</Badge>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
{{ $t("global.quantity") }}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</div>
|
|
</TooltipProvider>
|
|
<Markdown class="mb-2 line-clamp-3 text-ellipsis" :source="item.description" />
|
|
<div class="-mr-1 mt-auto flex flex-wrap justify-end gap-2">
|
|
<LabelChip v-for="label in top3" :key="label.id" :label="label" size="sm" />
|
|
</div>
|
|
</div>
|
|
</NuxtLink>
|
|
</Card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { ItemOut, ItemSummary } from "~~/lib/api/types/data-contracts";
|
|
import MdiShieldCheck from "~icons/mdi/shield-check";
|
|
import MdiArchive from "~icons/mdi/archive";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Card } from "@/components/ui/card";
|
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
|
import { Separator } from "@/components/ui/separator";
|
|
|
|
const api = useUserApi();
|
|
|
|
const imageUrl = computed(() => {
|
|
if (!props.item.imageId) {
|
|
return "/no-image.jpg";
|
|
}
|
|
|
|
return api.authURL(`/items/${props.item.id}/attachments/${props.item.imageId}`);
|
|
});
|
|
|
|
const top3 = computed(() => {
|
|
return props.item.labels.slice(0, 3) || [];
|
|
});
|
|
|
|
const props = defineProps({
|
|
item: {
|
|
type: Object as () => ItemOut | ItemSummary,
|
|
required: true,
|
|
},
|
|
locationFlatTree: {
|
|
type: Array as () => FlatTreeItem[],
|
|
required: false,
|
|
default: () => [],
|
|
},
|
|
});
|
|
|
|
const locationString = computed(
|
|
() => props.locationFlatTree.find(l => l.id === props.item.location?.id)?.treeString || props.item.location?.name
|
|
);
|
|
</script>
|
|
|
|
<style lang="css"></style>
|