mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-27 08:14:30 -04:00 
			
		
		
		
	* add delete dialog
* put editor into component
* return data on createCookbook store action
* verry basic dialog with create & cancel functions
* 🧹
* cleanup
* add translation
* add dialog-closed to BaseDialog
* update delete dialog messaging
* use cancel instead of dialog-closed
		
	
		
			
				
	
	
		
			171 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			171 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div>
 | |
|     <!-- Create Dialog -->
 | |
|     <BaseDialog
 | |
|       v-if="createTarget"
 | |
|       v-model="dialogStates.create"
 | |
|       :width="650"
 | |
|       :icon="$globals.icons.pages"
 | |
|       :title="$t('cookbook.create-a-cookbook')"
 | |
|       :submit-icon="$globals.icons.save"
 | |
|       :submit-text="$tc('general.save')"
 | |
|       @submit="actions.updateOne(createTarget)"
 | |
|       @cancel="actions.deleteOne(createTarget.id)"
 | |
|     >
 | |
|       <v-card-text>
 | |
|         <CookbookEditor
 | |
|           :cookbook=createTarget
 | |
|           :actions="actions"
 | |
|         />
 | |
|       </v-card-text>
 | |
|     </BaseDialog>
 | |
| 
 | |
|     <!-- Delete Dialog -->
 | |
|     <BaseDialog
 | |
|       v-model="dialogStates.delete"
 | |
|       :title="$t('general.delete-with-name', { name: $t('cookbook.cookbook') })"
 | |
|       :icon="$globals.icons.alertCircle"
 | |
|       color="error"
 | |
|       @confirm="deleteCookbook()"
 | |
|     >
 | |
|       <v-card-text>
 | |
|         <p>{{ $t("general.confirm-delete-generic-with-name", { name: $t('cookbook.cookbook') }) }}</p>
 | |
|         <p v-if="deleteTarget" class="mt-4 ml-4">{{ deleteTarget.name }}</p>
 | |
|       </v-card-text>
 | |
|     </BaseDialog>
 | |
| 
 | |
|     <!-- Cookbook Page -->
 | |
|     <!-- Page Title -->
 | |
|     <v-container class="narrow-container">
 | |
|       <BasePageTitle divider>
 | |
|         <template #header>
 | |
|           <v-img max-height="100" max-width="100" :src="require('~/static/svgs/manage-cookbooks.svg')"></v-img>
 | |
|         </template>
 | |
|         <template #title> {{ $t('cookbook.cookbooks') }} </template>
 | |
|         {{ $t('cookbook.description') }}
 | |
|       </BasePageTitle>
 | |
| 
 | |
|       <!-- Create New -->
 | |
|       <BaseButton create @click="createCookbook" />
 | |
| 
 | |
|       <!-- Cookbook List -->
 | |
|       <v-expansion-panels class="mt-2">
 | |
|         <draggable v-model="cookbooks" handle=".handle" style="width: 100%" @change="actions.updateOrder()">
 | |
|           <v-expansion-panel v-for="(cookbook, index) in cookbooks" :key="index" class="my-2 left-border rounded">
 | |
|             <v-expansion-panel-header disable-icon-rotate class="headline">
 | |
|               <div class="d-flex align-center">
 | |
|                 <v-icon large left>
 | |
|                   {{ $globals.icons.pages }}
 | |
|                 </v-icon>
 | |
|                 {{ cookbook.name }}
 | |
|               </div>
 | |
|               <template #actions>
 | |
|                 <v-icon class="handle">
 | |
|                   {{ $globals.icons.arrowUpDown }}
 | |
|                 </v-icon>
 | |
|                 <v-btn icon small class="ml-2">
 | |
|                   <v-icon>
 | |
|                     {{ $globals.icons.edit }}
 | |
|                   </v-icon>
 | |
|                 </v-btn>
 | |
|               </template>
 | |
|             </v-expansion-panel-header>
 | |
|             <v-expansion-panel-content>
 | |
|               <CookbookEditor :cookbook="cookbook" :actions="actions" :collapsable="false" @delete="deleteEventHandler" />
 | |
|               <v-card-actions>
 | |
|                 <v-spacer></v-spacer>
 | |
|                 <BaseButtonGroup
 | |
|                   :buttons="[{
 | |
|                     icon: $globals.icons.delete,
 | |
|                     text: $tc('general.delete'),
 | |
|                     event: 'delete',
 | |
|                   },
 | |
|                   {
 | |
|                     icon: $globals.icons.save,
 | |
|                     text: $tc('general.save'),
 | |
|                     event: 'save',
 | |
|                   },
 | |
|                 ]"
 | |
|                 @delete="deleteEventHandler(cookbook)"
 | |
|                 @save="actions.updateOne(cookbook)" />
 | |
|               </v-card-actions>
 | |
|             </v-expansion-panel-content>
 | |
|           </v-expansion-panel>
 | |
|         </draggable>
 | |
|       </v-expansion-panels>
 | |
|     </v-container>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent, reactive, ref, useRouter } from "@nuxtjs/composition-api";
 | |
| import draggable from "vuedraggable";
 | |
| import { useCookbooks } from "@/composables/use-group-cookbooks";
 | |
| import { useLoggedInState } from "~/composables/use-logged-in-state";
 | |
| import CookbookEditor from "~/components/Domain/Cookbook/CookbookEditor.vue";
 | |
| import { ReadCookBook } from "~/lib/api/types/cookbook";
 | |
| 
 | |
| export default defineComponent({
 | |
|   components: { CookbookEditor, draggable },
 | |
|   setup() {
 | |
|     const { isOwnGroup, loggedIn } = useLoggedInState();
 | |
|     const router = useRouter();
 | |
| 
 | |
|     if (!(loggedIn.value && isOwnGroup.value)) {
 | |
|       router.back();
 | |
|     }
 | |
| 
 | |
|     const dialogStates = reactive({
 | |
|       create: false,
 | |
|       delete: false,
 | |
|     });
 | |
| 
 | |
|     const { cookbooks, actions } = useCookbooks();
 | |
| 
 | |
| 
 | |
|     // create
 | |
|     const createTarget = ref<ReadCookBook | null>(null);
 | |
|     async function createCookbook() {
 | |
|       await actions.createOne().then((cookbook) => {
 | |
|         createTarget.value = cookbook as ReadCookBook;
 | |
|       });
 | |
|       dialogStates.create = true;
 | |
|     }
 | |
| 
 | |
|     // delete
 | |
|     const deleteTarget = ref<ReadCookBook | null>(null);
 | |
|     function deleteEventHandler(item: ReadCookBook){
 | |
|       deleteTarget.value = item;
 | |
|       dialogStates.delete = true;
 | |
|     }
 | |
|     function deleteCookbook() {
 | |
|       if (!deleteTarget.value) {
 | |
|         return;
 | |
|       }
 | |
|       actions.deleteOne(deleteTarget.value.id);
 | |
|       dialogStates.delete = false;
 | |
|       deleteTarget.value = null;
 | |
|     }
 | |
| 
 | |
|     return {
 | |
|       cookbooks,
 | |
|       actions,
 | |
|       dialogStates,
 | |
|       // create
 | |
|       createTarget,
 | |
|       createCookbook,
 | |
| 
 | |
|       // delete
 | |
|       deleteTarget,
 | |
|       deleteEventHandler,
 | |
|       deleteCookbook,
 | |
|     };
 | |
|   },
 | |
|   head() {
 | |
|     return {
 | |
|       title: this.$t("cookbook.cookbooks") as string,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 |