mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
163 lines
5.8 KiB
TypeScript
163 lines
5.8 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
||
import useProject, {
|
||
useProjectNameOrId,
|
||
} from 'hooks/api/getters/useProject/useProject';
|
||
import { Box, styled } from '@mui/material';
|
||
import { ProjectFeatureToggles as LegacyProjectFeatureToggles } from './ProjectFeatureToggles/LegacyProjectFeatureToggles';
|
||
import { ProjectFeatureToggles } from './ProjectFeatureToggles/ProjectFeatureToggles';
|
||
import ProjectInfo from './ProjectInfo/ProjectInfo';
|
||
import { usePageTitle } from 'hooks/usePageTitle';
|
||
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
|
||
import { useLastViewedProject } from 'hooks/useLastViewedProject';
|
||
import { ProjectStats } from './ProjectStats/ProjectStats';
|
||
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
||
import { useUiFlag } from 'hooks/useUiFlag';
|
||
import { useFeatureSearch } from 'hooks/api/getters/useFeatureSearch/useFeatureSearch';
|
||
|
||
const refreshInterval = 15 * 1000;
|
||
|
||
const StyledContainer = styled('div')(({ theme }) => ({
|
||
display: 'flex',
|
||
[theme.breakpoints.down('md')]: {
|
||
flexDirection: 'column',
|
||
},
|
||
}));
|
||
|
||
const StyledProjectToggles = styled('div')(() => ({
|
||
width: '100%',
|
||
minWidth: 0,
|
||
}));
|
||
|
||
const StyledContentContainer = styled(Box)(() => ({
|
||
display: 'flex',
|
||
flexDirection: 'column',
|
||
width: '100%',
|
||
minWidth: 0,
|
||
}));
|
||
|
||
const InfiniteProjectOverview = () => {
|
||
const projectId = useRequiredPathParam('projectId');
|
||
const { project, loading: projectLoading } = useProject(projectId, {
|
||
refreshInterval,
|
||
});
|
||
const [prevCursors, setPrevCursors] = useState<string[]>([]);
|
||
const [currentCursor, setCurrentCursor] = useState('');
|
||
const {
|
||
features: searchFeatures,
|
||
nextCursor,
|
||
total,
|
||
refetch,
|
||
loading,
|
||
} = useFeatureSearch(currentCursor, projectId, { refreshInterval });
|
||
|
||
const { members, features, health, description, environments, stats } =
|
||
project;
|
||
const fetchNextPage = () => {
|
||
if (!loading && nextCursor !== currentCursor && nextCursor !== '') {
|
||
setPrevCursors([...prevCursors, currentCursor]);
|
||
setCurrentCursor(nextCursor);
|
||
}
|
||
};
|
||
const fetchPrevPage = () => {
|
||
const prevCursor = prevCursors.pop();
|
||
if (prevCursor) {
|
||
setCurrentCursor(prevCursor);
|
||
}
|
||
setPrevCursors([...prevCursors]);
|
||
};
|
||
|
||
return (
|
||
<StyledContainer>
|
||
<ProjectInfo
|
||
id={projectId}
|
||
description={description}
|
||
memberCount={members}
|
||
health={health}
|
||
features={features}
|
||
stats={stats}
|
||
/>
|
||
<StyledContentContainer>
|
||
<ProjectStats stats={project.stats} />
|
||
<StyledProjectToggles>
|
||
<ProjectFeatureToggles
|
||
key={
|
||
loading && searchFeatures.length === 0
|
||
? 'loading'
|
||
: 'ready'
|
||
}
|
||
features={searchFeatures}
|
||
environments={environments}
|
||
loading={loading && searchFeatures.length === 0}
|
||
onChange={refetch}
|
||
total={total}
|
||
/>
|
||
{prevCursors.length > 0 ? (
|
||
<Box onClick={fetchPrevPage}>Prev</Box>
|
||
) : null}
|
||
{nextCursor && <Box onClick={fetchNextPage}>Next</Box>}
|
||
</StyledProjectToggles>
|
||
</StyledContentContainer>
|
||
</StyledContainer>
|
||
);
|
||
};
|
||
|
||
const ProjectOverview = () => {
|
||
const projectId = useRequiredPathParam('projectId');
|
||
const projectName = useProjectNameOrId(projectId);
|
||
const { project, loading, refetch } = useProject(projectId, {
|
||
refreshInterval,
|
||
});
|
||
const { members, features, health, description, environments, stats } =
|
||
project;
|
||
usePageTitle(`Project overview – ${projectName}`);
|
||
const { setLastViewed } = useLastViewedProject();
|
||
const featureSwitchRefactor = useUiFlag('featureSwitchRefactor');
|
||
const featureSearchFrontend = useUiFlag('featureSearchFrontend');
|
||
|
||
useEffect(() => {
|
||
setLastViewed(projectId);
|
||
}, [projectId, setLastViewed]);
|
||
|
||
if (featureSearchFrontend) return <InfiniteProjectOverview />;
|
||
|
||
return (
|
||
<StyledContainer>
|
||
<ProjectInfo
|
||
id={projectId}
|
||
description={description}
|
||
memberCount={members}
|
||
health={health}
|
||
features={features}
|
||
stats={stats}
|
||
/>
|
||
<StyledContentContainer>
|
||
<ProjectStats stats={project.stats} />
|
||
<StyledProjectToggles>
|
||
<ConditionallyRender
|
||
condition={Boolean(featureSwitchRefactor)}
|
||
show={() => (
|
||
<ProjectFeatureToggles
|
||
key={loading ? 'loading' : 'ready'}
|
||
features={features}
|
||
environments={environments}
|
||
loading={loading}
|
||
onChange={refetch}
|
||
/>
|
||
)}
|
||
elseShow={() => (
|
||
<LegacyProjectFeatureToggles
|
||
key={loading ? 'loading' : 'ready'}
|
||
features={features}
|
||
environments={environments}
|
||
loading={loading}
|
||
/>
|
||
)}
|
||
/>
|
||
</StyledProjectToggles>
|
||
</StyledContentContainer>
|
||
</StyledContainer>
|
||
);
|
||
};
|
||
|
||
export default ProjectOverview;
|