mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	* feat(frontend): ✨ add user recipe export functionality * remove depreciated folders * change/remove depreciated folders * add testing variable in config * add GUID support for group_id * improve testing feedback on 422 errors * remove/cleanup files/folders * initial user export support * delete unused css * update backup page UI * remove depreciated settings * feat: ✨ export download links * fix #813 * remove top level statements * show footer * add export purger to scheduler * update purge glob * fix meal-planner lockout * feat: ✨ add bulk delete/purge exports * style(frontend): 💄 update UI for site settings * feat: ✨ add version checker * update documentation Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-data-table
 | |
|     item-key="id"
 | |
|     :headers="headers"
 | |
|     :items="exports"
 | |
|     :items-per-page="15"
 | |
|     class="elevation-0"
 | |
|     @click:row="downloadData"
 | |
|   >
 | |
|     <template #item.expires="{ item }">
 | |
|       {{ getTimeToExpire(item.expires) }}
 | |
|     </template>
 | |
|     <template #item.actions="{ item }">
 | |
|       <BaseButton download small :download-url="`/api/recipes/bulk-actions/export/download?path=${item.path}`">
 | |
|       </BaseButton>
 | |
|     </template>
 | |
|   </v-data-table>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent } from "@nuxtjs/composition-api";
 | |
| import { parseISO, formatDistanceToNow } from "date-fns";
 | |
| import { GroupDataExport } from "~/api/class-interfaces/recipe-bulk-actions";
 | |
| export default defineComponent({
 | |
|   props: {
 | |
|     exports: {
 | |
|       type: Array as () => GroupDataExport[],
 | |
|       required: true,
 | |
|     },
 | |
|   },
 | |
|   setup() {
 | |
|     const headers = [
 | |
|       { text: "Export", value: "name" },
 | |
|       { text: "File Name", value: "filename" },
 | |
|       { text: "Size", value: "size" },
 | |
|       { text: "Link Expires", value: "expires" },
 | |
|       { text: "", value: "actions" },
 | |
|     ];
 | |
| 
 | |
|     function getTimeToExpire(timeString: string) {
 | |
|       const expiresAt = parseISO(timeString);
 | |
| 
 | |
|       return formatDistanceToNow(expiresAt, {
 | |
|         addSuffix: false,
 | |
|       });
 | |
|     }
 | |
| 
 | |
|     function downloadData(_: any) {
 | |
|       console.log("Downloading data...");
 | |
|     }
 | |
| 
 | |
|     return {
 | |
|       downloadData,
 | |
|       headers,
 | |
|       getTimeToExpire,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 | |
| 
 |