-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
938 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
152 changes: 152 additions & 0 deletions
152
ui/src/components/shared-folders/BackupRepositorySelector.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
<!-- | ||
Copyright (C) 2024 Nethesis S.r.l. | ||
SPDX-License-Identifier: GPL-3.0-or-later | ||
--> | ||
<template> | ||
<div class="repo-selector"> | ||
<div class="repo-list"> | ||
<!-- skeleton --> | ||
<div v-if="loading"> | ||
<cv-tile | ||
v-for="index in 2" | ||
:key="index" | ||
:light="light" | ||
class="repo-tile" | ||
> | ||
<cv-skeleton-text | ||
:paragraph="true" | ||
:line-count="2" | ||
></cv-skeleton-text> | ||
</cv-tile> | ||
</div> | ||
<!-- no repositories --> | ||
<NsEmptyState | ||
v-else-if="!repositories.length" | ||
:title="$t('shares.no_backup_destination')" | ||
/> | ||
<!-- repo list --> | ||
<NsTile | ||
v-else | ||
v-for="(repo, index) of repositories" | ||
:key="index" | ||
:light="light" | ||
kind="selectable" | ||
:selected="repo.repository_id === value" | ||
value="repoValue" | ||
@click="onTileClick(repo)" | ||
class="repo-tile" | ||
> | ||
<div> | ||
{{ repo.repository_name }} | ||
</div> | ||
<!-- repository url --> | ||
<div class="secondary-row"> | ||
{{ repo.repository_url }} | ||
</div> | ||
<!-- timestamp --> | ||
<div class="secondary-row"> | ||
{{ formatDate(new Date(repo.timestamp * 1000), "PPpp") }} | ||
</div> | ||
<!-- node and/or cluster --> | ||
<div | ||
v-if="repo.node_fqdn || repo.is_generated_locally !== null" | ||
class="secondary-row" | ||
> | ||
<template v-if="repo.node_fqdn && repo.is_generated_locally !== null"> | ||
<!-- node and cluster --> | ||
<template v-if="repo.is_generated_locally"> | ||
{{ | ||
$t("shares.from_node_name_of_this_cluster", { | ||
name: repo.node_fqdn, | ||
}) | ||
}} | ||
</template> | ||
<template v-else> | ||
{{ | ||
$t("shares.from_node_name_of_different_cluster", { | ||
name: repo.node_fqdn, | ||
}) | ||
}} | ||
</template> | ||
</template> | ||
<template v-else-if="repo.node_fqdn"> | ||
<!-- node only --> | ||
{{ | ||
$t("shares.from_node_name", { | ||
name: repo.node_fqdn, | ||
}) | ||
}} | ||
</template> | ||
<template v-else> | ||
<!-- cluster only --> | ||
<template v-if="repo.is_generated_locally"> | ||
{{ $t("shares.from_this_cluster") }} | ||
</template> | ||
<template v-else> | ||
{{ $t("shares.from_different_cluster") }} | ||
</template> | ||
</template> | ||
</div> | ||
</NsTile> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { UtilService, DateTimeService } from "@nethserver/ns8-ui-lib"; | ||
|
||
export default { | ||
name: "BackupRepositorySelector", | ||
components: {}, | ||
mixins: [UtilService, DateTimeService], | ||
props: { | ||
value: { | ||
type: String, | ||
required: true, | ||
}, | ||
repositories: { | ||
type: Array, | ||
required: true, | ||
}, | ||
loading: { | ||
type: Boolean, | ||
default: false, | ||
}, | ||
light: Boolean, | ||
}, | ||
methods: { | ||
onTileClick(repo) { | ||
if (repo.repository_id !== this.value) { | ||
this.$emit("input", repo.repository_id); | ||
} else { | ||
// tile has been deselected | ||
this.$emit("input", ""); | ||
} | ||
}, | ||
}, | ||
}; | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
@import "../../styles/carbon-utils"; | ||
|
||
.repo-selector { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.repo-list { | ||
overflow-y: auto; | ||
max-height: 21rem; | ||
} | ||
|
||
.ns-tile.repo-tile, | ||
.cv-tile.repo-tile { | ||
margin-bottom: $spacing-03; | ||
} | ||
|
||
.secondary-row { | ||
margin-top: $spacing-02; | ||
color: $ui-04; | ||
} | ||
</style> |
147 changes: 147 additions & 0 deletions
147
ui/src/components/shared-folders/BackupSnapshotSelector.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
<!-- | ||
Copyright (C) 2024 Nethesis S.r.l. | ||
SPDX-License-Identifier: GPL-3.0-or-later | ||
--> | ||
<template> | ||
<div class="snapshot-selector"> | ||
<div class="snapshot-list"> | ||
<!-- skeleton --> | ||
<div v-if="loading"> | ||
<cv-tile | ||
v-for="index in 2" | ||
:key="index" | ||
:light="light" | ||
class="snapshot-tile" | ||
> | ||
<cv-skeleton-text | ||
:paragraph="true" | ||
:line-count="2" | ||
></cv-skeleton-text> | ||
</cv-tile> | ||
</div> | ||
<!-- no snapshot to restore --> | ||
<NsEmptyState | ||
v-else-if="!snapshots.length" | ||
:title="$t('shares.no_snapshot_to_restore')" | ||
/> | ||
<!-- snapshot list --> | ||
<NsTile | ||
v-else | ||
v-for="(snapshot, index) of snapshotsLoaded" | ||
:key="index" | ||
:light="light" | ||
kind="selectable" | ||
:selected="snapshot.id === value" | ||
value="snapshotValue" | ||
@click="onTileClick(snapshot)" | ||
class="snapshot-tile" | ||
> | ||
<div> | ||
{{ formatDate(new Date(snapshot.timestamp * 1000), "PPpp") }} | ||
</div> | ||
<div v-if="index == 0" class="secondary-row"> | ||
{{ $t("shares.most_recent") }} | ||
</div> | ||
</NsTile> | ||
<infinite-loading | ||
:identifier="infiniteId" | ||
@infinite="infiniteScrollHandler" | ||
></infinite-loading> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { UtilService, DateTimeService } from "@nethserver/ns8-ui-lib"; | ||
|
||
export default { | ||
name: "BackupSnapshotSelector", | ||
components: {}, | ||
mixins: [UtilService, DateTimeService], | ||
props: { | ||
value: { | ||
type: String, | ||
required: true, | ||
}, | ||
snapshots: { | ||
type: Array, | ||
required: true, | ||
}, | ||
loading: { | ||
type: Boolean, | ||
default: false, | ||
}, | ||
light: Boolean, | ||
}, | ||
data() { | ||
return { | ||
// infinite scroll | ||
snapshotsLoaded: [], | ||
pageNum: 0, | ||
pageSize: 20, | ||
infiniteId: +new Date(), | ||
}; | ||
}, | ||
watch: { | ||
snapshots: function () { | ||
this.snapshotsLoaded = []; | ||
this.pageNum = 0; | ||
this.infiniteId += 1; | ||
this.infiniteScrollHandler(); | ||
}, | ||
}, | ||
methods: { | ||
onTileClick(snapshot) { | ||
if (snapshot.id !== this.value) { | ||
this.$emit("input", snapshot.id); | ||
} else { | ||
// tile has been deselected | ||
this.$emit("input", ""); | ||
} | ||
}, | ||
infiniteScrollHandler($state) { | ||
const pageItems = this.snapshots.slice( | ||
this.pageNum * this.pageSize, | ||
(this.pageNum + 1) * this.pageSize | ||
); | ||
|
||
if (pageItems.length) { | ||
this.pageNum++; | ||
this.snapshotsLoaded.push(...pageItems); | ||
|
||
if ($state) { | ||
$state.loaded(); | ||
} | ||
} else { | ||
if ($state) { | ||
$state.complete(); | ||
} | ||
} | ||
}, | ||
}, | ||
}; | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
@import "../../styles/carbon-utils"; | ||
|
||
.snapshot-selector { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.snapshot-list { | ||
overflow-y: auto; | ||
max-height: 21rem; | ||
} | ||
|
||
.ns-tile.snapshot-tile, | ||
.cv-tile.snapshot-tile { | ||
margin-bottom: $spacing-03; | ||
} | ||
|
||
.secondary-row { | ||
margin-top: $spacing-02; | ||
color: $ui-04; | ||
} | ||
</style> |
Oops, something went wrong.