4135fceb21df48c81300f71be05f4ba4fd6586dc
[arvados-workbench2.git] / src / views / project-panel / project-panel-item.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { ResourceKind } from "../../models/kinds";
6 import { GroupContentsResource } from "../../services/groups-service/groups-service";
7
8 export interface ProjectPanelItem {
9     uuid: string;
10     name: string;
11     kind: string;
12     url: string;
13     owner: string;
14     lastModified: string;
15     fileSize?: number;
16     status?: string;
17 }
18
19
20 export function resourceToDataItem(r: GroupContentsResource): ProjectPanelItem {
21     return {
22         uuid: r.uuid,
23         name: r.name,
24         kind: r.kind,
25         url: "",
26         owner: r.ownerUuid,
27         lastModified: r.modifiedAt,
28         status:  r.kind === ResourceKind.Process ? r.state : undefined
29     };
30 }
31