mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
32ada96220
* refactor: remove unused import * fix: disable project access tab when no access * refactor: improve access denied text
160 lines
5.6 KiB
TypeScript
160 lines
5.6 KiB
TypeScript
import { useNavigate } from 'react-router';
|
|
import useProject from 'hooks/api/getters/useProject/useProject';
|
|
import useLoading from 'hooks/useLoading';
|
|
import ApiError from 'component/common/ApiError/ApiError';
|
|
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
|
import { useStyles } from './Project.styles';
|
|
import { Tab, Tabs } from '@mui/material';
|
|
import { Edit } from '@mui/icons-material';
|
|
import useToast from 'hooks/useToast';
|
|
import useQueryParams from 'hooks/useQueryParams';
|
|
import { useEffect } from 'react';
|
|
import { ProjectAccess } from '../ProjectAccess/ProjectAccess';
|
|
import ProjectEnvironment from '../ProjectEnvironment/ProjectEnvironment';
|
|
import { ProjectFeaturesArchive } from './ProjectFeaturesArchive/ProjectFeaturesArchive';
|
|
import ProjectOverview from './ProjectOverview';
|
|
import ProjectHealth from './ProjectHealth/ProjectHealth';
|
|
import PermissionIconButton from 'component/common/PermissionIconButton/PermissionIconButton';
|
|
import { UPDATE_PROJECT } from 'component/providers/AccessProvider/permissions';
|
|
import { TabPanel } from 'component/common/TabNav/TabPanel/TabPanel';
|
|
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
|
|
import { useOptionalPathParam } from 'hooks/useOptionalPathParam';
|
|
|
|
const Project = () => {
|
|
const projectId = useRequiredPathParam('projectId');
|
|
const activeTab = useOptionalPathParam('activeTab');
|
|
const params = useQueryParams();
|
|
const { project, error, loading, refetch } = useProject(projectId);
|
|
const ref = useLoading(loading);
|
|
const { setToastData } = useToast();
|
|
const { classes: styles } = useStyles();
|
|
const navigate = useNavigate();
|
|
|
|
const basePath = `/projects/${projectId}`;
|
|
const tabData = [
|
|
{
|
|
title: 'Overview',
|
|
component: <ProjectOverview projectId={projectId} />,
|
|
path: basePath,
|
|
name: 'overview',
|
|
},
|
|
{
|
|
title: 'Health',
|
|
component: <ProjectHealth projectId={projectId} />,
|
|
path: `${basePath}/health`,
|
|
name: 'health',
|
|
},
|
|
{
|
|
title: 'Access',
|
|
component: <ProjectAccess />,
|
|
path: `${basePath}/access`,
|
|
name: 'access',
|
|
},
|
|
{
|
|
title: 'Environments',
|
|
component: <ProjectEnvironment projectId={projectId} />,
|
|
path: `${basePath}/environments`,
|
|
name: 'environments',
|
|
},
|
|
{
|
|
title: 'Archive',
|
|
component: <ProjectFeaturesArchive projectId={projectId} />,
|
|
path: `${basePath}/archive`,
|
|
name: 'archive',
|
|
},
|
|
];
|
|
|
|
const activeTabIdx = activeTab
|
|
? tabData.findIndex(tab => tab.name === activeTab)
|
|
: 0;
|
|
|
|
useEffect(() => {
|
|
const created = params.get('created');
|
|
const edited = params.get('edited');
|
|
|
|
if (created || edited) {
|
|
const text = created ? 'Project created' : 'Project updated';
|
|
setToastData({
|
|
type: 'success',
|
|
title: text,
|
|
});
|
|
}
|
|
|
|
/* eslint-disable-next-line */
|
|
}, []);
|
|
|
|
const renderTabs = () => {
|
|
return tabData.map((tab, index) => {
|
|
return (
|
|
<Tab
|
|
key={tab.title}
|
|
id={`tab-${index}`}
|
|
aria-controls={`tabpanel-${index}`}
|
|
label={tab.title}
|
|
onClick={() => navigate(tab.path)}
|
|
className={styles.tabButton}
|
|
/>
|
|
);
|
|
});
|
|
};
|
|
|
|
const renderTabContent = () => {
|
|
return tabData.map((tab, index) => {
|
|
return (
|
|
<TabPanel value={activeTabIdx} index={index} key={tab.path}>
|
|
{tab.component}
|
|
</TabPanel>
|
|
);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div ref={ref}>
|
|
<div className={styles.header}>
|
|
<div className={styles.innerContainer}>
|
|
<h2 className={styles.title}>
|
|
<div className={styles.titleText} data-loading>
|
|
{project?.name || projectId}
|
|
</div>
|
|
<PermissionIconButton
|
|
permission={UPDATE_PROJECT}
|
|
projectId={project?.id}
|
|
onClick={() =>
|
|
navigate(`/projects/${projectId}/edit`)
|
|
}
|
|
tooltipProps={{ title: 'Edit project' }}
|
|
data-loading
|
|
>
|
|
<Edit />
|
|
</PermissionIconButton>
|
|
</h2>
|
|
</div>
|
|
<ConditionallyRender
|
|
condition={error}
|
|
show={
|
|
<ApiError
|
|
data-loading
|
|
style={{ maxWidth: '400px', margin: '1rem' }}
|
|
onClick={refetch}
|
|
text="Could not fetch project"
|
|
/>
|
|
}
|
|
/>
|
|
<div className={styles.separator} />
|
|
<div className={styles.tabContainer}>
|
|
<Tabs
|
|
value={activeTabIdx}
|
|
indicatorColor="primary"
|
|
textColor="primary"
|
|
>
|
|
{renderTabs()}
|
|
</Tabs>
|
|
</div>
|
|
</div>
|
|
{renderTabContent()}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Project;
|