mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
672a3f0b92
* fix: group project access inconsistencies * fix relative path * wip * refactor: make project tabs work as routes * refactor: finish refactoring project assign forms * fix: update snaps * fix: update snaps * add some basic cypress e2e tests to groups * add remaining cypress e2e tests for group CRUD * add groups e2e to gh workflows * refactor: simplify useMemo usage * add GO_BACK navigate const * fix: remove trailing slash on user creation request Co-authored-by: olav <mail@olav.io> Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
428 lines
16 KiB
TypeScript
428 lines
16 KiB
TypeScript
import { useEffect, useMemo, useState, VFC } from 'react';
|
|
import { SortingRule, useFlexLayout, useSortBy, useTable } from 'react-table';
|
|
import { VirtualizedTable, TablePlaceholder } from 'component/common/Table';
|
|
import { Button, useMediaQuery, useTheme } from '@mui/material';
|
|
import { Delete, Edit } from '@mui/icons-material';
|
|
import { sortTypes } from 'utils/sortTypes';
|
|
import useProjectAccess, {
|
|
ENTITY_TYPE,
|
|
IProjectAccess,
|
|
} from 'hooks/api/getters/useProjectAccess/useProjectAccess';
|
|
import PermissionIconButton from 'component/common/PermissionIconButton/PermissionIconButton';
|
|
import { UPDATE_PROJECT } from 'component/providers/AccessProvider/permissions';
|
|
import { TextCell } from 'component/common/Table/cells/TextCell/TextCell';
|
|
import { ActionCell } from 'component/common/Table/cells/ActionCell/ActionCell';
|
|
import { SearchHighlightProvider } from 'component/common/Table/SearchHighlightContext/SearchHighlightContext';
|
|
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
|
import { useSearch } from 'hooks/useSearch';
|
|
import {
|
|
Link,
|
|
Route,
|
|
Routes,
|
|
useNavigate,
|
|
useSearchParams,
|
|
} from 'react-router-dom';
|
|
import { createLocalStorage } from 'utils/createLocalStorage';
|
|
import { HighlightCell } from 'component/common/Table/cells/HighlightCell/HighlightCell';
|
|
import { TimeAgoCell } from 'component/common/Table/cells/TimeAgoCell/TimeAgoCell';
|
|
import { PageContent } from 'component/common/PageContent/PageContent';
|
|
import { PageHeader } from 'component/common/PageHeader/PageHeader';
|
|
import { Search } from 'component/common/Search/Search';
|
|
import useProjectApi from 'hooks/api/actions/useProjectApi/useProjectApi';
|
|
import useToast from 'hooks/useToast';
|
|
import { Dialogue } from 'component/common/Dialogue/Dialogue';
|
|
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
|
|
import { ProjectGroupView } from '../ProjectGroupView/ProjectGroupView';
|
|
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
|
|
import { IUser } from 'interfaces/user';
|
|
import { IGroup } from 'interfaces/group';
|
|
import { LinkCell } from 'component/common/Table/cells/LinkCell/LinkCell';
|
|
import { UserAvatar } from 'component/common/UserAvatar/UserAvatar';
|
|
import { ProjectAccessCreate } from 'component/project/ProjectAccess/ProjectAccessCreate/ProjectAccessCreate';
|
|
import { ProjectAccessEditUser } from 'component/project/ProjectAccess/ProjectAccessEditUser/ProjectAccessEditUser';
|
|
import { ProjectAccessEditGroup } from 'component/project/ProjectAccess/ProjectAccessEditGroup/ProjectAccessEditGroup';
|
|
|
|
export type PageQueryType = Partial<
|
|
Record<'sort' | 'order' | 'search', string>
|
|
>;
|
|
|
|
const defaultSort: SortingRule<string> = { id: 'added' };
|
|
|
|
const { value: storedParams, setValue: setStoredParams } = createLocalStorage(
|
|
'ProjectAccess:v1',
|
|
defaultSort
|
|
);
|
|
|
|
export const ProjectAccessTable: VFC = () => {
|
|
const projectId = useRequiredPathParam('projectId');
|
|
|
|
const { uiConfig } = useUiConfig();
|
|
const { flags } = uiConfig;
|
|
const entityType = flags.UG ? 'user / group' : 'user';
|
|
|
|
const navigate = useNavigate();
|
|
const theme = useTheme();
|
|
const isSmallScreen = useMediaQuery(theme.breakpoints.down('md'));
|
|
const { setToastData } = useToast();
|
|
|
|
const { access, refetchProjectAccess } = useProjectAccess(projectId);
|
|
const { removeUserFromRole, removeGroupFromRole } = useProjectApi();
|
|
const [removeOpen, setRemoveOpen] = useState(false);
|
|
const [groupOpen, setGroupOpen] = useState(false);
|
|
const [selectedRow, setSelectedRow] = useState<IProjectAccess>();
|
|
|
|
const columns = useMemo(
|
|
() => [
|
|
{
|
|
Header: 'Avatar',
|
|
accessor: 'imageUrl',
|
|
Cell: ({ row: { original: row } }: any) => (
|
|
<TextCell>
|
|
<UserAvatar user={row.entity}>
|
|
{row.entity.users?.length}
|
|
</UserAvatar>
|
|
</TextCell>
|
|
),
|
|
maxWidth: 85,
|
|
disableSortBy: true,
|
|
},
|
|
{
|
|
id: 'name',
|
|
Header: 'Name',
|
|
accessor: (row: IProjectAccess) => row.entity.name || '',
|
|
Cell: ({ value, row: { original: row } }: any) => (
|
|
<ConditionallyRender
|
|
condition={row.type === ENTITY_TYPE.GROUP}
|
|
show={
|
|
<LinkCell
|
|
onClick={() => {
|
|
setSelectedRow(row);
|
|
setGroupOpen(true);
|
|
}}
|
|
title={value}
|
|
subtitle={`${row.entity.users?.length} users`}
|
|
/>
|
|
}
|
|
elseShow={<HighlightCell value={value} />}
|
|
/>
|
|
),
|
|
minWidth: 100,
|
|
searchable: true,
|
|
},
|
|
{
|
|
id: 'username',
|
|
Header: 'Username',
|
|
accessor: (row: IProjectAccess) => {
|
|
if (row.type === ENTITY_TYPE.USER) {
|
|
const userRow = row.entity as IUser;
|
|
return userRow.username || userRow.email;
|
|
}
|
|
return '';
|
|
},
|
|
Cell: HighlightCell,
|
|
minWidth: 100,
|
|
searchable: true,
|
|
},
|
|
{
|
|
Header: 'Role',
|
|
accessor: (row: IProjectAccess) =>
|
|
access?.roles.find(({ id }) => id === row.entity.roleId)
|
|
?.name,
|
|
minWidth: 120,
|
|
filterName: 'role',
|
|
},
|
|
{
|
|
id: 'added',
|
|
Header: 'Added',
|
|
accessor: (row: IProjectAccess) => {
|
|
const userRow = row.entity as IUser | IGroup;
|
|
return userRow.addedAt || '';
|
|
},
|
|
Cell: ({ value }: { value: Date }) => (
|
|
<TimeAgoCell value={value} emptyText="Never logged" />
|
|
),
|
|
sortType: 'date',
|
|
maxWidth: 150,
|
|
},
|
|
{
|
|
Header: 'Last login',
|
|
accessor: (row: IProjectAccess) => {
|
|
if (row.type === ENTITY_TYPE.USER) {
|
|
const userRow = row.entity as IUser;
|
|
return userRow.seenAt || '';
|
|
}
|
|
const userGroup = row.entity as IGroup;
|
|
return userGroup.users
|
|
.map(({ seenAt }) => seenAt)
|
|
.sort()
|
|
.reverse()[0];
|
|
},
|
|
Cell: ({ value }: { value: Date }) => (
|
|
<TimeAgoCell value={value} emptyText="Never logged" />
|
|
),
|
|
sortType: 'date',
|
|
maxWidth: 150,
|
|
},
|
|
{
|
|
id: 'actions',
|
|
Header: 'Actions',
|
|
disableSortBy: true,
|
|
align: 'center',
|
|
maxWidth: 200,
|
|
Cell: ({
|
|
row: { original: row },
|
|
}: {
|
|
row: { original: IProjectAccess };
|
|
}) => (
|
|
<ActionCell>
|
|
<PermissionIconButton
|
|
component={Link}
|
|
permission={UPDATE_PROJECT}
|
|
projectId={projectId}
|
|
to={`edit/${
|
|
row.type === ENTITY_TYPE.USER ? 'user' : 'group'
|
|
}/${row.entity.id}`}
|
|
disabled={access?.rows.length === 1}
|
|
tooltipProps={{
|
|
title:
|
|
access?.rows.length === 1
|
|
? 'Cannot edit access. A project must have at least one owner'
|
|
: 'Edit access',
|
|
}}
|
|
>
|
|
<Edit />
|
|
</PermissionIconButton>
|
|
<PermissionIconButton
|
|
permission={UPDATE_PROJECT}
|
|
projectId={projectId}
|
|
onClick={() => {
|
|
setSelectedRow(row);
|
|
setRemoveOpen(true);
|
|
}}
|
|
disabled={access?.rows.length === 1}
|
|
tooltipProps={{
|
|
title:
|
|
access?.rows.length === 1
|
|
? 'Cannot remove access. A project must have at least one owner'
|
|
: 'Remove access',
|
|
}}
|
|
>
|
|
<Delete />
|
|
</PermissionIconButton>
|
|
</ActionCell>
|
|
),
|
|
},
|
|
],
|
|
[access, projectId]
|
|
);
|
|
|
|
const [searchParams, setSearchParams] = useSearchParams();
|
|
const [initialState] = useState(() => ({
|
|
sortBy: [
|
|
{
|
|
id: searchParams.get('sort') || storedParams.id,
|
|
desc: searchParams.has('order')
|
|
? searchParams.get('order') === 'desc'
|
|
: storedParams.desc,
|
|
},
|
|
],
|
|
globalFilter: searchParams.get('search') || '',
|
|
}));
|
|
const [searchValue, setSearchValue] = useState(initialState.globalFilter);
|
|
|
|
const { data, getSearchText, getSearchContext } = useSearch(
|
|
columns,
|
|
searchValue,
|
|
access?.rows ?? []
|
|
);
|
|
|
|
const {
|
|
headerGroups,
|
|
rows,
|
|
prepareRow,
|
|
state: { sortBy },
|
|
} = useTable(
|
|
{
|
|
columns: columns as any[],
|
|
data,
|
|
initialState,
|
|
sortTypes,
|
|
autoResetSortBy: false,
|
|
disableSortRemove: true,
|
|
disableMultiSort: true,
|
|
defaultColumn: {
|
|
Cell: TextCell,
|
|
},
|
|
},
|
|
useSortBy,
|
|
useFlexLayout
|
|
);
|
|
|
|
useEffect(() => {
|
|
const tableState: PageQueryType = {};
|
|
tableState.sort = sortBy[0].id;
|
|
if (sortBy[0].desc) {
|
|
tableState.order = 'desc';
|
|
}
|
|
if (searchValue) {
|
|
tableState.search = searchValue;
|
|
}
|
|
|
|
setSearchParams(tableState, {
|
|
replace: true,
|
|
});
|
|
setStoredParams({ id: sortBy[0].id, desc: sortBy[0].desc || false });
|
|
}, [sortBy, searchValue, setSearchParams]);
|
|
|
|
const removeAccess = async (userOrGroup?: IProjectAccess) => {
|
|
if (!userOrGroup) return;
|
|
const { id, roleId } = userOrGroup.entity;
|
|
let name = userOrGroup.entity.name;
|
|
if (userOrGroup.type === ENTITY_TYPE.USER) {
|
|
const user = userOrGroup.entity as IUser;
|
|
name = name || user.email || user.username || '';
|
|
}
|
|
|
|
try {
|
|
if (userOrGroup.type === ENTITY_TYPE.USER) {
|
|
await removeUserFromRole(projectId, roleId, id);
|
|
} else {
|
|
await removeGroupFromRole(projectId, roleId, id);
|
|
}
|
|
refetchProjectAccess();
|
|
setToastData({
|
|
type: 'success',
|
|
title: `${
|
|
name || `The ${entityType}`
|
|
} has been removed from project`,
|
|
});
|
|
} catch (err: any) {
|
|
setToastData({
|
|
type: 'error',
|
|
title:
|
|
err.message ||
|
|
`Server problems when removing ${entityType}.`,
|
|
});
|
|
}
|
|
setRemoveOpen(false);
|
|
};
|
|
return (
|
|
<PageContent
|
|
header={
|
|
<PageHeader
|
|
secondary
|
|
title={`Access (${
|
|
rows.length < data.length
|
|
? `${rows.length} of ${data.length}`
|
|
: data.length
|
|
})`}
|
|
actions={
|
|
<>
|
|
<ConditionallyRender
|
|
condition={!isSmallScreen}
|
|
show={
|
|
<>
|
|
<Search
|
|
initialValue={searchValue}
|
|
onChange={setSearchValue}
|
|
hasFilters
|
|
getSearchContext={getSearchContext}
|
|
/>
|
|
<PageHeader.Divider />
|
|
</>
|
|
}
|
|
/>
|
|
<Button
|
|
component={Link}
|
|
to={`create`}
|
|
variant="contained"
|
|
color="primary"
|
|
>
|
|
Assign {entityType}
|
|
</Button>
|
|
</>
|
|
}
|
|
>
|
|
<ConditionallyRender
|
|
condition={isSmallScreen}
|
|
show={
|
|
<Search
|
|
initialValue={searchValue}
|
|
onChange={setSearchValue}
|
|
hasFilters
|
|
getSearchContext={getSearchContext}
|
|
/>
|
|
}
|
|
/>
|
|
</PageHeader>
|
|
}
|
|
>
|
|
<SearchHighlightProvider value={getSearchText(searchValue)}>
|
|
<VirtualizedTable
|
|
rows={rows}
|
|
headerGroups={headerGroups}
|
|
prepareRow={prepareRow}
|
|
/>
|
|
</SearchHighlightProvider>
|
|
<ConditionallyRender
|
|
condition={rows.length === 0}
|
|
show={
|
|
<ConditionallyRender
|
|
condition={searchValue?.length > 0}
|
|
show={
|
|
<TablePlaceholder>
|
|
No access found matching “
|
|
{searchValue}
|
|
”
|
|
</TablePlaceholder>
|
|
}
|
|
elseShow={
|
|
<TablePlaceholder>
|
|
No access available. Get started by assigning a{' '}
|
|
{entityType}.
|
|
</TablePlaceholder>
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
<Routes>
|
|
<Route path="create" element={<ProjectAccessCreate />} />
|
|
<Route
|
|
path="edit/group/:groupId"
|
|
element={<ProjectAccessEditGroup />}
|
|
/>
|
|
<Route
|
|
path="edit/user/:userId"
|
|
element={<ProjectAccessEditUser />}
|
|
/>
|
|
</Routes>
|
|
<Dialogue
|
|
open={removeOpen}
|
|
onClick={() => removeAccess(selectedRow)}
|
|
onClose={() => {
|
|
setRemoveOpen(false);
|
|
}}
|
|
title={`Really remove ${entityType} from this project?`}
|
|
/>
|
|
<ProjectGroupView
|
|
open={groupOpen}
|
|
setOpen={setGroupOpen}
|
|
group={selectedRow?.entity as IGroup}
|
|
projectId={projectId}
|
|
subtitle={`Role: ${
|
|
access?.roles.find(
|
|
({ id }) => id === selectedRow?.entity.roleId
|
|
)?.name
|
|
}`}
|
|
onEdit={() => {
|
|
navigate(`edit/group/${selectedRow?.entity.id}`);
|
|
}}
|
|
onRemove={() => {
|
|
setGroupOpen(false);
|
|
setRemoveOpen(true);
|
|
}}
|
|
/>
|
|
</PageContent>
|
|
);
|
|
};
|