mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
9522c59674
* minor archive table updates * archived date cell * archive import paths * move project health table files * fix: align actions cells * simplify health table row mapping * fix project pages browser tab title * initial draft of virtualized table component * refactor: virtualized table common component * fix: health report name cell width * refactor: report cell paths
53 lines
1.9 KiB
TypeScript
53 lines
1.9 KiB
TypeScript
import React, { useContext, VFC } from 'react';
|
||
import { ProjectAccessPage } from 'component/project/ProjectAccess/ProjectAccessPage';
|
||
import { PageContent } from 'component/common/PageContent/PageContent';
|
||
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
|
||
import { Alert } from '@mui/material';
|
||
import { PageHeader } from 'component/common/PageHeader/PageHeader';
|
||
import AccessContext from 'contexts/AccessContext';
|
||
import { UPDATE_PROJECT } from 'component/providers/AccessProvider/permissions';
|
||
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
|
||
import { usePageTitle } from 'hooks/usePageTitle';
|
||
|
||
interface IProjectAccess {
|
||
projectName: string;
|
||
}
|
||
|
||
export const ProjectAccess: VFC<IProjectAccess> = ({ projectName }) => {
|
||
const projectId = useRequiredPathParam('projectId');
|
||
const { hasAccess } = useContext(AccessContext);
|
||
const { isOss } = useUiConfig();
|
||
usePageTitle(`Project access – ${projectName}`);
|
||
|
||
if (isOss()) {
|
||
return (
|
||
<PageContent header={<PageHeader title="Project access" />}>
|
||
<Alert severity="error">
|
||
Controlling access to projects requires a paid version of
|
||
Unleash. Check out{' '}
|
||
<a
|
||
href="https://www.getunleash.io"
|
||
target="_blank"
|
||
rel="noreferrer"
|
||
>
|
||
getunleash.io
|
||
</a>{' '}
|
||
to find out more.
|
||
</Alert>
|
||
</PageContent>
|
||
);
|
||
}
|
||
|
||
if (!hasAccess(UPDATE_PROJECT, projectId)) {
|
||
return (
|
||
<PageContent header={<PageHeader title="Project access" />}>
|
||
<Alert severity="error">
|
||
You need project owner permissions to access this section.
|
||
</Alert>
|
||
</PageContent>
|
||
);
|
||
}
|
||
|
||
return <ProjectAccessPage />;
|
||
};
|