| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  | <template> | 
					
						
							|  |  |  |   <div> | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  |     <!-- Merge Dialog --> | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |     <BaseDialog v-model="mergeDialog" :icon="$globals.icons.foods" :title="$t('data-pages.foods.combine-food')" @confirm="mergeFoods"> | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  |       <v-card-text> | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |         <div> | 
					
						
							|  |  |  |           {{ $t("data-pages.foods.merge-dialog-text") }} | 
					
						
							|  |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |         <v-autocomplete v-model="fromFood" return-object :items="foods" item-text="name" :label="$t('data-pages.foods.source-food')" /> | 
					
						
							|  |  |  |         <v-autocomplete v-model="toFood" return-object :items="foods" item-text="name" :label="$t('data-pages.foods.target-food')" /> | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         <template v-if="canMerge && fromFood && toFood"> | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |           <div class="text-center"> | 
					
						
							|  |  |  |             {{ $t("data-pages.foods.merge-food-example", { food1: fromFood.name, food2: toFood.name }) }} | 
					
						
							|  |  |  |           </div> | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  |         </template> | 
					
						
							|  |  |  |       </v-card-text> | 
					
						
							|  |  |  |     </BaseDialog> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |     <!-- Seed Dialog--> | 
					
						
							|  |  |  |     <BaseDialog | 
					
						
							|  |  |  |       v-model="seedDialog" | 
					
						
							|  |  |  |       :icon="$globals.icons.foods" | 
					
						
							|  |  |  |       :title="$tc('data-pages.seed-data')" | 
					
						
							|  |  |  |       @confirm="seedDatabase" | 
					
						
							|  |  |  |     > | 
					
						
							|  |  |  |       <v-card-text> | 
					
						
							|  |  |  |         <div class="pb-2"> | 
					
						
							|  |  |  |           {{ $t("data-pages.foods.seed-dialog-text") }} | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |         <v-autocomplete | 
					
						
							|  |  |  |           v-model="locale" | 
					
						
							|  |  |  |           :items="locales" | 
					
						
							|  |  |  |           item-text="name" | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |           :label="$t('data-pages.select-language')" | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |           class="my-3" | 
					
						
							|  |  |  |           hide-details | 
					
						
							|  |  |  |           outlined | 
					
						
							|  |  |  |           offset | 
					
						
							|  |  |  |         > | 
					
						
							|  |  |  |           <template #item="{ item }"> | 
					
						
							|  |  |  |             <v-list-item-content> | 
					
						
							| 
									
										
										
										
											2022-05-25 09:38:21 -08:00
										 |  |  |               <v-list-item-title> {{ item.name }} </v-list-item-title> | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |               <v-list-item-subtitle> | 
					
						
							|  |  |  |                 {{ item.progress }}% {{ $tc("language-dialog.translated") }} | 
					
						
							|  |  |  |               </v-list-item-subtitle> | 
					
						
							|  |  |  |             </v-list-item-content> | 
					
						
							|  |  |  |           </template> | 
					
						
							|  |  |  |         </v-autocomplete> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |         <v-alert v-if="foods && foods.length > 0" type="error" class="mb-0 text-body-2"> | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |           {{ $t("data-pages.foods.seed-dialog-warning") }} | 
					
						
							|  |  |  |         </v-alert> | 
					
						
							|  |  |  |       </v-card-text> | 
					
						
							|  |  |  |     </BaseDialog> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |     <!-- Create Dialog --> | 
					
						
							|  |  |  |     <BaseDialog | 
					
						
							|  |  |  |       v-model="createDialog" | 
					
						
							|  |  |  |       :icon="$globals.icons.foods" | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |       :title="$t('data-pages.foods.create-food')" | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |       :submit-icon="$globals.icons.save" | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |       :submit-text="$tc('general.save')" | 
					
						
							|  |  |  |       @submit="createFood" | 
					
						
							|  |  |  |     > | 
					
						
							|  |  |  |       <v-card-text> | 
					
						
							|  |  |  |         <v-form ref="domNewFoodForm"> | 
					
						
							|  |  |  |           <v-text-field | 
					
						
							|  |  |  |             v-model="createTarget.name" | 
					
						
							|  |  |  |             autofocus | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |             :label="$t('general.name')" | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |             :hint="$t('data-pages.foods.example-food-singular')" | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |             :rules="[validators.required]" | 
					
						
							|  |  |  |           ></v-text-field> | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |           <v-text-field | 
					
						
							|  |  |  |             v-model="createTarget.pluralName" | 
					
						
							|  |  |  |             :label="$t('general.plural-name')" | 
					
						
							|  |  |  |             :hint="$t('data-pages.foods.example-food-plural')" | 
					
						
							|  |  |  |           ></v-text-field> | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |           <v-text-field v-model="createTarget.description" :label="$t('recipe.description')"></v-text-field> | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |           <v-autocomplete | 
					
						
							|  |  |  |             v-model="createTarget.labelId" | 
					
						
							|  |  |  |             clearable | 
					
						
							|  |  |  |             :items="allLabels" | 
					
						
							|  |  |  |             item-value="id" | 
					
						
							|  |  |  |             item-text="name" | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |             :label="$t('data-pages.foods.food-label')" | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |           > | 
					
						
							|  |  |  |           </v-autocomplete> | 
					
						
							| 
									
										
										
										
											2024-06-29 01:16:04 +10:00
										 |  |  |           <v-checkbox | 
					
						
							|  |  |  |             v-model="createTarget.onHand" | 
					
						
							|  |  |  |             hide-details | 
					
						
							|  |  |  |             :label="$t('tool.on-hand')" | 
					
						
							|  |  |  |           /> | 
					
						
							|  |  |  |           <p class="text-caption mt-1"> | 
					
						
							|  |  |  |             {{ $t("data-pages.foods.on-hand-checkbox-label") }} | 
					
						
							|  |  |  |           </p> | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |         </v-form> </v-card-text | 
					
						
							|  |  |  |     ></BaseDialog> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |     <!-- Alias Sub-Dialog --> | 
					
						
							|  |  |  |     <RecipeDataAliasManagerDialog | 
					
						
							|  |  |  |       v-if="editTarget" | 
					
						
							|  |  |  |       :value="aliasManagerDialog" | 
					
						
							|  |  |  |       :data="editTarget" | 
					
						
							|  |  |  |       @submit="updateFoodAlias" | 
					
						
							|  |  |  |       @cancel="aliasManagerDialog = false" | 
					
						
							|  |  |  |     /> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     <!-- Edit Dialog --> | 
					
						
							|  |  |  |     <BaseDialog | 
					
						
							|  |  |  |       v-model="editDialog" | 
					
						
							|  |  |  |       :icon="$globals.icons.foods" | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |       :title="$t('data-pages.foods.edit-food')" | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |       :submit-icon="$globals.icons.save" | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       :submit-text="$tc('general.save')" | 
					
						
							|  |  |  |       @submit="editSaveFood" | 
					
						
							|  |  |  |     > | 
					
						
							|  |  |  |       <v-card-text v-if="editTarget"> | 
					
						
							| 
									
										
										
										
											2022-08-14 00:44:11 -05:00
										 |  |  |         <v-form ref="domEditFoodForm"> | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |           <v-text-field | 
					
						
							|  |  |  |             v-model="editTarget.name" | 
					
						
							|  |  |  |             :label="$t('general.name')" | 
					
						
							|  |  |  |             :hint="$t('data-pages.foods.example-food-singular')" | 
					
						
							|  |  |  |             :rules="[validators.required]" | 
					
						
							|  |  |  |           ></v-text-field> | 
					
						
							|  |  |  |           <v-text-field | 
					
						
							|  |  |  |             v-model="editTarget.pluralName" | 
					
						
							|  |  |  |             :label="$t('general.plural-name')" | 
					
						
							|  |  |  |             :hint="$t('data-pages.foods.example-food-plural')" | 
					
						
							|  |  |  |           ></v-text-field> | 
					
						
							|  |  |  |           <v-text-field | 
					
						
							|  |  |  |             v-model="editTarget.description" | 
					
						
							|  |  |  |             :label="$t('recipe.description')" | 
					
						
							|  |  |  |           ></v-text-field> | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |           <v-autocomplete | 
					
						
							|  |  |  |             v-model="editTarget.labelId" | 
					
						
							|  |  |  |             clearable | 
					
						
							|  |  |  |             :items="allLabels" | 
					
						
							|  |  |  |             item-value="id" | 
					
						
							|  |  |  |             item-text="name" | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |             :label="$t('data-pages.foods.food-label')" | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |           > | 
					
						
							|  |  |  |           </v-autocomplete> | 
					
						
							| 
									
										
										
										
											2024-06-29 01:16:04 +10:00
										 |  |  |           <v-checkbox | 
					
						
							|  |  |  |             v-model="editTarget.onHand" | 
					
						
							|  |  |  |             hide-details | 
					
						
							|  |  |  |             :label="$t('tool.on-hand')" | 
					
						
							|  |  |  |           /> | 
					
						
							|  |  |  |           <p class="text-caption mt-1"> | 
					
						
							|  |  |  |             {{ $t("data-pages.foods.on-hand-checkbox-label") }} | 
					
						
							|  |  |  |           </p> | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |         </v-form> | 
					
						
							|  |  |  |       </v-card-text> | 
					
						
							|  |  |  |       <template #custom-card-action> | 
					
						
							|  |  |  |         <BaseButton edit @click="aliasManagerEventHandler">{{ $t('data-pages.manage-aliases') }}</BaseButton> | 
					
						
							|  |  |  |       </template> | 
					
						
							|  |  |  |     </BaseDialog> | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <!-- Delete Dialog --> | 
					
						
							|  |  |  |     <BaseDialog | 
					
						
							|  |  |  |       v-model="deleteDialog" | 
					
						
							| 
									
										
										
										
											2022-03-19 11:31:17 -08:00
										 |  |  |       :title="$tc('general.confirm')" | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       :icon="$globals.icons.alertCircle" | 
					
						
							|  |  |  |       color="error" | 
					
						
							|  |  |  |       @confirm="deleteFood" | 
					
						
							|  |  |  |     > | 
					
						
							|  |  |  |       <v-card-text> | 
					
						
							| 
									
										
										
										
											2023-11-21 15:22:36 +00:00
										 |  |  |         {{ $t("general.confirm-delete-generic") }} | 
					
						
							|  |  |  |         <p v-if="deleteTarget" class="mt-4 ml-4">{{ deleteTarget.name }}</p> | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       </v-card-text> | 
					
						
							|  |  |  |     </BaseDialog> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-04 19:55:14 +01:00
										 |  |  |     <!-- Bulk Delete Dialog --> | 
					
						
							|  |  |  |     <BaseDialog | 
					
						
							|  |  |  |       v-model="bulkDeleteDialog" | 
					
						
							|  |  |  |       width="650px" | 
					
						
							|  |  |  |       :title="$tc('general.confirm')" | 
					
						
							|  |  |  |       :icon="$globals.icons.alertCircle" | 
					
						
							|  |  |  |       color="error" | 
					
						
							|  |  |  |       @confirm="deleteSelected" | 
					
						
							|  |  |  |     > | 
					
						
							|  |  |  |       <v-card-text> | 
					
						
							|  |  |  |         <p class="h4">{{ $t('general.confirm-delete-generic-items') }}</p> | 
					
						
							|  |  |  |         <v-card outlined> | 
					
						
							|  |  |  |           <v-virtual-scroll height="400" item-height="25" :items="bulkDeleteTarget"> | 
					
						
							|  |  |  |             <template #default="{ item }"> | 
					
						
							|  |  |  |               <v-list-item class="pb-2"> | 
					
						
							|  |  |  |                 <v-list-item-content> | 
					
						
							|  |  |  |                   <v-list-item-title>{{ item.name }}</v-list-item-title> | 
					
						
							|  |  |  |                 </v-list-item-content> | 
					
						
							|  |  |  |               </v-list-item> | 
					
						
							|  |  |  |             </template> | 
					
						
							|  |  |  |           </v-virtual-scroll> | 
					
						
							|  |  |  |         </v-card> | 
					
						
							|  |  |  |       </v-card-text> | 
					
						
							|  |  |  |     </BaseDialog> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 00:42:42 +02:00
										 |  |  |     <!-- Bulk Asign Labels Dialog --> | 
					
						
							|  |  |  |     <BaseDialog | 
					
						
							|  |  |  |       v-model="bulkAssignLabelDialog" | 
					
						
							|  |  |  |       :title="$tc('data-pages.labels.assign-label')" | 
					
						
							|  |  |  |       :icon="$globals.icons.tags" | 
					
						
							|  |  |  |       @confirm="assignSelected" | 
					
						
							|  |  |  |     > | 
					
						
							|  |  |  |       <v-card-text> | 
					
						
							|  |  |  |         <v-card class="mb-4"> | 
					
						
							|  |  |  |           <v-card-title>{{ $tc("general.caution") }}</v-card-title> | 
					
						
							|  |  |  |           <v-card-text>{{ $tc("data-pages.foods.label-overwrite-warning") }}</v-card-text> | 
					
						
							|  |  |  |         </v-card> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <v-autocomplete | 
					
						
							|  |  |  |           v-model="bulkAssignLabelId" | 
					
						
							|  |  |  |           clearable | 
					
						
							|  |  |  |           :items="allLabels" | 
					
						
							|  |  |  |           item-value="id" | 
					
						
							|  |  |  |           item-text="name" | 
					
						
							|  |  |  |           :label="$tc('data-pages.foods.food-label')" | 
					
						
							|  |  |  |         /> | 
					
						
							|  |  |  |         <v-card outlined> | 
					
						
							|  |  |  |           <v-virtual-scroll height="400" item-height="25" :items="bulkAssignTarget"> | 
					
						
							|  |  |  |             <template #default="{ item }"> | 
					
						
							|  |  |  |               <v-list-item class="pb-2"> | 
					
						
							|  |  |  |                 <v-list-item-content> | 
					
						
							|  |  |  |                   <v-list-item-title>{{ item.name }}</v-list-item-title> | 
					
						
							|  |  |  |                 </v-list-item-content> | 
					
						
							|  |  |  |               </v-list-item> | 
					
						
							|  |  |  |             </template> | 
					
						
							|  |  |  |           </v-virtual-scroll> | 
					
						
							|  |  |  |         </v-card> | 
					
						
							|  |  |  |       </v-card-text> | 
					
						
							|  |  |  |     </BaseDialog> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-21 14:44:41 +00:00
										 |  |  |     <!-- Data Table --> | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |     <BaseCardSectionTitle :icon="$globals.icons.foods" section :title="$tc('data-pages.foods.food-data')"> </BaseCardSectionTitle> | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     <CrudTable | 
					
						
							|  |  |  |       :table-config="tableConfig" | 
					
						
							|  |  |  |       :headers.sync="tableHeaders" | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |       :data="foods || []" | 
					
						
							| 
									
										
										
										
											2024-06-21 00:42:42 +02:00
										 |  |  |       :bulk-actions="[ | 
					
						
							|  |  |  |         {icon: $globals.icons.delete, text: $tc('general.delete'), event: 'delete-selected'}, | 
					
						
							|  |  |  |         {icon: $globals.icons.tags, text: $tc('data-pages.labels.assign-label'), event: 'assign-selected'} | 
					
						
							|  |  |  |       ]" | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       @delete-one="deleteEventHandler" | 
					
						
							|  |  |  |       @edit-one="editEventHandler" | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |       @create-one="createEventHandler" | 
					
						
							| 
									
										
										
										
											2024-02-04 19:55:14 +01:00
										 |  |  |       @delete-selected="bulkDeleteEventHandler" | 
					
						
							| 
									
										
										
										
											2024-06-21 00:42:42 +02:00
										 |  |  |       @assign-selected="bulkAssignEventHandler" | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     > | 
					
						
							|  |  |  |       <template #button-row> | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |         <BaseButton create @click="createDialog = true" /> | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  |         <BaseButton @click="mergeDialog = true"> | 
					
						
							| 
									
										
										
										
											2023-11-21 15:31:05 +01:00
										 |  |  |           <template #icon> {{ $globals.icons.externalLink }} </template> | 
					
						
							| 
									
										
										
										
											2023-03-21 20:45:27 +01:00
										 |  |  |           {{ $t('data-pages.combine') }} | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |         </BaseButton> | 
					
						
							|  |  |  |       </template> | 
					
						
							|  |  |  |       <template #item.label="{ item }"> | 
					
						
							|  |  |  |         <MultiPurposeLabel v-if="item.label" :label="item.label"> | 
					
						
							|  |  |  |           {{ item.label.name }} | 
					
						
							|  |  |  |         </MultiPurposeLabel> | 
					
						
							|  |  |  |       </template> | 
					
						
							| 
									
										
										
										
											2024-06-29 01:16:04 +10:00
										 |  |  |       <template #item.onHand="{ item }"> | 
					
						
							|  |  |  |         <v-icon :color="item.onHand ? 'success' : undefined"> | 
					
						
							|  |  |  |           {{ item.onHand ? $globals.icons.check : $globals.icons.close }} | 
					
						
							|  |  |  |         </v-icon> | 
					
						
							|  |  |  |       </template> | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |       <template #button-bottom> | 
					
						
							|  |  |  |         <BaseButton @click="seedDialog = true"> | 
					
						
							|  |  |  |           <template #icon> {{ $globals.icons.database }} </template> | 
					
						
							| 
									
										
										
										
											2023-03-21 20:45:27 +01:00
										 |  |  |           {{ $t('data-pages.seed') }} | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |         </BaseButton> | 
					
						
							|  |  |  |       </template> | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     </CrudTable> | 
					
						
							|  |  |  |   </div> | 
					
						
							|  |  |  | </template> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <script lang="ts"> | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  | import { defineComponent, onMounted, ref, computed, useContext } from "@nuxtjs/composition-api"; | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  | import type { LocaleObject } from "@nuxtjs/i18n"; | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  | import RecipeDataAliasManagerDialog from "~/components/Domain/Recipe/RecipeDataAliasManagerDialog.vue"; | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  | import { validators } from "~/composables/use-validators"; | 
					
						
							|  |  |  | import { useUserApi } from "~/composables/api"; | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  | import { CreateIngredientFood, IngredientFood, IngredientFoodAlias } from "~/lib/api/types/recipe"; | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  | import MultiPurposeLabel from "~/components/Domain/ShoppingList/MultiPurposeLabel.vue"; | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  | import { useLocales } from "~/composables/use-locales"; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  | import { useFoodStore, useLabelStore } from "~/composables/store"; | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  | import { VForm } from "~/types/vuetify"; | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | export default defineComponent({ | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |   components: { MultiPurposeLabel, RecipeDataAliasManagerDialog }, | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |   setup() { | 
					
						
							|  |  |  |     const userApi = useUserApi(); | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |     const { i18n } = useContext(); | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     const tableConfig = { | 
					
						
							|  |  |  |       hideColumns: true, | 
					
						
							|  |  |  |       canExport: true, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     const tableHeaders = [ | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |         text: i18n.tc("general.id"), | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |         value: "id", | 
					
						
							|  |  |  |         show: false, | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |         text: i18n.tc("general.name"), | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |         value: "name", | 
					
						
							|  |  |  |         show: true, | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |       { | 
					
						
							|  |  |  |         text: i18n.tc("general.plural-name"), | 
					
						
							|  |  |  |         value: "pluralName", | 
					
						
							|  |  |  |         show: true, | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       { | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |         text: i18n.tc("recipe.description"), | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |         value: "description", | 
					
						
							|  |  |  |         show: true, | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |         text: i18n.tc("shopping-list.label"), | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |         value: "label", | 
					
						
							|  |  |  |         show: true, | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2024-06-29 01:16:04 +10:00
										 |  |  |       { | 
					
						
							|  |  |  |         text: i18n.tc("tool.on-hand"), | 
					
						
							|  |  |  |         value: "onHand", | 
					
						
							|  |  |  |         show: true, | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     ]; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const foodStore = useFoodStore(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |     // ===============================================================
 | 
					
						
							|  |  |  |     // Food Creator
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const domNewFoodForm = ref<VForm>(); | 
					
						
							|  |  |  |     const createDialog = ref(false); | 
					
						
							|  |  |  |     const createTarget = ref<CreateIngredientFood>({ | 
					
						
							|  |  |  |       name: "", | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function createEventHandler() { | 
					
						
							|  |  |  |       createDialog.value = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async function createFood() { | 
					
						
							|  |  |  |       if (!createTarget.value || !createTarget.value.name) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // @ts-expect-error the createOne function erroneously expects an id because it uses the IngredientFood type
 | 
					
						
							|  |  |  |       await foodStore.actions.createOne(createTarget.value); | 
					
						
							|  |  |  |       createDialog.value = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       domNewFoodForm.value?.reset(); | 
					
						
							|  |  |  |       createTarget.value = { | 
					
						
							|  |  |  |         name: "", | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |     // ===============================================================
 | 
					
						
							|  |  |  |     // Food Editor
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     const editDialog = ref(false); | 
					
						
							|  |  |  |     const editTarget = ref<IngredientFood | null>(null); | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     function editEventHandler(item: IngredientFood) { | 
					
						
							|  |  |  |       editTarget.value = item; | 
					
						
							|  |  |  |       editDialog.value = true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     async function editSaveFood() { | 
					
						
							|  |  |  |       if (!editTarget.value) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |       await foodStore.actions.updateOne(editTarget.value); | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       editDialog.value = false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // ===============================================================
 | 
					
						
							|  |  |  |     // Food Delete
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     const deleteDialog = ref(false); | 
					
						
							|  |  |  |     const deleteTarget = ref<IngredientFood | null>(null); | 
					
						
							|  |  |  |     function deleteEventHandler(item: IngredientFood) { | 
					
						
							|  |  |  |       deleteTarget.value = item; | 
					
						
							|  |  |  |       deleteDialog.value = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     async function deleteFood() { | 
					
						
							|  |  |  |       if (!deleteTarget.value) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |       await foodStore.actions.deleteOne(deleteTarget.value.id); | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       deleteDialog.value = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-04 19:55:14 +01:00
										 |  |  |     const bulkDeleteDialog = ref(false); | 
					
						
							|  |  |  |     const bulkDeleteTarget = ref<IngredientFood[]>([]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function bulkDeleteEventHandler(selection: IngredientFood[]) { | 
					
						
							|  |  |  |       bulkDeleteTarget.value = selection; | 
					
						
							|  |  |  |       bulkDeleteDialog.value = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async function deleteSelected() { | 
					
						
							|  |  |  |       for (const item of bulkDeleteTarget.value) { | 
					
						
							|  |  |  |         await foodStore.actions.deleteOne(item.id); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       bulkDeleteTarget.value = []; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |     // ============================================================
 | 
					
						
							|  |  |  |     // Alias Manager
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const aliasManagerDialog = ref(false); | 
					
						
							|  |  |  |     function aliasManagerEventHandler() { | 
					
						
							|  |  |  |       aliasManagerDialog.value = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function updateFoodAlias(newAliases: IngredientFoodAlias[]) { | 
					
						
							|  |  |  |       if (!editTarget.value) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       editTarget.value.aliases = newAliases; | 
					
						
							|  |  |  |       aliasManagerDialog.value = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  |     // ============================================================
 | 
					
						
							|  |  |  |     // Merge Foods
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const mergeDialog = ref(false); | 
					
						
							|  |  |  |     const fromFood = ref<IngredientFood | null>(null); | 
					
						
							|  |  |  |     const toFood = ref<IngredientFood | null>(null); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const canMerge = computed(() => { | 
					
						
							|  |  |  |       return fromFood.value && toFood.value && fromFood.value.id !== toFood.value.id; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async function mergeFoods() { | 
					
						
							|  |  |  |       if (!canMerge.value || !fromFood.value || !toFood.value) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       const { data } = await userApi.foods.merge(fromFood.value.id, toFood.value.id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (data) { | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |         foodStore.actions.refresh(); | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     // ============================================================
 | 
					
						
							|  |  |  |     // Labels
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |     const { labels: allLabels } = useLabelStore(); | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |     // ============================================================
 | 
					
						
							|  |  |  |     // Seed
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const seedDialog = ref(false); | 
					
						
							|  |  |  |     const locale = ref(""); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-29 02:39:51 +01:00
										 |  |  |     const { locales: LOCALES, locale: currentLocale } = useLocales(); | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     onMounted(() => { | 
					
						
							|  |  |  |       locale.value = currentLocale.value; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const locales = LOCALES.filter((locale) => | 
					
						
							|  |  |  |       (i18n.locales as LocaleObject[]).map((i18nLocale) => i18nLocale.code).includes(locale.value) | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async function seedDatabase() { | 
					
						
							|  |  |  |       const { data } = await userApi.seeders.foods({ locale: locale.value }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (data) { | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |         foodStore.actions.refresh(); | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-21 00:42:42 +02:00
										 |  |  |     // ============================================================
 | 
					
						
							|  |  |  |     // Bulk Assign Labels
 | 
					
						
							|  |  |  |     const bulkAssignLabelDialog = ref(false); | 
					
						
							|  |  |  |     const bulkAssignTarget = ref<IngredientFood[]>([]); | 
					
						
							|  |  |  |     const bulkAssignLabelId = ref<string | undefined>(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function bulkAssignEventHandler(selection: IngredientFood[]) { | 
					
						
							|  |  |  |       bulkAssignTarget.value = selection; | 
					
						
							|  |  |  |       bulkAssignLabelDialog.value = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     async function assignSelected() { | 
					
						
							|  |  |  |       if (!bulkAssignLabelId.value) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       for (const item of bulkAssignTarget.value) { | 
					
						
							|  |  |  |         item.labelId = bulkAssignLabelId.value; | 
					
						
							|  |  |  |         await foodStore.actions.updateOne(item); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       bulkAssignTarget.value = []; | 
					
						
							|  |  |  |       bulkAssignLabelId.value = undefined; | 
					
						
							|  |  |  |       foodStore.actions.refresh(); | 
					
						
							|  |  |  |       // reload page, because foodStore.actions.refresh() does not update the table, reactivity for this seems to be broken (again)
 | 
					
						
							|  |  |  |       document.location.reload(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     return { | 
					
						
							|  |  |  |       tableConfig, | 
					
						
							|  |  |  |       tableHeaders, | 
					
						
							| 
									
										
										
										
											2022-05-29 17:29:59 -08:00
										 |  |  |       foods: foodStore.foods, | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       allLabels, | 
					
						
							|  |  |  |       validators, | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |       // Create
 | 
					
						
							|  |  |  |       createDialog, | 
					
						
							| 
									
										
										
										
											2022-08-14 00:44:11 -05:00
										 |  |  |       domNewFoodForm, | 
					
						
							| 
									
										
										
										
											2022-07-31 15:31:20 -05:00
										 |  |  |       createEventHandler, | 
					
						
							|  |  |  |       createFood, | 
					
						
							|  |  |  |       createTarget, | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |       // Edit
 | 
					
						
							|  |  |  |       editDialog, | 
					
						
							|  |  |  |       editEventHandler, | 
					
						
							|  |  |  |       editSaveFood, | 
					
						
							|  |  |  |       editTarget, | 
					
						
							|  |  |  |       // Delete
 | 
					
						
							|  |  |  |       deleteEventHandler, | 
					
						
							|  |  |  |       deleteDialog, | 
					
						
							|  |  |  |       deleteFood, | 
					
						
							| 
									
										
										
										
											2023-11-20 17:09:16 +00:00
										 |  |  |       deleteTarget, | 
					
						
							| 
									
										
										
										
											2024-02-04 19:55:14 +01:00
										 |  |  |       bulkDeleteDialog, | 
					
						
							|  |  |  |       bulkDeleteTarget, | 
					
						
							|  |  |  |       bulkDeleteEventHandler, | 
					
						
							|  |  |  |       deleteSelected, | 
					
						
							| 
									
										
										
										
											2023-11-14 09:39:07 -06:00
										 |  |  |       // Alias Manager
 | 
					
						
							|  |  |  |       aliasManagerDialog, | 
					
						
							|  |  |  |       aliasManagerEventHandler, | 
					
						
							|  |  |  |       updateFoodAlias, | 
					
						
							| 
									
										
										
										
											2022-04-09 19:08:48 -08:00
										 |  |  |       // Merge
 | 
					
						
							|  |  |  |       canMerge, | 
					
						
							|  |  |  |       mergeFoods, | 
					
						
							|  |  |  |       mergeDialog, | 
					
						
							|  |  |  |       fromFood, | 
					
						
							|  |  |  |       toFood, | 
					
						
							| 
									
										
										
										
											2022-05-01 12:45:50 -08:00
										 |  |  |       // Seed Data
 | 
					
						
							|  |  |  |       locale, | 
					
						
							|  |  |  |       locales, | 
					
						
							|  |  |  |       seedDialog, | 
					
						
							|  |  |  |       seedDatabase, | 
					
						
							| 
									
										
										
										
											2024-06-21 00:42:42 +02:00
										 |  |  |       // Bulk Assign Labels
 | 
					
						
							|  |  |  |       bulkAssignLabelDialog, | 
					
						
							|  |  |  |       bulkAssignTarget, | 
					
						
							|  |  |  |       bulkAssignLabelId, | 
					
						
							|  |  |  |       bulkAssignEventHandler, | 
					
						
							|  |  |  |       assignSelected, | 
					
						
							| 
									
										
										
										
											2022-03-17 10:30:10 -08:00
										 |  |  |     }; | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | </script> |