Refactor routes with layout and show search bar in project details page (#23)

* Refactor routes with layout and show search bar in project details page

* Set common search layout for child routes
This commit is contained in:
Nabarun Gogoi 2023-12-22 14:19:59 +05:30 committed by GitHub
parent e93cca598a
commit ef72a0351e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 141 additions and 73 deletions

View File

@ -1,14 +1,41 @@
import React from 'react';
import { createBrowserRouter, RouterProvider } from 'react-router-dom';
import DashboardLayout from './layouts/Dashboard';
import Home from './pages/index';
import { homeRoutes } from './pages/routes';
import Settings from './pages/Settings';
import {
projectsRoutesWithSearch,
projectsRoutesWithoutSearch,
} from './pages/projects/routes';
import ProjectSearchLayout from './layouts/ProjectSearch';
const router = createBrowserRouter([
{
path: '/',
element: <Home />,
children: homeRoutes,
element: <DashboardLayout />,
children: [
{
element: <ProjectSearchLayout />,
children: [
{
path: '/',
element: <Home />,
},
{
path: 'projects',
children: projectsRoutesWithSearch,
},
],
},
{
path: 'settings',
element: <Settings />,
},
{
path: 'projects',
children: projectsRoutesWithoutSearch,
},
],
},
]);

View File

@ -39,7 +39,7 @@ const ProjectCard: React.FC<ProjectCardProps> = ({ project }) => {
</MenuList>
</Menu>
</div>
<div className="border-slate-200 border-t-2 border-solid p-4 bg-gray-50">
<div className="border-t-2 border-solid p-4 bg-gray-50">
<Typography variant="small" color="gray">
{project.latestCommit.message}
</Typography>

View File

@ -17,7 +17,7 @@ interface ProjectsSearchProps {
onChange?: (data: ProjectDetails) => void;
}
const ProjectSearch = ({ onChange }: ProjectsSearchProps) => {
const ProjectSearchBar = ({ onChange }: ProjectsSearchProps) => {
const [items, setItems] = useState<ProjectDetails[]>([]);
const [selectedItem, setSelectedItem] = useState<ProjectDetails | null>(null);
@ -105,4 +105,4 @@ const ProjectSearch = ({ onChange }: ProjectsSearchProps) => {
);
};
export default ProjectSearch;
export default ProjectSearchBar;

View File

@ -31,7 +31,7 @@ const DeployStep = ({
const [collapse, setCollapse] = useState(false);
return (
<div className="border-b-2 border-slate-200">
<div className="border-b-2">
<div className="flex justify-between p-2 gap-2">
{status === DeployStatus.NOT_STARTED && <div>{step}</div>}
{status === DeployStatus.PROCESSING && <div>O</div>}

View File

@ -57,8 +57,8 @@ const DeleteProjectDialog = ({
>
<DialogBody className="flex flex-col gap-2">
<Typography variant="paragraph">
Deleting your project is irreversible. Enter your projects name
&nbsp;
Deleting your project is irreversible. Enter your projects
name&nbsp;
<span className="bg-blue-100 text-blue-700">({project.name})</span>
&nbsp;below to confirm you want to permanently delete it:
</Typography>

View File

@ -0,0 +1,21 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
import Sidebar from '../components/Sidebar';
const Dashboard = () => {
return (
<div className="grid grid-cols-5 h-screen bg-light-blue-50">
<div className="h-full">
<Sidebar />
</div>
<div className="col-span-4 h-full p-3">
<div className="bg-white rounded-3xl h-full">
<Outlet />
</div>
</div>
</div>
);
};
export default Dashboard;

View File

@ -0,0 +1,31 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
import HorizontalLine from '../components/HorizontalLine';
import { IconButton, Typography } from '@material-tailwind/react';
import ProjectSearchBar from '../components/projects/ProjectSearchBar';
const ProjectSearch = () => {
return (
<div>
<div className="flex p-5">
<div className="grow mr-2">
<ProjectSearchBar onChange={() => {}} />
</div>
<IconButton color="blue" className="rounded-full mr-2">
<Typography variant="h5">+</Typography>
</IconButton>
<div className="mr-2 flex items-center">
<Typography>^</Typography>
</div>
<div className="px-2 py-1 bg-blue-gray-50 rounded-lg">
<Typography variant="lead">SY</Typography>
</div>
</div>
<HorizontalLine />
<Outlet />
</div>
);
};
export default ProjectSearch;

View File

@ -1,7 +1,7 @@
import React from 'react';
const Settings = () => {
return <div className="bg-white rounded-3xl h-full">Settings page</div>;
return <div className="p-5">Settings page</div>;
};
export default Settings;

View File

@ -1,19 +1,40 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
import { Link } from 'react-router-dom';
import Sidebar from '../components/Sidebar';
import { Button, Typography, Chip } from '@material-tailwind/react';
const Home = () => {
import ProjectCard from '../components/projects/ProjectCard';
import projectsDetail from '../assets/projects.json';
const Projects = () => {
return (
<div className="grid grid-cols-5 h-screen bg-light-blue-50">
<div className="h-full">
<Sidebar />
<div>
<div className="flex p-5">
<div className="grow">
<div className="flex gap-2 items-center">
<Typography variant="h4">Projects</Typography>
<Chip
className="bg-gray-300 rounded-full static"
value={projectsDetail.length}
size="sm"
/>
</div>
</div>
<div>
<Link to="/projects/create">
<Button className="rounded-full" color="blue">
Create project
</Button>
</Link>
</div>
</div>
<div className="col-span-4 h-full p-3">
<Outlet />
<div className="grid grid-cols-3 gap-5 p-5">
{projectsDetail.map((project, key) => {
return <ProjectCard project={project} key={key} />;
})}
</div>
</div>
);
};
export default Home;
export default Projects;

View File

@ -1,20 +1,22 @@
import React from 'react';
import { Outlet, Link } from 'react-router-dom';
import { IconButton } from '@material-tailwind/react';
import HorizontalLine from '../../components/HorizontalLine';
const CreateProject = () => {
return (
<div className="bg-white rounded-3xl h-full p-4">
<div className="flex p-2">
<div className="grow p-4">
<div className="h-full">
<div className="flex p-4 items-center">
<div className="grow">
<h3 className="text-gray-750 text-2xl">Create new project</h3>
</div>
<div className="p-4">
<div>
<Link to="/">
<button className="bg-slate-300 text-gray-700 text-sm px-4 py-2 border rounded-full">
<IconButton className="rounded-full" variant="outlined">
X
</button>
</IconButton>
</Link>
</div>
</div>

View File

@ -19,7 +19,7 @@ const Project = () => {
const project = useMemo(() => getProject(Number(id)), [id]);
return (
<div className="bg-white rounded-3xl h-full">
<div className="h-full">
{project ? (
<>
<div className="flex p-4 gap-4 items-center">

View File

@ -1,31 +1,14 @@
import React from 'react';
import { Link } from 'react-router-dom';
import { Button, IconButton, Typography, Chip } from '@material-tailwind/react';
import { Button, Typography, Chip } from '@material-tailwind/react';
import ProjectCard from '../components/projects/ProjectCard';
import HorizontalLine from '../components/HorizontalLine';
import projectsDetail from '../assets/projects.json';
import ProjectSearch from '../components/projects/ProjectSearch';
import ProjectCard from '../../components/projects/ProjectCard';
import projectsDetail from '../../assets/projects.json';
const Projects = () => {
return (
<div className="bg-white rounded-3xl h-full">
<div className="flex p-4">
<div className="grow mr-2">
<ProjectSearch onChange={() => {}} />
</div>
<IconButton color="blue" className="rounded-full mr-2">
<Typography variant="h5">+</Typography>
</IconButton>
<div className="mr-2 flex items-center">
<Typography>^</Typography>
</div>
<div className="px-2 py-1 bg-blue-gray-50 rounded-lg">
<Typography variant="lead">SY</Typography>
</div>
</div>
<HorizontalLine />
<div>
<div className="flex p-5">
<div className="grow">
<div className="flex gap-2 items-center">

View File

@ -4,14 +4,17 @@ import CreateProject from './Create';
import Project from './Project';
import { createProjectRoutes } from './create/routes';
export const projectsRoutes = [
{
path: ':id',
element: <Project />,
},
export const projectsRoutesWithoutSearch = [
{
path: 'create',
element: <CreateProject />,
children: createProjectRoutes,
},
];
export const projectsRoutesWithSearch = [
{
path: ':id',
element: <Project />,
},
];

View File

@ -1,20 +0,0 @@
import React from 'react';
import Projects from './Projects';
import Settings from './Settings';
import { projectsRoutes } from './projects/routes';
export const homeRoutes = [
{
index: true,
element: <Projects />,
},
{
path: 'settings',
element: <Settings />,
},
{
path: 'projects',
children: projectsRoutes,
},
];