|
1 | 1 | /* eslint-disable sonarjs/no-duplicate-string -- ignoring duplicate strings here */
|
2 |
| - |
3 | 2 | import { AnvilCatalogTabCollection, TabDescription } from "../testInterfaces";
|
| 3 | +import { |
| 4 | + ANVIL_CATALOG_CONSORTIA_PRESELECTED_COLUMNS_BY_NAME, |
| 5 | + ANVIL_CATALOG_CONSORTIA_SELECTABLE_COLUMNS_BY_NAME, |
| 6 | + ANVIL_CATALOG_STUDIES_PRESELECTED_COLUMNS_BY_NAME, |
| 7 | + ANVIL_CATALOG_STUDIES_SELECTABLE_COLUMNS_BY_NAME, |
| 8 | + ANVIL_CATALOG_WORKSPACES_PRESELECTED_COLUMNS_BY_NAME, |
| 9 | + ANVIL_CATALOG_WORKSPACES_SELECTABLE_COLUMNS_BY_NAME, |
| 10 | +} from "./constants"; |
4 | 11 |
|
5 |
| -export const anvilcatalogTabs: AnvilCatalogTabCollection = { |
6 |
| - consortia: { |
| 12 | +export const ANVIL_CATALOG_TABS: AnvilCatalogTabCollection = { |
| 13 | + CONSORTIA: { |
7 | 14 | emptyFirstColumn: false,
|
8 |
| - preselectedColumns: [ |
9 |
| - { name: "Consortium", sortable: true }, |
10 |
| - { name: "dbGap Id", sortable: true }, |
11 |
| - { name: "Consent Codes", sortable: true }, |
12 |
| - { name: "Disease (indication)", sortable: true }, |
13 |
| - { name: "Data Type", sortable: true }, |
14 |
| - { name: "Study Design", sortable: true }, |
15 |
| - { name: "Participants", sortable: true }, |
16 |
| - { name: "Size (TB)", sortable: true }, |
17 |
| - ], |
18 |
| - selectableColumns: [ |
19 |
| - { name: "Study", sortable: true }, |
20 |
| - { name: "Workspaces", sortable: true }, |
21 |
| - ], |
| 15 | + preselectedColumns: ANVIL_CATALOG_CONSORTIA_PRESELECTED_COLUMNS_BY_NAME, |
| 16 | + selectableColumns: ANVIL_CATALOG_CONSORTIA_SELECTABLE_COLUMNS_BY_NAME, |
22 | 17 | tabName: "Consortia",
|
23 | 18 | url: "/data/consortia",
|
24 | 19 | },
|
25 |
| - studies: { |
| 20 | + STUDIES: { |
26 | 21 | emptyFirstColumn: false,
|
27 |
| - preselectedColumns: [ |
28 |
| - { name: "Study", sortable: true }, |
29 |
| - { name: "dbGap Id", sortable: true }, |
30 |
| - { name: "Consortium", sortable: true }, |
31 |
| - { name: "Consent Codes", sortable: true }, |
32 |
| - { name: "Disease (indication)", sortable: true }, |
33 |
| - { name: "Data Type", sortable: true }, |
34 |
| - { name: "Study Design", sortable: true }, |
35 |
| - { name: "Workspaces", sortable: true }, |
36 |
| - { name: "Participants", sortable: true }, |
37 |
| - { name: "Size (TB)", sortable: true }, |
38 |
| - ], |
39 |
| - selectableColumns: [], |
| 22 | + preselectedColumns: ANVIL_CATALOG_STUDIES_PRESELECTED_COLUMNS_BY_NAME, |
| 23 | + selectableColumns: ANVIL_CATALOG_STUDIES_SELECTABLE_COLUMNS_BY_NAME, |
40 | 24 | tabName: "Studies",
|
41 | 25 | url: "/data/studies",
|
42 | 26 | },
|
43 |
| - workspaces: { |
| 27 | + WORKSPACES: { |
44 | 28 | emptyFirstColumn: false,
|
45 |
| - preselectedColumns: [ |
46 |
| - { name: "Consortium", sortable: true }, |
47 |
| - { name: "Terra Workspace", sortable: true }, |
48 |
| - { name: "Study", sortable: true }, |
49 |
| - { name: "dbGap Id", sortable: true }, |
50 |
| - { name: "Consent Code", sortable: true }, |
51 |
| - { name: "Disease (indication)", sortable: true }, |
52 |
| - { name: "Data Type", sortable: true }, |
53 |
| - { name: "Study Design", sortable: false }, |
54 |
| - { name: "Participants", sortable: true }, |
55 |
| - { name: "Size (TB)", sortable: true }, |
56 |
| - ], |
57 |
| - selectableColumns: [], |
| 29 | + preselectedColumns: ANVIL_CATALOG_WORKSPACES_PRESELECTED_COLUMNS_BY_NAME, |
| 30 | + selectableColumns: ANVIL_CATALOG_WORKSPACES_SELECTABLE_COLUMNS_BY_NAME, |
58 | 31 | tabName: "Workspaces",
|
59 | 32 | url: "/data/workspaces",
|
60 | 33 | },
|
61 | 34 | };
|
62 | 35 |
|
63 |
| -export const anvilCatalogTabList: TabDescription[] = [ |
64 |
| - anvilcatalogTabs.consortia, |
65 |
| - anvilcatalogTabs.studies, |
66 |
| - anvilcatalogTabs.workspaces, |
| 36 | +export const ANVIL_CATALOG_TAB_LIST: TabDescription[] = [ |
| 37 | + ANVIL_CATALOG_TABS.CONSORTIA, |
| 38 | + ANVIL_CATALOG_TABS.STUDIES, |
| 39 | + ANVIL_CATALOG_TABS.WORKSPACES, |
67 | 40 | ];
|
68 | 41 |
|
69 | 42 | /* eslint-enable sonarjs/no-duplicate-string -- Checking duplicate strings again*/
|
0 commit comments