diff --git a/src/constants/data.ts b/src/constants/data.ts index 16dbc50..d7f7d5a 100644 --- a/src/constants/data.ts +++ b/src/constants/data.ts @@ -1,4 +1,4 @@ -import { NavItem, ProjectItem, TaskItem } from '@/types' +import { NavItem } from '@/types' export const navItems: NavItem[] = [ { @@ -23,6 +23,13 @@ export const navItems: NavItem[] = [ layout: 'dashboard', hideInMenu: true, }, + { + title: 'MyTasks', + href: '/mytasks', + icon: 'listChecks', + component: 'mytask', + layout: 'dashboard', + }, { title: 'Login', href: '/login', @@ -46,146 +53,3 @@ export const navItems: NavItem[] = [ layout: 'dashboard', }, ] - -export const projectItems: ProjectItem[] = [ - { - id: '1', - createAt: '2021-07-01T00:00:00Z', - updateAt: '2021-07-01T00:00:00Z', - title: 'Project 1', - description: 'A project description.', - link: '/projects/1', - }, - { - id: '2', - createAt: '2021-07-02T00:00:00Z', - updateAt: '2021-07-02T00:00:00Z', - title: 'Project 2', - description: 'Another project description.', - link: '/projects/2', - }, - { - id: '3', - createAt: '2021-07-03T00:00:00Z', - updateAt: '2021-07-03T00:00:00Z', - title: 'Project 3', - description: 'Yet another project description.', - link: '/projects/3', - }, - { - id: '4', - createAt: '2021-07-04T00:00:00Z', - updateAt: '2021-07-04T00:00:00Z', - title: 'Project 4', - description: 'Yet another project description.', - link: '/projects/4', - }, - { - id: '5', - createAt: '2021-07-05T00:00:00Z', - updateAt: '2021-07-05T00:00:00Z', - title: 'Project 5', - description: 'Yet another project description.', - link: '/projects/5', - }, - { - id: '6', - createAt: '2021-07-06T00:00:00Z', - updateAt: '2021-07-06T00:00:00Z', - title: 'Project 6', - description: 'Yet another project description.', - link: '/projects/6', - }, - { - id: '7', - createAt: '2021-07-07T00:00:00Z', - updateAt: '2021-07-07T00:00:00Z', - title: 'Project 7', - description: 'Yet another project description.', - link: '/projects/7', - }, - { - id: '8', - createAt: '2021-07-08T00:00:00Z', - updateAt: '2021-07-08T00:00:00Z', - title: 'Project 8', - description: 'Yet another project description.', - link: '/projects/8', - }, - { - id: '9', - createAt: '2021-07-09T00:00:00Z', - updateAt: '2021-07-09T00:00:00Z', - title: 'Project 9', - description: 'Yet another project description.', - link: '/projects/9', - }, - { - id: '10', - createAt: '2021-07-10T00:00:00Z', - updateAt: '2021-07-10T00:00:00Z', - title: 'Project 10', - description: 'Yet another project description.', - link: '/projects/10', - }, - { - id: '11', - createAt: '2021-07-11T00:00:00Z', - updateAt: '2021-07-11T00:00:00Z', - title: 'Project 11', - description: 'Yet another project description.', - link: '/projects/11', - }, - { - id: '12', - createAt: '2021-07-12T00:00:00Z', - updateAt: '2021-07-12T00:00:00Z', - title: 'Project 12', - description: 'Yet another project description.', - link: '/projects/12', - }, - { - id: '13', - createAt: '2021-07-13T00:00:00Z', - updateAt: '2021-07-13T00:00:00Z', - title: 'Project 13', - description: 'Yet another project description.', - link: '/projects/13', - }, -] - -export const taskItems: TaskItem[] = [ - { - id: '1', - createAt: '2021-07-01T00:00:00Z', - updateAt: '2021-07-01T00:00:00Z', - title: 'Task 1', - description: 'A task description.', - priority: 0, - projectId: '1', - link: '/tasks/1', - status: 'todo', - }, - { - id: '2', - createAt: '2021-07-02T00:00:00Z', - updateAt: '2021-07-02T00:00:00Z', - title: 'Task 2', - description: 'Another task description.', - priority: 1, - projectId: '1', - link: '/tasks/2', - status: 'in-progress', - }, - { - id: '3', - createAt: '2021-07-03T00:00:00Z', - updateAt: '2021-07-03T00:00:00Z', - title: 'Task 3', - description: 'Yet another task description.', - priority: 2, - projectId: '2', - link: '/tasks/3', - status: 'done', - }, -] diff --git a/src/pages/mytask/index.tsx b/src/pages/mytask/index.tsx new file mode 100644 index 0000000..87d09e8 --- /dev/null +++ b/src/pages/mytask/index.tsx @@ -0,0 +1,155 @@ +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Button } from '@/components/ui/button' +import { Issue, Repository } from '@/types' +import { useEffect, useState } from 'react' +import { SkeletonCard } from '@/components/skeleton-card' +import { Link, useParams } from 'react-router-dom' +import { + Breadcrumb, + BreadcrumbItem, + BreadcrumbLink, + BreadcrumbList, + BreadcrumbPage, + BreadcrumbSeparator, +} from '@/components/ui/breadcrumb' +import ReactMarkdown from 'react-markdown' + +function SkeletonTasks() { + return ( + <> + + + + + + + + ) +} + +function TaskItem({ item }: { item: Issue }) { + return ( + + + {item.title} + + +
+
+
+ User Avatar +
+

{item.user.login}

+

{item.user.html_url}

+
+
+
+

+ {item.body} +

+
+
+
+

State: {item.state}

+
+
+

Created At: {new Date(item.created_at).toLocaleDateString()}

+

Updated At: {new Date(item.updated_at).toLocaleDateString()}

+
+
+
+ +
+
+
+ ) +} + +function EmptyTasks() { + return ( +
+
No Tasks
+
+ ) +} + +export default function MyTask() { + const org = 'youbetdao' + + const [tasks, setTasks] = useState([]) + const [loading, setLoading] = useState(false) + const { project } = useParams<{ project: string }>() + + useEffect(() => { + const fetchTasks = async () => { + setLoading(true) + + try { + // const projectsData = await fetch(`/api/projects?org=${org}`).then((res) => res.json()) + const projects = await fetch('/api/projects?org=youbetdao') + .then((res) => res.json()) + .catch(() => []) + + let allTasks: Issue[] = [] + + const tasksPromises = projects.map(async (project: Repository) => { + const projectTasks = await fetch(`/api/tasks?org=${org}&project=${project.name}&assignee=${'wfnuser'}`) + .then((res) => res.json()) + .catch(() => []) + return projectTasks + }) + + const tasks = await Promise.all(tasksPromises) + + tasks.forEach((task) => { + allTasks = allTasks.concat(task) + }) + + setTasks(allTasks) + } catch (error) { + console.error('Error fetching tasks:', error) + setTasks([]) + } finally { + setLoading(false) + } + } + fetchTasks() + }, [project]) + + return ( +
+ + + + + Projects + + + + + {project} + + + + Tasks + + + +
+ {loading ? ( + + ) : tasks.length ? ( + tasks.map((item) => ) + ) : ( + + )} +
+
+ ) +} diff --git a/src/router/pages.tsx b/src/router/pages.tsx index a5d645c..10b2aae 100644 --- a/src/router/pages.tsx +++ b/src/router/pages.tsx @@ -4,10 +4,12 @@ import Project from '@/pages/project' import Login from '@/pages/login' import Callback from '@/pages/callback' import Profile from '@/pages/profile' +import MyTask from '@/pages/mytask' export const Pages = { dashboard: Dashboard, task: Task, + mytask: MyTask, project: Project, login: Login, callback: Callback,