mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 01:34:39 -04:00 
			
		
		
		
	
		
			
	
	
		
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
		
		
			
		
	
	
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
|   | <template> | ||
|  |   <div class="text-center"> | ||
|  |     <v-dialog v-model="dialog" width="600"> | ||
|  |       <template v-slot:activator="{ on, attrs }"> | ||
|  |         <v-btn color="secondary lighten-2" dark v-bind="attrs" v-on="on" @click="inputText = ''"> | ||
|  |           {{ $t("new-recipe.bulk-add") }} | ||
|  |         </v-btn> | ||
|  |       </template> | ||
|  | 
 | ||
|  |       <v-card> | ||
|  |         <v-card-title class="headline"> {{ $t("new-recipe.bulk-add") }} </v-card-title> | ||
|  | 
 | ||
|  |         <v-card-text> | ||
|  |           <p> | ||
|  |             {{ $t("new-recipe.paste-in-your-recipe-data-each-line-will-be-treated-as-an-item-in-a-list") }} | ||
|  |           </p> | ||
|  |           <v-textarea v-model="inputText"> </v-textarea> | ||
|  |         </v-card-text> | ||
|  | 
 | ||
|  |         <v-divider></v-divider> | ||
|  | 
 | ||
|  |         <v-card-actions> | ||
|  |           <v-spacer></v-spacer> | ||
|  |           <v-btn color="success" text @click="save"> {{ $t("general.save") }} </v-btn> | ||
|  |         </v-card-actions> | ||
|  |       </v-card> | ||
|  |     </v-dialog> | ||
|  |   </div> | ||
|  | </template> | ||
|  | 
 | ||
|  | <script> | ||
|  | export default { | ||
|  |   data() { | ||
|  |     return { | ||
|  |       dialog: false, | ||
|  |       inputText: "", | ||
|  |     }; | ||
|  |   }, | ||
|  |   methods: { | ||
|  |     splitText() { | ||
|  |       let split = this.inputText.split("\n"); | ||
|  | 
 | ||
|  |       split.forEach((element, index) => { | ||
|  |         if ((element === "\n") | (element == false)) { | ||
|  |           split.splice(index, 1); | ||
|  |         } | ||
|  |       }); | ||
|  | 
 | ||
|  |       return split; | ||
|  |     }, | ||
|  |     save() { | ||
|  |       this.$emit("bulk-data", this.splitText()); | ||
|  |       this.dialog = false; | ||
|  |     }, | ||
|  |   }, | ||
|  | }; | ||
|  | </script> |