mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	* fix(frontend): 🐛 update dialog implementation to simplify state management * test(backend): ✅ refactor test fixtures + admin group tests * chore(backend): 🔨 add launcher.json for python debugging (tests) * fix typing * feat(backend): ✨ refactor/fix group management for admins * feat(frontend): ✨ add/fix admin group management * add LDAP checker Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			168 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			168 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| // TODO: Create a new datatable below to display the import summary json files saved on server (Need to do as well).
 | |
| <template>
 | |
|   <v-container fluid>
 | |
|     <section>
 | |
|       <BaseCardSectionTitle title="Mealie Backups"> </BaseCardSectionTitle>
 | |
| 
 | |
|       <!-- Delete Dialog -->
 | |
|       <BaseDialog
 | |
|         v-model="deleteDialog"
 | |
|         :title="$t('settings.backup.delete-backup')"
 | |
|         color="error"
 | |
|         :icon="$globals.icons.alertCircle"
 | |
|         @confirm="deleteBackup()"
 | |
|       >
 | |
|         <v-card-text>
 | |
|           {{ $t("general.confirm-delete-generic") }}
 | |
|         </v-card-text>
 | |
|       </BaseDialog>
 | |
| 
 | |
|       <!-- Import Dialog -->
 | |
|       <BaseDialog
 | |
|         v-model="importDialog"
 | |
|         :title="selected.name"
 | |
|         :icon="$globals.icons.database"
 | |
|         :submit-text="$t('general.import')"
 | |
|         @submit="importBackup()"
 | |
|       >
 | |
|         <!-- <v-card-subtitle v-if="date" class="mb-n3 mt-3"> {{ $d(new Date(date), "medium") }} </v-card-subtitle> -->
 | |
|         <v-divider></v-divider>
 | |
|         <v-card-text>
 | |
|           <AdminBackupImportOptions v-model="selected.options" class="mt-5 mb-2" :import-backup="true" />
 | |
|         </v-card-text>
 | |
| 
 | |
|         <v-divider></v-divider>
 | |
|       </BaseDialog>
 | |
| 
 | |
|       <v-toolbar flat color="background" class="justify-between">
 | |
|         <BaseButton class="mr-2" @click="createBackup(null)" />
 | |
|         <!-- Backup Creation Dialog -->
 | |
|         <BaseDialog
 | |
|           v-model="createDialog"
 | |
|           :title="$t('settings.backup.create-heading')"
 | |
|           :icon="$globals.icons.database"
 | |
|           :submit-text="$t('general.create')"
 | |
|           @submit="createBackup"
 | |
|         >
 | |
|           <template #activator="{ open }">
 | |
|             <BaseButton secondary @click="open"> {{ $t("general.custom") }}</BaseButton>
 | |
|           </template>
 | |
| 
 | |
|           <v-divider></v-divider>
 | |
|           <v-card-text>
 | |
|             <v-text-field v-model="backupOptions.tag" :label="$t('settings.backup.backup-tag')"> </v-text-field>
 | |
|             <AdminBackupImportOptions v-model="backupOptions.options" class="mt-5 mb-2" />
 | |
|             <v-divider class="my-3"></v-divider>
 | |
|             <p class="text-uppercase">Templates</p>
 | |
|             <v-checkbox
 | |
|               v-for="(template, index) in backups.templates"
 | |
|               :key="index"
 | |
|               v-model="backupOptions.templates"
 | |
|               :value="template"
 | |
|               :label="template"
 | |
|             ></v-checkbox>
 | |
|           </v-card-text>
 | |
|         </BaseDialog>
 | |
|       </v-toolbar>
 | |
| 
 | |
|       <v-data-table
 | |
|         :headers="headers"
 | |
|         :items="backups.imports || []"
 | |
|         class="elevation-0"
 | |
|         hide-default-footer
 | |
|         disable-pagination
 | |
|         :search="search"
 | |
|         @click:row="setSelected"
 | |
|       >
 | |
|         <template #item.date="{ item }">
 | |
|           {{ $d(Date.parse(item.date), "medium") }}
 | |
|         </template>
 | |
|         <template #item.actions="{ item }">
 | |
|           <BaseButton
 | |
|             small
 | |
|             class="mx-1"
 | |
|             delete
 | |
|             @click.stop="
 | |
|               deleteDialog = true;
 | |
|               deleteTarget = item.name;
 | |
|             "
 | |
|           />
 | |
|           <BaseButton small download :download-url="backupsFileNameDownload(item.name)" @click.stop />
 | |
|         </template>
 | |
|       </v-data-table>
 | |
|       <v-divider></v-divider>
 | |
|       <div class="mt-4 d-flex justify-end">
 | |
|         <AppButtonUpload
 | |
|           :text-btn="false"
 | |
|           class="mr-4"
 | |
|           url="/api/backups/upload"
 | |
|           accept=".zip"
 | |
|           color="info"
 | |
|           @uploaded="refreshBackups()"
 | |
|         />
 | |
|       </div>
 | |
|     </section>
 | |
|   </v-container>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent, reactive, toRefs, useContext } from "@nuxtjs/composition-api";
 | |
| import AdminBackupImportOptions from "@/components/Domain/Admin/AdminBackupImportOptions.vue";
 | |
| import { useBackups } from "~/composables/use-backups";
 | |
| 
 | |
| export default defineComponent({
 | |
|   components: { AdminBackupImportOptions },
 | |
|   layout: "admin",
 | |
|   setup() {
 | |
|     const { i18n } = useContext();
 | |
| 
 | |
|     const { selected, backups, backupOptions, deleteTarget, refreshBackups, importBackup, createBackup, deleteBackup } =
 | |
|       useBackups();
 | |
| 
 | |
|     const state = reactive({
 | |
|       deleteDialog: false,
 | |
|       createDialog: false,
 | |
|       importDialog: false,
 | |
|       search: "",
 | |
|       headers: [
 | |
|         { text: i18n.t("general.name"), value: "name" },
 | |
|         { text: i18n.t("general.created"), value: "date" },
 | |
|         { text: "Size", value: "size" },
 | |
|         { text: "", value: "actions", align: "right" },
 | |
|       ],
 | |
|     });
 | |
| 
 | |
|     function setSelected(data: { name: string; date: string }) {
 | |
|       if (selected.value === null || selected.value === undefined) {
 | |
|         return;
 | |
|       }
 | |
|       selected.value.name = data.name;
 | |
|       state.importDialog = true;
 | |
|     }
 | |
| 
 | |
|     const backupsFileNameDownload = (fileName: string) => `api/backups/${fileName}/download`;
 | |
| 
 | |
|     return {
 | |
|       selected,
 | |
|       ...toRefs(state),
 | |
|       backupOptions,
 | |
|       backups,
 | |
|       createBackup,
 | |
|       deleteBackup,
 | |
|       setSelected,
 | |
|       deleteTarget,
 | |
|       importBackup,
 | |
|       refreshBackups,
 | |
|       backupsFileNameDownload,
 | |
|     };
 | |
|   },
 | |
|   head() {
 | |
|     return {
 | |
|       title: this.$t("sidebar.backups") as string,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 | |
|     
 | |
| <style scoped>
 | |
| </style> |