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 | 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 8x 8x 8x 8x 8x 8x 8x 5x 8x 8x 8x 8x 1x 8x 16x 10x | /* * Copyright 2021 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, { useState, useEffect } from 'react' import { ButtonSize, ButtonVariation, ExpandingSearchInput, Layout, PageHeader } from '@wings-software/uicore' import { useParams } from 'react-router-dom' import { useStrings } from 'framework/strings' import { Page } from '@common/exports' import { useGetUserGroupAggregateList } from 'services/cd-ng' import { useUserGroupModal } from '@rbac/modals/UserGroupModal/useUserGroupModal' import UserGroupsListView from '@rbac/pages/UserGroups/views/UserGroupsListView' import { useRoleAssignmentModal } from '@rbac/modals/RoleAssignmentModal/useRoleAssignmentModal' import type { ProjectPathProps } from '@common/interfaces/RouteInterfaces' import { useDocumentTitle } from '@common/hooks/useDocumentTitle' import { ResourceType } from '@rbac/interfaces/ResourceType' import ManagePrincipalButton from '@rbac/components/ManagePrincipalButton/ManagePrincipalButton' import { setPageNumber } from '@common/utils/utils' import UserGroupEmptyState from './user-group-empty-state.png' import css from './UserGroups.module.scss' interface UserGroupBtnProp { size?: ButtonSize } const UserGroupsPage: React.FC = () => { const { accountId, orgIdentifier, projectIdentifier } = useParams<ProjectPathProps>() const { getString } = useStrings() useDocumentTitle(getString('common.userGroups')) const [page, setPage] = useState(0) const [searchTerm, setsearchTerm] = useState<string>('') const { data, loading, error, refetch } = useGetUserGroupAggregateList({ queryParams: { accountIdentifier: accountId, orgIdentifier, projectIdentifier, pageIndex: page, pageSize: 10, searchTerm: searchTerm }, debounce: 300 }) useEffect(() => { setPageNumber({ setPage, page, pageItemsCount: data?.data?.pageItemCount }) }, [data?.data]) const { openUserGroupModal } = useUserGroupModal({ onSuccess: refetch }) const { openRoleAssignmentModal } = useRoleAssignmentModal({ onSuccess: refetch }) const UserGroupBtn: React.FC<UserGroupBtnProp> = ({ size }): JSX.Element => ( <ManagePrincipalButton text={getString('rbac.userGroupPage.newUserGroup')} variation={ButtonVariation.PRIMARY} icon="plus" onClick={() => openUserGroupModal()} resourceType={ResourceType.USERGROUP} size={size} /> ) return ( <> {data?.data?.content?.length || searchTerm || loading || error ? ( <PageHeader title={ <Layout.Horizontal> <UserGroupBtn /> </Layout.Horizontal> } toolbar={ <Layout.Horizontal margin={{ right: 'small' }} height="xxxlarge"> <ExpandingSearchInput alwaysExpanded placeholder={getString('rbac.userGroupPage.search')} onChange={text => { setsearchTerm(text.trim()) setPage(0) }} width={250} /> </Layout.Horizontal> } /> ) : null} <Page.Body loading={loading} error={(error?.data as Error)?.message || error?.message} retryOnError={() => refetch()} noData={{ when: () => !data?.data?.content?.length, message: searchTerm ? getString('rbac.userGroupPage.noUserGroups') : getString('rbac.userGroupPage.userGroupEmptyState'), button: !searchTerm ? <UserGroupBtn size={ButtonSize.LARGE} /> : undefined, image: UserGroupEmptyState, imageClassName: css.userGroupsEmptyState }} > <UserGroupsListView data={data} openRoleAssignmentModal={openRoleAssignmentModal} gotoPage={(pageNumber: number) => setPage(pageNumber)} reload={refetch} openUserGroupModal={openUserGroupModal} /> </Page.Body> </> ) } export default UserGroupsPage |