mealie/frontend/components/Domain/Recipe/RecipeChips.vue
Hayden 568215cf70
perf(backend): remove validation on recipe summary response (#718)
* count responses

* perf(backend):  remove validation on recipe summary response

use the construct() method from pydantic to reduce get time as well as optimize the SQL query for recipes

* update UI to support new categories/tags

* fix(backend): 🐛 restrict recipes by group

Co-authored-by: Hayden <hay-kot@pm.me>
2021-10-02 22:07:29 -08:00

86 lines
1.8 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="ma-1"
color="accent"
:small="small"
dark
:to="`/recipes/${urlParam}/${category.slug}`"
>
{{ truncateText(category.name) }}
</v-chip>
</div>
</template>
<script>
export default {
props: {
truncate: {
type: Boolean,
default: false,
},
items: {
type: Array,
default: () => [],
},
title: {
type: Boolean,
default: false,
},
isCategory: {
type: Boolean,
default: true,
},
limit: {
type: Number,
default: 999,
},
small: {
type: Boolean,
default: false,
},
maxWidth: {
type: String,
default: null,
},
},
computed: {
allCategories() {
return this.$store.getters.getAllCategories || [];
},
allTags() {
return this.$store.getters.getAllTags || [];
},
urlParam() {
return this.isCategory ? "categories" : "tags";
},
},
methods: {
getSlug(name) {
if (!name) return;
if (this.isCategory) {
const matches = this.allCategories.filter((x) => x.name === name);
if (matches.length > 0) return matches[0].slug;
} else {
const matches = this.allTags.filter((x) => x.name === name);
if (matches.length > 0) return matches[0].slug;
}
},
truncateText(text, length = 20, clamp) {
if (!this.truncate) return text;
clamp = clamp || "...";
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>