mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 21:15:22 +02:00
60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
<template>
|
|
<div v-if="items.length > 0">
|
|
<h2
|
|
v-if="title"
|
|
class="mt-4"
|
|
>
|
|
{{ title }}
|
|
</h2>
|
|
<v-chip
|
|
v-for="category in items.slice(0, limit)"
|
|
:key="category.name"
|
|
label
|
|
class="mr-1 mt-1"
|
|
color="accent"
|
|
variant="flat"
|
|
:size="small ? 'small' : 'default'"
|
|
dark
|
|
|
|
@click.prevent="() => $emit('item-selected', category, urlPrefix)"
|
|
>
|
|
{{ truncateText(category.name) }}
|
|
</v-chip>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { RecipeCategory, RecipeTag, RecipeTool } from "~/lib/api/types/recipe";
|
|
|
|
export type UrlPrefixParam = "tags" | "categories" | "tools";
|
|
|
|
interface Props {
|
|
truncate?: boolean;
|
|
items?: RecipeCategory[] | RecipeTag[] | RecipeTool[];
|
|
title?: boolean;
|
|
urlPrefix?: UrlPrefixParam;
|
|
limit?: number;
|
|
small?: boolean;
|
|
maxWidth?: string | null;
|
|
}
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
truncate: false,
|
|
items: () => [],
|
|
title: false,
|
|
urlPrefix: "categories",
|
|
limit: 999,
|
|
small: false,
|
|
maxWidth: null,
|
|
});
|
|
|
|
defineEmits(["item-selected"]);
|
|
function truncateText(text: string, length = 20, clamp = "...") {
|
|
if (!props.truncate) return text;
|
|
const node = document.createElement("div");
|
|
node.innerHTML = text;
|
|
const content = node.textContent || "";
|
|
return content.length > length ? content.slice(0, length) + clamp : content;
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|