mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-24 01:18:01 +02:00
<!-- Thanks for creating a PR! To make it easier for reviewers and everyone else to understand what your changes relate to, please add some relevant content to the headings below. Feel free to ignore or delete sections that you don't think are relevant. Thank you! ❤️ --> Fix using projectId on redirect. Fix: only redirect to project(s) on app load ## About the changes <!-- Describe the changes introduced. What are they and why are they being introduced? Feel free to also add screenshots or steps to view the changes if they're visual. --> <!-- Does it close an issue? Multiple? --> Closes # <!-- (For internal contributors): Does it relate to an issue on public roadmap? --> <!-- Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item: # --> ### Important files <!-- PRs can contain a lot of changes, but not all changes are equally important. Where should a reviewer start looking to get an overview of the changes? Are any files particularly important? --> ## Discussion points <!-- Anything about the PR you'd like to discuss before it gets merged? Got any questions or doubts? --> Signed-off-by: andreas-unleash <andreas@getunleash.ai>
227 lines
8.2 KiB
TypeScript
227 lines
8.2 KiB
TypeScript
import { useContext, useEffect, useMemo, useState } from 'react';
|
|
import { Link, useNavigate, useSearchParams } from 'react-router-dom';
|
|
import { mutate } from 'swr';
|
|
import { getProjectFetcher } from 'hooks/api/getters/useProject/getProjectFetcher';
|
|
import useProjects from 'hooks/api/getters/useProjects/useProjects';
|
|
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
|
import { ProjectCard } from '../ProjectCard/ProjectCard';
|
|
import { useStyles } from './ProjectList.styles';
|
|
import { IProjectCard } from 'interfaces/project';
|
|
import loadingData from './loadingData';
|
|
import useLoading from 'hooks/useLoading';
|
|
import { PageContent } from 'component/common/PageContent/PageContent';
|
|
import AccessContext from 'contexts/AccessContext';
|
|
import { PageHeader } from 'component/common/PageHeader/PageHeader';
|
|
import ResponsiveButton from 'component/common/ResponsiveButton/ResponsiveButton';
|
|
import { CREATE_PROJECT } from 'component/providers/AccessProvider/permissions';
|
|
import { Add } from '@mui/icons-material';
|
|
import ApiError from 'component/common/ApiError/ApiError';
|
|
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
|
|
import { TablePlaceholder } from 'component/common/Table';
|
|
import { useMediaQuery } from '@mui/material';
|
|
import theme from 'themes/theme';
|
|
import { Search } from 'component/common/Search/Search';
|
|
|
|
type PageQueryType = Partial<Record<'search', string>>;
|
|
|
|
type projectMap = {
|
|
[index: string]: boolean;
|
|
};
|
|
|
|
function resolveCreateButtonData(isOss: boolean, hasAccess: boolean) {
|
|
if (isOss) {
|
|
return {
|
|
title: 'You must be on a paid subscription to create new projects',
|
|
disabled: true,
|
|
};
|
|
} else if (!hasAccess) {
|
|
return {
|
|
title: 'You do not have permission to create new projects',
|
|
disabled: true,
|
|
};
|
|
} else {
|
|
return {
|
|
title: 'Click to create a new project',
|
|
disabled: false,
|
|
};
|
|
}
|
|
}
|
|
|
|
export const ProjectListNew = () => {
|
|
const { hasAccess } = useContext(AccessContext);
|
|
const navigate = useNavigate();
|
|
const { classes: styles } = useStyles();
|
|
const { projects, loading, error, refetch } = useProjects();
|
|
const [fetchedProjects, setFetchedProjects] = useState<projectMap>({});
|
|
const ref = useLoading(loading);
|
|
const { isOss } = useUiConfig();
|
|
|
|
const isSmallScreen = useMediaQuery(theme.breakpoints.down('md'));
|
|
const [searchParams, setSearchParams] = useSearchParams();
|
|
const [searchValue, setSearchValue] = useState(
|
|
searchParams.get('search') || ''
|
|
);
|
|
|
|
useEffect(() => {
|
|
const tableState: PageQueryType = {};
|
|
if (searchValue) {
|
|
tableState.search = searchValue;
|
|
}
|
|
|
|
setSearchParams(tableState, {
|
|
replace: true,
|
|
});
|
|
}, [searchValue, setSearchParams]);
|
|
|
|
const filteredProjects = useMemo(() => {
|
|
const regExp = new RegExp(searchValue, 'i');
|
|
return searchValue
|
|
? projects.filter(project => regExp.test(project.name))
|
|
: projects;
|
|
}, [projects, searchValue]);
|
|
|
|
const handleHover = (projectId: string) => {
|
|
if (fetchedProjects[projectId]) {
|
|
return;
|
|
}
|
|
|
|
const { KEY, fetcher } = getProjectFetcher(projectId);
|
|
mutate(KEY, fetcher);
|
|
setFetchedProjects(prev => ({ ...prev, [projectId]: true }));
|
|
};
|
|
|
|
const createButtonData = resolveCreateButtonData(
|
|
isOss(),
|
|
hasAccess(CREATE_PROJECT)
|
|
);
|
|
|
|
const renderError = () => {
|
|
return (
|
|
<ApiError
|
|
onClick={refetch}
|
|
className={styles.apiError}
|
|
text="Error fetching projects"
|
|
/>
|
|
);
|
|
};
|
|
|
|
const renderProjects = () => {
|
|
if (loading) {
|
|
return renderLoading();
|
|
}
|
|
|
|
return filteredProjects.map((project: IProjectCard) => {
|
|
return (
|
|
<Link
|
|
key={project.id}
|
|
to={`/projects/${project.id}`}
|
|
className={styles.cardLink}
|
|
>
|
|
<ProjectCard
|
|
onHover={() => handleHover(project.id)}
|
|
name={project.name}
|
|
memberCount={project.memberCount ?? 0}
|
|
health={project.health}
|
|
id={project.id}
|
|
featureCount={project.featureCount}
|
|
/>
|
|
</Link>
|
|
);
|
|
});
|
|
};
|
|
|
|
const renderLoading = () => {
|
|
return loadingData.map((project: IProjectCard) => {
|
|
return (
|
|
<ProjectCard
|
|
data-loading
|
|
onHover={() => {}}
|
|
key={project.id}
|
|
name={project.name}
|
|
id={project.id}
|
|
memberCount={2}
|
|
health={95}
|
|
featureCount={4}
|
|
/>
|
|
);
|
|
});
|
|
};
|
|
|
|
let projectCount =
|
|
filteredProjects.length < projects.length
|
|
? `${filteredProjects.length} of ${projects.length}`
|
|
: projects.length;
|
|
|
|
return (
|
|
<div ref={ref}>
|
|
<PageContent
|
|
header={
|
|
<PageHeader
|
|
title={`Projects (${projectCount})`}
|
|
actions={
|
|
<>
|
|
<ConditionallyRender
|
|
condition={!isSmallScreen}
|
|
show={
|
|
<>
|
|
<Search
|
|
initialValue={searchValue}
|
|
onChange={setSearchValue}
|
|
/>
|
|
<PageHeader.Divider />
|
|
</>
|
|
}
|
|
/>
|
|
<ResponsiveButton
|
|
Icon={Add}
|
|
onClick={() => navigate('/projects/create')}
|
|
maxWidth="700px"
|
|
permission={CREATE_PROJECT}
|
|
disabled={createButtonData.disabled}
|
|
>
|
|
New project
|
|
</ResponsiveButton>
|
|
</>
|
|
}
|
|
>
|
|
<ConditionallyRender
|
|
condition={isSmallScreen}
|
|
show={
|
|
<Search
|
|
initialValue={searchValue}
|
|
onChange={setSearchValue}
|
|
/>
|
|
}
|
|
/>
|
|
</PageHeader>
|
|
}
|
|
>
|
|
<ConditionallyRender condition={error} show={renderError()} />
|
|
<div className={styles.container}>
|
|
<ConditionallyRender
|
|
condition={filteredProjects.length < 1 && !loading}
|
|
show={
|
|
<ConditionallyRender
|
|
condition={searchValue?.length > 0}
|
|
show={
|
|
<TablePlaceholder>
|
|
No projects found matching “
|
|
{searchValue}
|
|
”
|
|
</TablePlaceholder>
|
|
}
|
|
elseShow={
|
|
<TablePlaceholder>
|
|
No projects available.
|
|
</TablePlaceholder>
|
|
}
|
|
/>
|
|
}
|
|
elseShow={renderProjects()}
|
|
/>
|
|
</div>
|
|
</PageContent>
|
|
</div>
|
|
);
|
|
};
|