Skip to content
Snippets Groups Projects
Verified Commit 42339a48 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Add resource info modal to review page

#88
parent 7e30aae7
No related branches found
No related tags found
1 merge request!85Resolve "Add UI for viewing and managing Resources"
This commit is part of merge request !85. Comments created here will be created in the context of that merge request.
...@@ -18,3 +18,7 @@ When accessing the website, these variables will be loaded dynamically into the ...@@ -18,3 +18,7 @@ When accessing the website, these variables will be loaded dynamically into the
| `S3PROXY_API_BASE_URL` | unset | HTTP URL | Base URL for the S3Proxy Service API | | `S3PROXY_API_BASE_URL` | unset | HTTP URL | Base URL for the S3Proxy Service API |
| `S3_URL` | unset | HTTP URL | URL of the S3 storage to interact with | | `S3_URL` | unset | HTTP URL | URL of the S3 storage to interact with |
| `DEV_SYSTEM` | `false` | boolean | Flag if the service is installed on a Dev system | | `DEV_SYSTEM` | `false` | boolean | Flag if the service is installed on a Dev system |
## License
The API is licensed under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license. See the [License](LICENSE) file for more information
This diff is collapsed.
...@@ -25,6 +25,17 @@ const props = defineProps<{ ...@@ -25,6 +25,17 @@ const props = defineProps<{
}>(); }>();
let refreshTimeout: NodeJS.Timeout | undefined = undefined; let refreshTimeout: NodeJS.Timeout | undefined = undefined;
const stateToUIMapping: Record<Status, string> = {
CLUSTER_DELETED: "Deleted on Cluster",
DENIED: "Rejected",
RESOURCE_REQUESTED: "Resource created",
S3_DELETED: "Deleted in S3",
SYNCHRONIZED: "Available",
SYNCHRONIZING: "Synchronizing to Cluster",
SYNC_REQUESTED: "Wait for Approval",
LATEST: "Available (Latest)",
};
const emit = defineEmits<{ const emit = defineEmits<{
(e: "click-info", resourceVersion: ResourceVersionOut): void; (e: "click-info", resourceVersion: ResourceVersionOut): void;
(e: "click-update", resource: ResourceOut): void; (e: "click-update", resource: ResourceOut): void;
...@@ -147,7 +158,7 @@ onMounted(() => { ...@@ -147,7 +158,7 @@ onMounted(() => {
resourceVersion.resource_version_id resourceVersion.resource_version_id
" "
> >
{{ resourceVersion.release }} - {{ resourceVersion.status }} {{ resourceVersion.release }} - {{ stateToUIMapping[resourceVersion.status] }}
</button> </button>
</h2> </h2>
<div <div
...@@ -163,7 +174,7 @@ onMounted(() => { ...@@ -163,7 +174,7 @@ onMounted(() => {
> >
<div class="accordion-body"> <div class="accordion-body">
<div> <div>
Created at: Registered at:
{{ {{
dayjs.unix(resourceVersion.created_at).format("DD MMM YYYY") dayjs.unix(resourceVersion.created_at).format("DD MMM YYYY")
}} }}
......
...@@ -26,8 +26,8 @@ const resourceVersion = computed<ResourceVersionOut | undefined>( ...@@ -26,8 +26,8 @@ const resourceVersion = computed<ResourceVersionOut | undefined>(
size-modifier="lg" size-modifier="lg"
> >
<template #header <template #header
>Resource Version >Resource
<span v-if="resourceVersion">{{ resourceVersion.release }}</span> <b v-if="resourceVersion">{{resource?.name}}@{{ resourceVersion?.release }}</b>
</template> </template>
<template #body> <template #body>
<h5>Resource</h5> <h5>Resource</h5>
......
...@@ -11,7 +11,7 @@ import type { User } from "@/client/auth"; ...@@ -11,7 +11,7 @@ import type { User } from "@/client/auth";
import { useNameStore } from "@/stores/names"; import { useNameStore } from "@/stores/names";
import FontAwesomeIcon from "@/components/FontAwesomeIcon.vue"; import FontAwesomeIcon from "@/components/FontAwesomeIcon.vue";
import dayjs from "dayjs"; import dayjs from "dayjs";
import ResourceVersionInfoModal from "@/components/admin/ResourceVersionInfoModal.vue"; import ResourceVersionInfoModal from "@/components/resources/ResourceVersionInfoModal.vue";
const resourceRepository = useResourceStore(); const resourceRepository = useResourceStore();
const nameRepository = useNameStore(); const nameRepository = useNameStore();
......
<script setup lang="ts"> <script setup lang="ts">
import { useResourceStore } from "@/stores/resources"; import { useResourceStore } from "@/stores/resources";
import { computed, onMounted, reactive } from "vue"; import { computed, onMounted, reactive } from "vue";
import { type ResourceVersionOut, Status } from "@/client/resource"; import {
type ResourceOut,
type ResourceVersionOut,
Status,
} from "@/client/resource";
import CopyToClipboardIcon from "@/components/CopyToClipboardIcon.vue"; import CopyToClipboardIcon from "@/components/CopyToClipboardIcon.vue";
import FontAwesomeIcon from "@/components/FontAwesomeIcon.vue"; import FontAwesomeIcon from "@/components/FontAwesomeIcon.vue";
import { Tooltip } from "bootstrap"; import { Tooltip } from "bootstrap";
import ResourceVersionInfoModal from "@/components/resources/ResourceVersionInfoModal.vue";
import BucketDetailModal from "@/components/object-storage/modals/BucketDetailModal.vue";
import {useNameStore} from "@/stores/names";
const resourceRepository = useResourceStore(); const resourceRepository = useResourceStore();
const nameRepository = useNameStore();
let refreshTimeout: NodeJS.Timeout | undefined = undefined; let refreshTimeout: NodeJS.Timeout | undefined = undefined;
const resourceState = reactive<{ const resourceState = reactive<{
sendingRequest: boolean; sendingRequest: boolean;
loading: boolean; loading: boolean;
inspectResource?: ResourceOut;
inspectVersionIndex: number;
}>({ }>({
sendingRequest: false, sendingRequest: false,
loading: true, loading: true,
inspectResource: undefined,
inspectVersionIndex: 0,
}); });
const countItems = computed<number>(() => const countItems = computed<number>(() =>
...@@ -26,7 +38,7 @@ const countItems = computed<number>(() => ...@@ -26,7 +38,7 @@ const countItems = computed<number>(() =>
); );
function fetchResources() { function fetchResources() {
resourceRepository.fetchReviewableResources().finally(() => { resourceRepository.fetchReviewableResources(() => {
resourceState.loading = false; resourceState.loading = false;
}); });
} }
...@@ -52,6 +64,11 @@ onMounted(() => { ...@@ -52,6 +64,11 @@ onMounted(() => {
</script> </script>
<template> <template>
<resource-version-info-modal
modal-id="review-resource-version-info-modal"
:resource-version-index="resourceState.inspectVersionIndex"
:resource="resourceState.inspectResource"
/>
<div <div
class="row m-2 border-bottom mb-4 justify-content-between align-items-center" class="row m-2 border-bottom mb-4 justify-content-between align-items-center"
> >
...@@ -95,7 +112,8 @@ onMounted(() => { ...@@ -95,7 +112,8 @@ onMounted(() => {
<th scope="col">Resource</th> <th scope="col">Resource</th>
<th scope="col">Release</th> <th scope="col">Release</th>
<th scope="col">Status</th> <th scope="col">Status</th>
<th scope="col">S3 Path</th> <th scope="col">Maintainer</th>
<th scope="col"></th>
<th scope="col" class="text-end">Action</th> <th scope="col" class="text-end">Action</th>
</tr> </tr>
</thead> </thead>
...@@ -105,25 +123,26 @@ onMounted(() => { ...@@ -105,25 +123,26 @@ onMounted(() => {
:key="resource.resource_id" :key="resource.resource_id"
> >
<tr <tr
v-for="version in resource.versions" v-for="(version, index) in resource.versions"
:key="version.resource_version_id" :key="version.resource_version_id"
> >
<th>{{ resource.name }}</th> <th>{{ resource.name }}</th>
<th>{{ version.release }}</th> <th>{{ version.release }}</th>
<th>{{ version.status }}</th> <th>{{ version.status }}</th>
<th>{{ nameRepository.getName(resource.maintainer_id) }}</th>
<th> <th>
<div class="input-group"> <button
<input type="button"
class="form-control form-control-sm" class="btn btn-secondary"
type="text" data-bs-toggle="modal"
:value="version.s3_path" data-bs-target="#review-resource-version-info-modal"
aria-label="S3 Access Path" @click="
readonly resourceState.inspectResource = resource;
/> resourceState.inspectVersionIndex = index;
<span class="input-group-text" "
><copy-to-clipboard-icon :text="version.s3_path" >
/></span> Inspect
</div> </button>
</th> </th>
<th class="text-end"> <th class="text-end">
<div <div
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment