mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-04 16:42:58 +01:00
🔨 Show cloud backups list
This commit is contained in:
parent
8f5102b3e4
commit
a178ef246d
@ -3,7 +3,13 @@
|
|||||||
<navbar-component></navbar-component>
|
<navbar-component></navbar-component>
|
||||||
<message-bar></message-bar>
|
<message-bar></message-bar>
|
||||||
<webdav-settings-menu></webdav-settings-menu>
|
<webdav-settings-menu></webdav-settings-menu>
|
||||||
<v-main> </v-main>
|
<v-main class="mx-12">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="6" offset="6">
|
||||||
|
<cloud-list></cloud-list>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</v-main>
|
||||||
</v-app>
|
</v-app>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -11,6 +17,7 @@
|
|||||||
import NavbarComponent from "./components/NavbarComponent.vue";
|
import NavbarComponent from "./components/NavbarComponent.vue";
|
||||||
import MessageBar from "./components/MessageBar.vue";
|
import MessageBar from "./components/MessageBar.vue";
|
||||||
import WebdavSettingsMenu from "./components/settings/WebdavConfigMenu.vue";
|
import WebdavSettingsMenu from "./components/settings/WebdavConfigMenu.vue";
|
||||||
|
import CloudList from "./components/cloud/CloudList.vue";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
103
nextcloud_backup/frontend/src/components/cloud/CloudList.vue
Normal file
103
nextcloud_backup/frontend/src/components/cloud/CloudList.vue
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<v-card elevation="10" class="mt-10" border>
|
||||||
|
<v-card-title class="text-center"> Cloud </v-card-title>
|
||||||
|
<v-divider></v-divider>
|
||||||
|
<v-card-text>
|
||||||
|
<v-row>
|
||||||
|
<v-col>
|
||||||
|
<v-card variant="outlined" elevation="5" color="grey-darken-2">
|
||||||
|
<v-card-title class="text-center text-white">Auto</v-card-title>
|
||||||
|
<v-divider color="grey-darken-3"></v-divider>
|
||||||
|
<v-card-text class="pa-0">
|
||||||
|
<v-list variant="tonal" class="pa-0">
|
||||||
|
<v-list-item
|
||||||
|
v-if="autoBackups.length == 0"
|
||||||
|
class="text-center text-subtitle-2 text-disabled"
|
||||||
|
>Folder is empty</v-list-item
|
||||||
|
>
|
||||||
|
<template v-for="(item, index) in autoBackups" :key="item.id">
|
||||||
|
<v-divider
|
||||||
|
v-if="index != 0"
|
||||||
|
color="grey-darken-3"
|
||||||
|
></v-divider>
|
||||||
|
<v-list-item>
|
||||||
|
<v-list-item-title>{{ item.name }}</v-list-item-title>
|
||||||
|
<template v-slot:append>
|
||||||
|
<v-btn variant="text" icon color="secondary">
|
||||||
|
<v-icon>mdi-information</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
<v-btn variant="text" icon color="red">
|
||||||
|
<v-icon>mdi-trash-can</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
</template>
|
||||||
|
</v-list-item>
|
||||||
|
</template>
|
||||||
|
</v-list>
|
||||||
|
</v-card-text>
|
||||||
|
</v-card>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<v-row>
|
||||||
|
<v-col>
|
||||||
|
<v-card variant="outlined" elevation="5" color="grey-darken-2">
|
||||||
|
<v-card-title class="text-center text-white">Manual</v-card-title>
|
||||||
|
<v-divider color="grey-darken-3"></v-divider>
|
||||||
|
<v-card-text class="pa-0">
|
||||||
|
<v-list variant="tonal" class="pa-0">
|
||||||
|
<v-list-item
|
||||||
|
v-if="manualBackups.length == 0"
|
||||||
|
class="text-center text-subtitle-2 text-disabled"
|
||||||
|
>Folder is empty</v-list-item
|
||||||
|
>
|
||||||
|
<template
|
||||||
|
v-for="(item, index) in manualBackups"
|
||||||
|
:key="item.id"
|
||||||
|
>
|
||||||
|
<v-divider
|
||||||
|
v-if="index != 0"
|
||||||
|
color="grey-darken-3"
|
||||||
|
></v-divider>
|
||||||
|
<v-list-item>
|
||||||
|
<v-list-item-title>{{ item.name }}</v-list-item-title>
|
||||||
|
<template v-slot:append>
|
||||||
|
<v-btn variant="text" icon color="secondary">
|
||||||
|
<v-icon>mdi-information</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
<v-btn variant="text" icon color="red">
|
||||||
|
<v-icon>mdi-trash-can</v-icon>
|
||||||
|
</v-btn>
|
||||||
|
</template>
|
||||||
|
</v-list-item>
|
||||||
|
</template>
|
||||||
|
</v-list>
|
||||||
|
</v-card-text>
|
||||||
|
</v-card>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</v-card-text>
|
||||||
|
</v-card>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref } from "vue";
|
||||||
|
import type { WebdavBackup } from "@/types/webdav";
|
||||||
|
import {
|
||||||
|
getAutoBackupList,
|
||||||
|
getManualBackupList,
|
||||||
|
} from "@/services/webdavService";
|
||||||
|
|
||||||
|
const autoBackups = ref<WebdavBackup[]>([]);
|
||||||
|
const manualBackups = ref<WebdavBackup[]>([]);
|
||||||
|
function refreshBackup() {
|
||||||
|
getAutoBackupList().then((value) => {
|
||||||
|
autoBackups.value = value;
|
||||||
|
});
|
||||||
|
getManualBackupList().then((value) => {
|
||||||
|
manualBackups.value = value;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
refreshBackup();
|
||||||
|
</script>
|
@ -8,7 +8,8 @@ import { createVuetify } from "vuetify";
|
|||||||
const darkTheme = {
|
const darkTheme = {
|
||||||
dark: true,
|
dark: true,
|
||||||
colors: {
|
colors: {
|
||||||
primary: "#0091ea",
|
primary: "#0091ea", //light-blue accent-4
|
||||||
|
accent: "#FF6F00", //amber darken-4
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
10
nextcloud_backup/frontend/src/services/webdavService.ts
Normal file
10
nextcloud_backup/frontend/src/services/webdavService.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import type { WebdavBackup } from "@/types/webdav";
|
||||||
|
import kyClient from "./kyClient";
|
||||||
|
|
||||||
|
export function getAutoBackupList() {
|
||||||
|
return kyClient.get("webdav/backup/auto").json<WebdavBackup[]>();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getManualBackupList() {
|
||||||
|
return kyClient.get("webdav/backup/manual").json<WebdavBackup[]>();
|
||||||
|
}
|
8
nextcloud_backup/frontend/src/types/webdav.ts
Normal file
8
nextcloud_backup/frontend/src/types/webdav.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import type { DateTime } from "luxon";
|
||||||
|
|
||||||
|
export interface WebdavBackup {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
size: number;
|
||||||
|
lastEdit: DateTime;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user