Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 24x 24x 24x 10x 24x 24x 24x 24x 10x 24x 24x 24x 24x 24x 24x 24x 56x 56x 56x 24x 24x 10x 9x 8x 8x 8x 8x 8x 8x 5x 15x 15x 15x 15x 8x 10x | /* * Copyright 2022 Harness Inc. All rights reserved. * Use of this source code is governed by the PolyForm Shield 1.0.0 license * that can be found in the licenses directory at the root of this repository, also available at * https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt. */ import React, { useMemo } from 'react' import cx from 'classnames' import type { CellProps, Column, Renderer } from 'react-table' import ReactTimeago from 'react-timeago' import { Layout, Text, Button, ButtonVariation, NoDataCard, TableV2 } from '@wings-software/uicore' import { Color, FontVariation } from '@harness/design-system' import { useHistory, useParams } from 'react-router-dom' import { defaultTo, get } from 'lodash-es' import { useStrings } from 'framework/strings' import type { PageResourceGroupResponse, ResourceFilter, ResourceGroupV2Response, StaticResourceSelector } from 'services/resourcegroups' import routes from '@common/RouteDefinitions' import RbacFactory from '@rbac/factories/RbacFactory' import type { ModulePathParams, ProjectPathProps } from '@common/interfaces/RouteInterfaces' import { getScopeLabelFromApi } from '@rbac/pages/ResourceGroupDetails/utils' import { getScopeFromDTO } from '@common/components/EntityReference/EntityReference' import type { ResourceType } from '@rbac/interfaces/ResourceType' import ResourceGroupColumnMenu from './ResourceGroupColumnMenu' import css from './ResourceGroupList.module.scss' interface ResourceGroupListViewProps { data?: PageResourceGroupResponse reload?: () => Promise<void> openResourceGroupModal: () => void goToPage: (pageNumber: number) => void } export const RenderColumnDetails: Renderer<CellProps<ResourceGroupV2Response>> = ({ row }) => { const data = row.original.resourceGroup const { getString } = useStrings() return ( <Layout.Horizontal spacing="small" flex={{ alignItems: 'center', justifyContent: 'flex-start' }}> <div style={{ backgroundColor: data.color }} className={cx(css.resourceGroupColor)}></div> <Layout.Vertical spacing="xsmall" padding={{ left: 'small' }}> <Text color={Color.BLACK} lineClamp={1}> {data.name} </Text> <Text color={Color.GREY_600} lineClamp={1} font="small"> {getString('idLabel', { id: data.identifier })} </Text> </Layout.Vertical> </Layout.Horizontal> ) } export const RenderColumnLastUpdated: Renderer<CellProps<ResourceGroupV2Response>> = ({ row }) => { const { getString } = useStrings() const data = row?.original Iif (data.harnessManaged) { return ( <Text color={Color.BLACK} lineClamp={1}> {getString('rbac.resourceGroup.builtInResourceGroup')} </Text> ) } return data?.lastModifiedAt ? ( <Text color={Color.BLACK} lineClamp={1}> <ReactTimeago date={data?.lastModifiedAt} /> </Text> ) : null } const RenderColumnSummary: Renderer<CellProps<ResourceGroupV2Response>> = ({ row, column }) => { const { getString } = useStrings() const { resourceGroup, harnessManaged } = row.original const scope = getScopeFromDTO(resourceGroup) const resourceFilter = resourceGroup.resourceFilter const resourceTypeName = (data: ResourceFilter): string => { Iif (data.includeAllResources) { return getString('rbac.resourceGroup.all') } else { return defaultTo( data.resources ?.map(resource => { const label = RbacFactory.getResourceTypeHandler(resource?.resourceType as ResourceType)?.label Iif (label) { if (!resource.identifiers?.length) { return getString('rbac.resourceGroup.all', { name: getString(label) }) } return `${(resource as StaticResourceSelector).identifiers?.length || 0} ${getString(label)}` } return get(resource, 'resourceType') }) .join(', '), '' ) } } Iif (harnessManaged) { return <Text color={Color.BLACK}>{resourceGroup.name}</Text> } return resourceFilter ? ( <Layout.Vertical padding={{ right: 'medium' }}> <Layout.Horizontal flex={{ alignItems: 'center', justifyContent: 'flex-start' }} spacing="small"> <Text color={Color.BLACK} font={{ variation: FontVariation.BODY2 }}> {getString('resources')}: </Text> <Text lineClamp={1}>{resourceTypeName(resourceFilter)}</Text> </Layout.Horizontal> <Layout.Horizontal flex={{ alignItems: 'center', justifyContent: 'flex-start' }} spacing="small"> <Text font={{ variation: FontVariation.BODY2 }} color={Color.BLACK}> {getString('common.scope')}: </Text> <Text>{getScopeLabelFromApi(getString, scope, resourceGroup)}</Text> </Layout.Horizontal> </Layout.Vertical> ) : ( <Button variation={ButtonVariation.LINK} className={css.selectResource} onClick={e => { e.stopPropagation() ;(column as any).openResourceSelector(resourceGroup.identifier) }} > {getString('selectResource')} </Button> ) } const ResourceGroupListView: React.FC<ResourceGroupListViewProps> = props => { const { data, reload, openResourceGroupModal, goToPage } = props const { accountId, projectIdentifier, orgIdentifier, module } = useParams<ProjectPathProps & ModulePathParams>() const listData: ResourceGroupV2Response[] = data?.content || [] const { getString } = useStrings() const history = useHistory() const openResourceSelector = (resourceGroupIdentifier: string): void => { history.push( routes.toResourceGroupDetails({ resourceGroupIdentifier: resourceGroupIdentifier || '', accountId, orgIdentifier, projectIdentifier, module }) ) } const columns: Column<ResourceGroupV2Response>[] = useMemo( () => [ { Header: getString('common.resourceGroupLabel'), accessor: row => row?.resourceGroup?.name, id: 'name', width: '30%', Cell: RenderColumnDetails }, { Header: getString('rbac.resourceGroup.summary'), accessor: row => row?.resourceGroup?.resourceFilter, id: 'summary', width: '50%', Cell: RenderColumnSummary, openResourceSelector }, { Header: getString('lastUpdated'), accessor: row => row?.lastModifiedAt, id: 'lastUpdated', width: '16%', Cell: RenderColumnLastUpdated }, { Header: '', accessor: row => row?.resourceGroup?.identifier, width: '4%', id: 'action', Cell: ResourceGroupColumnMenu, disableSortBy: true, reload: reload, openResourceGroupModal } ], [props.data] ) return listData.length ? ( <TableV2<ResourceGroupV2Response> className={css.tablePadding} columns={columns} data={listData} onRowClick={rowDetails => { if (!rowDetails.harnessManaged) { openResourceSelector(get(rowDetails, 'resourceGroup.identifier', '')) } }} pagination={{ itemCount: data?.totalItems || 0, pageSize: data?.pageSize || 10, pageCount: data?.totalPages || -1, pageIndex: data?.pageIndex || 0, gotoPage: goToPage }} /> ) : ( <NoDataCard icon="resources-icon" message={getString('rbac.resourceGroup.noResourceGroup')}></NoDataCard> ) } export default ResourceGroupListView |