-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: responsive breadcrumbs and headers for dashboard, projects, pr…
…oject issues, cycles, cycle issues, module issues (#3580)
- Loading branch information
1 parent
751b15a
commit 4b2a9c8
Showing
14 changed files
with
1,064 additions
and
499 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
import { useCallback, useState } from "react"; | ||
import router from "next/router"; | ||
//components | ||
import { CustomMenu } from "@plane/ui"; | ||
// icons | ||
import { Calendar, ChevronDown, Kanban, List } from "lucide-react"; | ||
import { IIssueDisplayFilterOptions, IIssueDisplayProperties, IIssueFilterOptions, TIssueLayouts } from "@plane/types"; | ||
// hooks | ||
import { useIssues, useCycle, useProjectState, useLabel, useMember } from "hooks/store"; | ||
// constants | ||
import { EIssueFilterType, EIssuesStoreType, ISSUE_DISPLAY_FILTERS_BY_LAYOUT, ISSUE_LAYOUTS } from "constants/issue"; | ||
import { ProjectAnalyticsModal } from "components/analytics"; | ||
import { DisplayFiltersSelection, FilterSelection, FiltersDropdown } from "components/issues"; | ||
|
||
export const CycleMobileHeader = () => { | ||
const [analyticsModal, setAnalyticsModal] = useState(false); | ||
const { getCycleById } = useCycle(); | ||
const layouts = [ | ||
{ key: "list", title: "List", icon: List }, | ||
{ key: "kanban", title: "Kanban", icon: Kanban }, | ||
{ key: "calendar", title: "Calendar", icon: Calendar }, | ||
]; | ||
|
||
const { workspaceSlug, projectId, cycleId } = router.query as { | ||
workspaceSlug: string; | ||
projectId: string; | ||
cycleId: string; | ||
}; | ||
const cycleDetails = cycleId ? getCycleById(cycleId.toString()) : undefined; | ||
// store hooks | ||
const { | ||
issuesFilter: { issueFilters, updateFilters }, | ||
} = useIssues(EIssuesStoreType.CYCLE); | ||
const activeLayout = issueFilters?.displayFilters?.layout; | ||
|
||
const handleLayoutChange = useCallback( | ||
(layout: TIssueLayouts) => { | ||
if (!workspaceSlug || !projectId) return; | ||
updateFilters(workspaceSlug, projectId, EIssueFilterType.DISPLAY_FILTERS, { layout: layout }, cycleId); | ||
}, | ||
[workspaceSlug, projectId, cycleId, updateFilters] | ||
); | ||
|
||
const { projectStates } = useProjectState(); | ||
const { projectLabels } = useLabel(); | ||
const { | ||
project: { projectMemberIds }, | ||
} = useMember(); | ||
|
||
const handleFiltersUpdate = useCallback( | ||
(key: keyof IIssueFilterOptions, value: string | string[]) => { | ||
if (!workspaceSlug || !projectId) return; | ||
const newValues = issueFilters?.filters?.[key] ?? []; | ||
|
||
if (Array.isArray(value)) { | ||
value.forEach((val) => { | ||
if (!newValues.includes(val)) newValues.push(val); | ||
}); | ||
} else { | ||
if (issueFilters?.filters?.[key]?.includes(value)) newValues.splice(newValues.indexOf(value), 1); | ||
else newValues.push(value); | ||
} | ||
|
||
updateFilters(workspaceSlug, projectId, EIssueFilterType.FILTERS, { [key]: newValues }, cycleId); | ||
}, | ||
[workspaceSlug, projectId, cycleId, issueFilters, updateFilters] | ||
); | ||
|
||
const handleDisplayFilters = useCallback( | ||
(updatedDisplayFilter: Partial<IIssueDisplayFilterOptions>) => { | ||
if (!workspaceSlug || !projectId) return; | ||
updateFilters(workspaceSlug, projectId, EIssueFilterType.DISPLAY_FILTERS, updatedDisplayFilter, cycleId); | ||
}, | ||
[workspaceSlug, projectId, cycleId, updateFilters] | ||
); | ||
|
||
const handleDisplayProperties = useCallback( | ||
(property: Partial<IIssueDisplayProperties>) => { | ||
if (!workspaceSlug || !projectId) return; | ||
updateFilters(workspaceSlug, projectId, EIssueFilterType.DISPLAY_PROPERTIES, property, cycleId); | ||
}, | ||
[workspaceSlug, projectId, cycleId, updateFilters] | ||
); | ||
|
||
return ( | ||
<> | ||
<ProjectAnalyticsModal | ||
isOpen={analyticsModal} | ||
onClose={() => setAnalyticsModal(false)} | ||
cycleDetails={cycleDetails ?? undefined} | ||
/> | ||
<div className="flex justify-evenly py-2 border-b border-custom-border-200"> | ||
<CustomMenu | ||
maxHeight={"md"} | ||
className="flex flex-grow justify-center text-custom-text-200 text-sm" | ||
placement="bottom-start" | ||
customButton={<span className="flex flex-grow justify-center text-custom-text-200 text-sm">Layout</span>} | ||
customButtonClassName="flex flex-grow justify-center text-custom-text-200 text-sm" | ||
closeOnSelect | ||
> | ||
{layouts.map((layout, index) => ( | ||
<CustomMenu.MenuItem | ||
onClick={() => { | ||
handleLayoutChange(ISSUE_LAYOUTS[index].key); | ||
}} | ||
className="flex items-center gap-2" | ||
> | ||
<layout.icon className="w-3 h-3" /> | ||
<div className="text-custom-text-300">{layout.title}</div> | ||
</CustomMenu.MenuItem> | ||
))} | ||
</CustomMenu> | ||
<div className="flex flex-grow justify-center border-l border-custom-border-200 items-center text-custom-text-200 text-sm"> | ||
<FiltersDropdown | ||
title="Filters" | ||
placement="bottom-end" | ||
menuButton={ | ||
<span className="flex items-center text-custom-text-200 text-sm"> | ||
Filters | ||
<ChevronDown className="text-custom-text-200 h-4 w-4 ml-2" /> | ||
</span> | ||
} | ||
> | ||
<FilterSelection | ||
filters={issueFilters?.filters ?? {}} | ||
handleFiltersUpdate={handleFiltersUpdate} | ||
layoutDisplayFiltersOptions={ | ||
activeLayout ? ISSUE_DISPLAY_FILTERS_BY_LAYOUT.issues[activeLayout] : undefined | ||
} | ||
labels={projectLabels} | ||
memberIds={projectMemberIds ?? undefined} | ||
states={projectStates} | ||
/> | ||
</FiltersDropdown> | ||
</div> | ||
<div className="flex flex-grow justify-center border-l border-custom-border-200 items-center text-custom-text-200 text-sm"> | ||
<FiltersDropdown | ||
title="Display" | ||
placement="bottom-end" | ||
menuButton={ | ||
<span className="flex items-center text-custom-text-200 text-sm"> | ||
Display | ||
<ChevronDown className="text-custom-text-200 h-4 w-4 ml-2" /> | ||
</span> | ||
} | ||
> | ||
<DisplayFiltersSelection | ||
layoutDisplayFiltersOptions={ | ||
activeLayout ? ISSUE_DISPLAY_FILTERS_BY_LAYOUT.issues[activeLayout] : undefined | ||
} | ||
displayFilters={issueFilters?.displayFilters ?? {}} | ||
handleDisplayFiltersUpdate={handleDisplayFilters} | ||
displayProperties={issueFilters?.displayProperties ?? {}} | ||
handleDisplayPropertiesUpdate={handleDisplayProperties} | ||
/> | ||
</FiltersDropdown> | ||
</div> | ||
|
||
<span | ||
onClick={() => setAnalyticsModal(true)} | ||
className="flex flex-grow justify-center text-custom-text-200 text-sm border-l border-custom-border-200" | ||
> | ||
Analytics | ||
</span> | ||
</div> | ||
</> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.