2022-11-19 14:21:26 +00:00
import React , { useEffect , useState } from "react" ;
// next
import { useRouter } from "next/router" ;
import type { NextPage } from "next" ;
// swr
import useSWR , { mutate } from "swr" ;
// services
import issuesServices from "lib/services/issues.services" ;
import sprintService from "lib/services/cycles.services" ;
// hooks
import useUser from "lib/hooks/useUser" ;
// fetching keys
import { CYCLE_ISSUES , CYCLE_LIST } from "constants/fetch-keys" ;
// layouts
2022-11-24 13:48:18 +00:00
import AdminLayout from "layouts/AdminLayout" ;
2022-11-19 14:21:26 +00:00
// components
2022-11-29 14:19:39 +00:00
import CycleView from "components/project/cycles/CycleView" ;
2022-11-19 14:21:26 +00:00
import ConfirmIssueDeletion from "components/project/issues/ConfirmIssueDeletion" ;
import ConfirmSprintDeletion from "components/project/cycles/ConfirmCycleDeletion" ;
import CreateUpdateIssuesModal from "components/project/issues/CreateUpdateIssueModal" ;
import CreateUpdateSprintsModal from "components/project/cycles/CreateUpdateCyclesModal" ;
// ui
2022-11-29 14:19:39 +00:00
import { BreadcrumbItem , Breadcrumbs , HeaderButton , Spinner , EmptySpace , EmptySpaceItem } from "ui" ;
2022-11-19 14:21:26 +00:00
// icons
import { PlusIcon } from "@heroicons/react/20/solid" ;
2022-11-29 14:19:39 +00:00
import { ArrowPathIcon } from "@heroicons/react/24/outline" ;
2022-11-19 14:21:26 +00:00
// types
import { IIssue , ICycle , SelectSprintType , SelectIssue } from "types" ;
const ProjectSprints : NextPage = ( ) = > {
const [ isOpen , setIsOpen ] = useState ( false ) ;
const [ selectedSprint , setSelectedSprint ] = useState < SelectSprintType > ( ) ;
const [ isIssueModalOpen , setIsIssueModalOpen ] = useState ( false ) ;
const [ selectedIssues , setSelectedIssues ] = useState < SelectIssue > ( ) ;
const [ deleteIssue , setDeleteIssue ] = useState < string | undefined > ( ) ;
const { activeWorkspace , activeProject } = useUser ( ) ;
const router = useRouter ( ) ;
const { projectId } = router . query ;
2022-11-29 14:19:39 +00:00
const { data : cycles } = useSWR < ICycle [ ] > (
2022-11-19 14:21:26 +00:00
projectId && activeWorkspace ? CYCLE_LIST ( projectId as string ) : null ,
activeWorkspace && projectId
? ( ) = > sprintService . getCycles ( activeWorkspace . slug , projectId as string )
: null
) ;
const openIssueModal = (
2022-11-29 14:19:39 +00:00
cycleId : string ,
2022-11-19 14:21:26 +00:00
issue? : IIssue ,
actionType : "create" | "edit" | "delete" = "create"
) = > {
2022-11-29 14:19:39 +00:00
const cycle = cycles ? . find ( ( cycle ) = > cycle . id === cycleId ) ;
if ( cycle ) {
2022-11-19 14:21:26 +00:00
setSelectedSprint ( {
2022-11-29 14:19:39 +00:00
. . . cycle ,
2022-11-19 14:21:26 +00:00
actionType : "create-issue" ,
} ) ;
if ( issue ) setSelectedIssues ( { . . . issue , actionType } ) ;
setIsIssueModalOpen ( true ) ;
}
} ;
2022-11-29 14:19:39 +00:00
const addIssueToSprint = ( cycleId : string , issueId : string ) = > {
2022-11-19 14:21:26 +00:00
if ( ! activeWorkspace || ! projectId ) return ;
issuesServices
2022-11-29 14:19:39 +00:00
. addIssueToSprint ( activeWorkspace . slug , projectId as string , cycleId , {
2022-11-19 14:21:26 +00:00
issue : issueId ,
} )
. then ( ( response ) = > {
console . log ( response ) ;
2022-11-29 14:19:39 +00:00
mutate ( CYCLE_ISSUES ( cycleId ) ) ;
2022-11-19 14:21:26 +00:00
} )
. catch ( ( error ) = > {
console . log ( error ) ;
} ) ;
} ;
useEffect ( ( ) = > {
if ( isOpen ) return ;
const timer = setTimeout ( ( ) = > {
setSelectedSprint ( undefined ) ;
clearTimeout ( timer ) ;
} , 500 ) ;
} , [ isOpen ] ) ;
useEffect ( ( ) = > {
if ( selectedIssues ? . actionType === "delete" ) {
setDeleteIssue ( selectedIssues . id ) ;
}
} , [ selectedIssues ] ) ;
return (
2022-11-24 13:48:18 +00:00
< AdminLayout
2022-11-19 14:21:26 +00:00
meta = { {
title : "Plane - Cycles" ,
} }
>
< CreateUpdateSprintsModal
isOpen = {
isOpen &&
selectedSprint ? . actionType !== "delete" &&
selectedSprint ? . actionType !== "create-issue"
}
setIsOpen = { setIsOpen }
data = { selectedSprint }
projectId = { projectId as string }
/ >
< ConfirmSprintDeletion
isOpen = { isOpen && ! ! selectedSprint && selectedSprint . actionType === "delete" }
setIsOpen = { setIsOpen }
data = { selectedSprint }
/ >
< ConfirmIssueDeletion
handleClose = { ( ) = > setDeleteIssue ( undefined ) }
isOpen = { ! ! deleteIssue }
data = { selectedIssues }
/ >
< CreateUpdateIssuesModal
isOpen = {
isIssueModalOpen &&
selectedSprint ? . actionType === "create-issue" &&
selectedIssues ? . actionType !== "delete"
}
data = { selectedIssues }
prePopulateData = { { sprints : selectedSprint?.id } }
setIsOpen = { setIsOpen }
projectId = { projectId as string }
/ >
2022-11-29 14:19:39 +00:00
{ cycles ? (
cycles . length > 0 ? (
2022-11-24 13:48:18 +00:00
< div className = "h-full w-full space-y-5" >
< Breadcrumbs >
< BreadcrumbItem title = "Projects" link = "/projects" / >
< BreadcrumbItem title = { ` ${ activeProject ? . name ? ? "Project" } Cycles ` } / >
< / Breadcrumbs >
< div className = "flex items-center justify-between cursor-pointer w-full" >
< h2 className = "text-2xl font-medium" > Project Cycle < / h2 >
< HeaderButton Icon = { PlusIcon } label = "Add Cycle" onClick = { ( ) = > setIsOpen ( true ) } / >
2022-11-19 14:21:26 +00:00
< / div >
2022-11-24 13:48:18 +00:00
< div className = "h-full w-full" >
2022-11-29 14:19:39 +00:00
{ cycles . map ( ( cycle ) = > (
< CycleView
key = { cycle . id }
sprint = { cycle }
2022-11-24 13:48:18 +00:00
selectSprint = { setSelectedSprint }
projectId = { projectId as string }
workspaceSlug = { activeWorkspace ? . slug as string }
openIssueModal = { openIssueModal }
addIssueToSprint = { addIssueToSprint }
/ >
) ) }
< / div >
< / div >
2022-11-19 14:21:26 +00:00
) : (
2022-11-24 13:48:18 +00:00
< div className = "w-full h-full flex flex-col justify-center items-center px-4" >
< EmptySpace
title = "You don't have any cycle yet."
description = "A cycle is a fixed time period where a team commits to a set number of issues from their backlog. Cycles are usually one, two, or four weeks long."
Icon = { ArrowPathIcon }
>
< EmptySpaceItem
title = "Create a new cycle"
description = {
< span >
Use < pre className = "inline bg-gray-100 px-2 py-1 rounded" > Ctrl / Command + Q < / pre > { " " }
shortcut to create a new cycle
< / span >
}
Icon = { PlusIcon }
action = { ( ) = > setIsOpen ( true ) }
/ >
< / EmptySpace >
2022-11-19 14:21:26 +00:00
< / div >
2022-11-24 13:48:18 +00:00
)
) : (
< div className = "w-full h-full flex justify-center items-center" >
< Spinner / >
< / div >
) }
< / AdminLayout >
2022-11-19 14:21:26 +00:00
) ;
} ;
export default ProjectSprints ;