-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1687 from CodyWMitchell/user-list-details
Create Users list details drawer
- Loading branch information
Showing
8 changed files
with
263 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
src/smart-components/access-management/UserDetailsDrawer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
import { | ||
Drawer, | ||
DrawerActions, | ||
DrawerCloseButton, | ||
DrawerContent, | ||
DrawerContentBody, | ||
DrawerHead, | ||
DrawerPanelContent, | ||
Icon, | ||
Popover, | ||
Tab, | ||
TabTitleText, | ||
Tabs, | ||
Text, | ||
TextContent, | ||
Title, | ||
} from '@patternfly/react-core'; | ||
import React, { useEffect } from 'react'; | ||
import { User } from '../../redux/reducers/user-reducer'; | ||
import { OutlinedQuestionCircleIcon } from '@patternfly/react-icons'; | ||
import { useIntl } from 'react-intl'; | ||
import messages from '../../Messages'; | ||
import UserDetailsGroupsView from './UserDetailsGroupsView'; | ||
import UserDetailsRolesView from './UserDetailsRolesView'; | ||
import { EventTypes, useDataViewEventsContext } from '@patternfly/react-data-view'; | ||
|
||
interface UserDetailsProps { | ||
focusedUser?: User; | ||
drawerRef: React.RefObject<HTMLDivElement>; | ||
onClose: () => void; | ||
ouiaId: string; | ||
} | ||
|
||
const UserDetailsDrawerContent: React.FunctionComponent<UserDetailsProps> = ({ focusedUser, drawerRef, onClose, ouiaId }) => { | ||
const [activeTabKey, setActiveTabKey] = React.useState<string | number>(0); | ||
const intl = useIntl(); | ||
|
||
return ( | ||
<DrawerPanelContent> | ||
<DrawerHead> | ||
<Title headingLevel="h2"> | ||
<span tabIndex={focusedUser ? 0 : -1} ref={drawerRef}>{`${focusedUser?.first_name} ${focusedUser?.last_name}`}</span> | ||
</Title> | ||
<TextContent> | ||
<Text>{focusedUser?.email}</Text> | ||
</TextContent> | ||
<DrawerActions> | ||
<DrawerCloseButton onClick={onClose} /> | ||
</DrawerActions> | ||
</DrawerHead> | ||
<Tabs isFilled activeKey={activeTabKey} onSelect={(_, tabIndex) => setActiveTabKey(tabIndex)}> | ||
<Tab eventKey={0} title={intl.formatMessage(messages.userGroups)}> | ||
{focusedUser && <UserDetailsGroupsView ouiaId={`${ouiaId}-user-groups-view`} userId={focusedUser.username} />} | ||
</Tab> | ||
<Tab | ||
eventKey={1} | ||
title={ | ||
<TabTitleText> | ||
{intl.formatMessage(messages.assignedRoles)} | ||
<Popover | ||
triggerAction="hover" | ||
position="top-end" | ||
headerContent={intl.formatMessage(messages.assignedRoles)} | ||
bodyContent={intl.formatMessage(messages.assignedRolesDescription)} | ||
> | ||
<Icon className="pf-v5-u-pl-sm" isInline> | ||
<OutlinedQuestionCircleIcon /> | ||
</Icon> | ||
</Popover> | ||
</TabTitleText> | ||
} | ||
> | ||
{focusedUser && <UserDetailsRolesView userId={focusedUser.username} ouiaId={`${ouiaId}-assigned-users-view`} />} | ||
</Tab> | ||
</Tabs> | ||
</DrawerPanelContent> | ||
); | ||
}; | ||
|
||
interface DetailDrawerProps { | ||
focusedUser?: User; | ||
setFocusedUser: (user: User | undefined) => void; | ||
children: React.ReactNode; | ||
ouiaId: string; | ||
} | ||
|
||
const UserDetailsDrawer: React.FunctionComponent<DetailDrawerProps> = ({ focusedUser, setFocusedUser, children, ouiaId }) => { | ||
const drawerRef = React.useRef<HTMLDivElement>(null); | ||
const context = useDataViewEventsContext(); | ||
|
||
useEffect(() => { | ||
const unsubscribe = context.subscribe(EventTypes.rowClick, (user: User | undefined) => { | ||
setFocusedUser(user); | ||
drawerRef.current?.focus(); | ||
}); | ||
|
||
return () => unsubscribe(); | ||
}, [drawerRef]); | ||
|
||
return ( | ||
<Drawer isExpanded={Boolean(focusedUser)} data-ouia-component-id={ouiaId}> | ||
<DrawerContent | ||
panelContent={ | ||
<UserDetailsDrawerContent | ||
ouiaId={`${ouiaId}-panel-content`} | ||
drawerRef={drawerRef} | ||
focusedUser={focusedUser} | ||
onClose={() => setFocusedUser(undefined)} | ||
/> | ||
} | ||
> | ||
<DrawerContentBody hasPadding>{children}</DrawerContentBody> | ||
</DrawerContent> | ||
</Drawer> | ||
); | ||
}; | ||
|
||
export default UserDetailsDrawer; |
43 changes: 43 additions & 0 deletions
43
src/smart-components/access-management/UserDetailsGroupsView.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { DataView, DataViewTable } from '@patternfly/react-data-view'; | ||
import React, { useCallback, useEffect } from 'react'; | ||
import { useIntl } from 'react-intl'; | ||
import { useDispatch, useSelector } from 'react-redux'; | ||
import { mappedProps } from '../../helpers/shared/helpers'; | ||
import { fetchGroups } from '../../redux/actions/group-actions'; | ||
import { RBACStore } from '../../redux/store'; | ||
import messages from '../../Messages'; | ||
|
||
interface UserGroupsViewProps { | ||
userId: string; | ||
ouiaId: string; | ||
} | ||
|
||
const UserDetailsGroupsView: React.FunctionComponent<UserGroupsViewProps> = ({ userId, ouiaId }) => { | ||
const dispatch = useDispatch(); | ||
const intl = useIntl(); | ||
const columns: string[] = [intl.formatMessage(messages.userGroup), intl.formatMessage(messages.users)]; | ||
|
||
const groups = useSelector((state: RBACStore) => state.groupReducer?.groups?.data || []); | ||
|
||
const fetchData = useCallback(() => { | ||
dispatch(fetchGroups({ ...mappedProps({ username: userId }), usesMetaInURL: true, system: false })); | ||
}, [dispatch, userId]); | ||
|
||
useEffect(() => { | ||
fetchData(); | ||
}, [fetchData]); | ||
|
||
const rows = groups.map((group: any) => ({ | ||
row: [group.name, group.principalCount || '?'], // TODO: update once API provides principalCount [RHCLOUD-35963] | ||
})); | ||
|
||
return ( | ||
<div className="pf-v5-u-pt-md"> | ||
<DataView ouiaId={ouiaId}> | ||
<DataViewTable variant="compact" aria-label="UserGroupsView" ouiaId={`${ouiaId}-table`} columns={columns} rows={rows} /> | ||
</DataView> | ||
</div> | ||
); | ||
}; | ||
|
||
export default UserDetailsGroupsView; |
47 changes: 47 additions & 0 deletions
47
src/smart-components/access-management/UserDetailsRolesView.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import { DataView, DataViewTable } from '@patternfly/react-data-view'; | ||
import React, { useCallback, useEffect } from 'react'; | ||
import { useDispatch, useSelector } from 'react-redux'; | ||
import { RBACStore } from '../../redux/store'; | ||
import messages from '../../Messages'; | ||
import { useIntl } from 'react-intl'; | ||
import { fetchRoles } from '../../redux/actions/role-actions'; | ||
import { mappedProps } from '../../helpers/shared/helpers'; | ||
|
||
interface UserRolesViewProps { | ||
userId: string; | ||
ouiaId: string; | ||
} | ||
|
||
const UserDetailsRolesView: React.FunctionComponent<UserRolesViewProps> = ({ userId, ouiaId }) => { | ||
const dispatch = useDispatch(); | ||
const intl = useIntl(); | ||
const USER_ROLES_COLUMNS: string[] = [ | ||
intl.formatMessage(messages.roles), | ||
intl.formatMessage(messages.userGroup), | ||
intl.formatMessage(messages.workspace), | ||
]; | ||
|
||
const roles = useSelector((state: RBACStore) => state.roleReducer?.roles?.data || []); | ||
|
||
const fetchData = useCallback(() => { | ||
dispatch(fetchRoles({ ...mappedProps({ username: userId }), usesMetaInURL: true, system: false })); | ||
}, [dispatch, userId]); | ||
|
||
useEffect(() => { | ||
fetchData(); | ||
}, [fetchData]); | ||
|
||
const rows = roles.map((role: any) => ({ | ||
row: [role.name, role.display_name, '?'], // TODO: Update once API provides workspace data | ||
})); | ||
|
||
return ( | ||
<div className="pf-v5-u-pt-md"> | ||
<DataView ouiaId={ouiaId}> | ||
<DataViewTable variant="compact" aria-label="UserRolesView" ouiaId={`${ouiaId}-table`} columns={USER_ROLES_COLUMNS} rows={rows} /> | ||
</DataView> | ||
</div> | ||
); | ||
}; | ||
|
||
export default UserDetailsRolesView; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters