mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04: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>
		
			
				
	
	
		
			134 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			134 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div>
 | |
|     <h2 class="mb-4">{{ $t("recipe.instructions") }}</h2>
 | |
|     <div>
 | |
|       <div v-for="(step, index) in value" :key="index">
 | |
|         <v-app-bar v-if="showTitleEditor[index]" class="primary mx-1 mt-6" dark dense rounded>
 | |
|           <v-toolbar-title class="headline" v-if="!edit">
 | |
|             <v-app-bar-title v-text="step.title"> </v-app-bar-title>
 | |
|           </v-toolbar-title>
 | |
|           <v-text-field
 | |
|             v-if="edit"
 | |
|             class="headline pa-0 mt-5"
 | |
|             v-model="step.title"
 | |
|             dense
 | |
|             solo
 | |
|             flat
 | |
|             placeholder="Section Title"
 | |
|             background-color="primary"
 | |
|           >
 | |
|           </v-text-field>
 | |
|         </v-app-bar>
 | |
|         <v-hover v-slot="{ hover }">
 | |
|           <v-card
 | |
|             class="ma-1"
 | |
|             :class="[{ 'on-hover': hover }, isDisabled(index)]"
 | |
|             :elevation="hover ? 12 : 2"
 | |
|             :ripple="!edit"
 | |
|             @click="toggleDisabled(index)"
 | |
|           >
 | |
|             <v-card-title>
 | |
|               <v-btn
 | |
|                 v-if="edit"
 | |
|                 fab
 | |
|                 x-small
 | |
|                 color="white"
 | |
|                 class="mr-2"
 | |
|                 elevation="0"
 | |
|                 @click="removeByIndex(value, index)"
 | |
|               >
 | |
|                 <v-icon size="24" color="error">mdi-delete</v-icon>
 | |
|               </v-btn>
 | |
|               {{ $t("recipe.step-index", { step: index + 1 }) }}
 | |
|               <v-btn v-if="edit" text color="primary" class="ml-auto" @click="toggleShowTitle(index)">
 | |
|                 {{ !showTitleEditor[index] ? "Insert Section" : "Remove Section" }}
 | |
|               </v-btn>
 | |
|             </v-card-title>
 | |
|             <v-card-text v-if="edit">
 | |
|               <v-textarea
 | |
|                 auto-grow
 | |
|                 dense
 | |
|                 v-model="value[index]['text']"
 | |
|                 :key="generateKey('instructions', index)"
 | |
|                 rows="4"
 | |
|               >
 | |
|               </v-textarea>
 | |
|             </v-card-text>
 | |
|             <v-card-text v-else>
 | |
|               <vue-markdown :source="step.text"> </vue-markdown>
 | |
|             </v-card-text>
 | |
|           </v-card>
 | |
|         </v-hover>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import VueMarkdown from "@adapttive/vue-markdown";
 | |
| import utils from "@/utils";
 | |
| export default {
 | |
|   components: {
 | |
|     VueMarkdown,
 | |
|   },
 | |
|   props: {
 | |
|     value: {
 | |
|       type: Array,
 | |
|     },
 | |
| 
 | |
|     edit: {
 | |
|       type: Boolean,
 | |
|       default: true,
 | |
|     },
 | |
|   },
 | |
|   data() {
 | |
|     return {
 | |
|       disabledSteps: [],
 | |
|       showTitleEditor: [],
 | |
|     };
 | |
|   },
 | |
| 
 | |
|   mounted() {
 | |
|     this.showTitleEditor = this.value.map(x => this.validateTitle(x.title));
 | |
|   },
 | |
|   methods: {
 | |
|     generateKey(item, index) {
 | |
|       return utils.generateUniqueKey(item, index);
 | |
|     },
 | |
|     removeByIndex(list, index) {
 | |
|       list.splice(index, 1);
 | |
|     },
 | |
|     validateTitle(title) {
 | |
|       return !(title === null || title === "");
 | |
|     },
 | |
|     toggleDisabled(stepIndex) {
 | |
|       if (this.edit) return;
 | |
|       if (this.disabledSteps.includes(stepIndex)) {
 | |
|         let index = this.disabledSteps.indexOf(stepIndex);
 | |
|         if (index !== -1) {
 | |
|           this.disabledSteps.splice(index, 1);
 | |
|         }
 | |
|       } else {
 | |
|         this.disabledSteps.push(stepIndex);
 | |
|       }
 | |
|     },
 | |
|     isDisabled(stepIndex) {
 | |
|       if (this.disabledSteps.includes(stepIndex) && !this.edit) {
 | |
|         return "disabled-card";
 | |
|       } else {
 | |
|         return;
 | |
|       }
 | |
|     },
 | |
|     toggleShowTitle(index) {
 | |
|       const newVal = !this.showTitleEditor[index];
 | |
|       if (!newVal) {
 | |
|         this.value[index].title = "";
 | |
|       }
 | |
|       this.$set(this.showTitleEditor, index, newVal);
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style scoped></style>
 |