mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
Refactor recipe page to use break up the component and make it more usable across different pages. I've left the old route in as well in case there is some functional breaks, I plan to remove it before the official release once we've tested the new editor some more in production. For now there will just have to be some duplicate components and pages around.
67 lines
1.7 KiB
Vue
67 lines
1.7 KiB
Vue
<template>
|
|
<div v-if="value.length > 0 || edit" class="mt-8">
|
|
<h2 class="my-4">{{ $t("recipe.note") }}</h2>
|
|
<div v-for="(note, index) in value" :key="'note' + index" class="mt-1">
|
|
<v-card v-if="edit">
|
|
<v-card-text>
|
|
<div class="d-flex align-center">
|
|
<v-text-field v-model="value[index]['title']" :label="$t('recipe.title')" />
|
|
<v-btn icon class="mr-2" elevation="0" @click="removeByIndex(value, index)">
|
|
<v-icon>{{ $globals.icons.delete }}</v-icon>
|
|
</v-btn>
|
|
</div>
|
|
<v-textarea v-model="value[index]['text']" auto-grow :placeholder="$t('recipe.note')" />
|
|
</v-card-text>
|
|
</v-card>
|
|
<div v-else>
|
|
<v-card-title class="text-subtitle-1 font-weight-medium py-1">
|
|
{{ note.title }}
|
|
</v-card-title>
|
|
<v-card-text>
|
|
<SafeMarkdown :source="note.text" />
|
|
</v-card-text>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-if="edit" class="d-flex justify-end">
|
|
<BaseButton class="ml-auto my-2" @click="addNote"> {{ $t("general.new") }}</BaseButton>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
|
import { RecipeNote } from "~/types/api-types/recipe";
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
value: {
|
|
type: Array as () => RecipeNote[],
|
|
required: false,
|
|
default: () => [],
|
|
},
|
|
|
|
edit: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
setup(props) {
|
|
function addNote() {
|
|
props.value.push({ title: "", text: "" });
|
|
}
|
|
|
|
function removeByIndex(list: unknown[], index: number) {
|
|
list.splice(index, 1);
|
|
}
|
|
|
|
return {
|
|
addNote,
|
|
removeByIndex,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style></style>
|