mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	* refactor(backend): ♻️ Refactor base class to be abstract and create a router factory method * feat(frontend): ✨ add group edit * refactor(backend): ✨ add group edit support Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-container fluid>
 | |
|     <BaseCardSectionTitle title="Cookbooks"> </BaseCardSectionTitle>
 | |
|     <BaseButton create @click="actions.createOne()" />
 | |
|     <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 my-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 color="info" fab small class="ml-2">
 | |
|                 <v-icon color="white">
 | |
|                   {{ $globals.icons.edit }}
 | |
|                 </v-icon>
 | |
|               </v-btn>
 | |
|             </template>
 | |
|           </v-expansion-panel-header>
 | |
|           <v-expansion-panel-content>
 | |
|             <v-card-text>
 | |
|               <v-text-field v-model="cookbooks[index].name" label="Cookbook Name"></v-text-field>
 | |
|               <v-textarea v-model="cookbooks[index].description" auto-grow :rows="2" label="Description"></v-textarea>
 | |
|               <DomainRecipeCategoryTagSelector v-model="cookbooks[index].categories" />
 | |
|             </v-card-text>
 | |
|             <v-card-actions>
 | |
|               <v-spacer></v-spacer>
 | |
|               <BaseButton delete @click="actions.deleteOne(cookbook.id)" />
 | |
|               <BaseButton save @click="actions.updateOne(cookbook)"> </BaseButton>
 | |
|             </v-card-actions>
 | |
|           </v-expansion-panel-content>
 | |
|         </v-expansion-panel>
 | |
|       </draggable>
 | |
|     </v-expansion-panels>
 | |
|   </v-container>
 | |
| </template>
 | |
|     
 | |
| <script lang="ts">
 | |
| import { defineComponent } from "@nuxtjs/composition-api";
 | |
| import { useCookbooks } from "@/composables/use-group-cookbooks";
 | |
| import draggable from "vuedraggable";
 | |
| 
 | |
| export default defineComponent({
 | |
|   components: { draggable },
 | |
|   layout: "admin",
 | |
|   setup() {
 | |
|     const { cookbooks, actions } = useCookbooks();
 | |
| 
 | |
|     return {
 | |
|       cookbooks,
 | |
|       actions,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 | |
|     
 | |
| <style>
 | |
| .my-border {
 | |
|   border-left: 5px solid var(--v-primary-base);
 | |
| }
 | |
| </style> |