mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-12 20:11:22 -05:00
* automated docs update * recipe rating component * recipe partial updates - closes #25 * use Vue.delete to update store * format * arrow functions * fix tests * format * initial context menu * localize * add confirmation dialog * context menu * fix bare exception * update line length * format all file with prettier * update changelog * download as json * update python dependencies * update javascript dependencies Co-authored-by: hay-kot <hay-kot@pm.me>
87 lines
2.0 KiB
Vue
87 lines
2.0 KiB
Vue
<template>
|
|
<v-hover v-slot="{ hover }" :open-delay="50">
|
|
<v-card
|
|
:class="{ 'on-hover': hover }"
|
|
:elevation="hover ? 12 : 2"
|
|
:to="route ? `/recipe/${slug}` : ''"
|
|
@click="$emit('click')"
|
|
min-height="275"
|
|
>
|
|
<v-img height="200" :src="getImage(slug)">
|
|
<v-expand-transition v-if="description">
|
|
<div v-if="hover" class="d-flex transition-fast-in-fast-out secondary v-card--reveal " style="height: 100%;">
|
|
<v-card-text class="v-card--text-show white--text">
|
|
{{ description | truncate(300) }}
|
|
</v-card-text>
|
|
</div>
|
|
</v-expand-transition>
|
|
</v-img>
|
|
<v-card-title class="my-n3 mb-n6 ">
|
|
<div class="headerClass">
|
|
{{ name }}
|
|
</div>
|
|
</v-card-title>
|
|
|
|
<v-card-actions>
|
|
<Rating :value="rating" :name="name" :slug="slug" :small="true" />
|
|
<v-spacer></v-spacer>
|
|
<RecipeChips :items="tags" :title="false" :limit="2" :small="true" :isCategory="false" />
|
|
<ContextMenu :slug="slug" />
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-hover>
|
|
</template>
|
|
|
|
<script>
|
|
import RecipeChips from "@/components/Recipe/RecipeViewer/RecipeChips";
|
|
import ContextMenu from "@/components/Recipe/ContextMenu";
|
|
import Rating from "@/components/Recipe/Parts/Rating";
|
|
import { api } from "@/api";
|
|
export default {
|
|
components: {
|
|
RecipeChips,
|
|
ContextMenu,
|
|
Rating,
|
|
},
|
|
props: {
|
|
name: String,
|
|
slug: String,
|
|
description: String,
|
|
rating: Number,
|
|
image: String,
|
|
|
|
route: {
|
|
default: true,
|
|
},
|
|
tags: {
|
|
default: true,
|
|
},
|
|
},
|
|
methods: {
|
|
getImage(image) {
|
|
return api.recipes.recipeSmallImage(image);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.v-card--reveal {
|
|
align-items: center;
|
|
bottom: 0;
|
|
justify-content: center;
|
|
opacity: 0.8;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
.v-card--text-show {
|
|
opacity: 1 !important;
|
|
}
|
|
.headerClass {
|
|
white-space: nowrap;
|
|
word-break: normal;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
</style>
|