forked from github/plane
3c2f5d12ed
* chore: add next theme and initial setup * chore: add dark mode colors to layouts * chore: user general setting page theming * chore: dashboard theming * chore: project page theming * chore: workspace setting page theming * chore: my issue page theming * chore: cmdk theming * chore: change hardcode bg and text color to theme * chore: change color name according to the design * style: fix card in the dashboard * style: fix merge conflict design issues * style: add light high contrast and dark high contrast * style: fix cmd k menu color and selection * feat: change theme from cmdk menu * chore: add multiple theme field to custom theme * chore: removed custom theming * fix: build error --------- Co-authored-by: Saheb Giri <iamsahebgiri@gmail.com>
107 lines
3.7 KiB
TypeScript
107 lines
3.7 KiB
TypeScript
// hooks
|
|
import useProjectIssuesView from "hooks/use-issues-view";
|
|
// components
|
|
import { SingleBoard } from "components/core/board-view/single-board";
|
|
// helpers
|
|
import { addSpaceIfCamelCase } from "helpers/string.helper";
|
|
// types
|
|
import { IIssue, IState, UserAuth } from "types";
|
|
import { getStateGroupIcon } from "components/icons";
|
|
|
|
type Props = {
|
|
type: "issue" | "cycle" | "module";
|
|
states: IState[] | undefined;
|
|
addIssueToState: (groupTitle: string) => void;
|
|
makeIssueCopy: (issue: IIssue) => void;
|
|
handleEditIssue: (issue: IIssue) => void;
|
|
openIssuesListModal?: (() => void) | null;
|
|
handleDeleteIssue: (issue: IIssue) => void;
|
|
handleTrashBox: (isDragging: boolean) => void;
|
|
removeIssue: ((bridgeId: string) => void) | null;
|
|
isCompleted?: boolean;
|
|
userAuth: UserAuth;
|
|
};
|
|
|
|
export const AllBoards: React.FC<Props> = ({
|
|
type,
|
|
states,
|
|
addIssueToState,
|
|
makeIssueCopy,
|
|
handleEditIssue,
|
|
openIssuesListModal,
|
|
handleDeleteIssue,
|
|
handleTrashBox,
|
|
removeIssue,
|
|
isCompleted = false,
|
|
userAuth,
|
|
}) => {
|
|
const {
|
|
groupedByIssues,
|
|
groupByProperty: selectedGroup,
|
|
showEmptyGroups,
|
|
} = useProjectIssuesView();
|
|
|
|
return (
|
|
<>
|
|
{groupedByIssues ? (
|
|
<div className="horizontal-scroll-enable flex h-[calc(100vh-140px)] gap-x-4">
|
|
{Object.keys(groupedByIssues).map((singleGroup, index) => {
|
|
const currentState =
|
|
selectedGroup === "state" ? states?.find((s) => s.id === singleGroup) : null;
|
|
|
|
if (!showEmptyGroups && groupedByIssues[singleGroup].length === 0) return null;
|
|
|
|
return (
|
|
<SingleBoard
|
|
key={index}
|
|
type={type}
|
|
currentState={currentState}
|
|
groupTitle={singleGroup}
|
|
handleEditIssue={handleEditIssue}
|
|
makeIssueCopy={makeIssueCopy}
|
|
addIssueToState={() => addIssueToState(singleGroup)}
|
|
handleDeleteIssue={handleDeleteIssue}
|
|
openIssuesListModal={openIssuesListModal ?? null}
|
|
handleTrashBox={handleTrashBox}
|
|
removeIssue={removeIssue}
|
|
isCompleted={isCompleted}
|
|
userAuth={userAuth}
|
|
/>
|
|
);
|
|
})}
|
|
{!showEmptyGroups && (
|
|
<div className="h-full w-96 flex-shrink-0 space-y-3 p-1">
|
|
<h2 className="text-lg font-semibold">Hidden groups</h2>
|
|
<div className="space-y-3">
|
|
{Object.keys(groupedByIssues).map((singleGroup, index) => {
|
|
const currentState =
|
|
selectedGroup === "state" ? states?.find((s) => s.id === singleGroup) : null;
|
|
|
|
if (groupedByIssues[singleGroup].length === 0)
|
|
return (
|
|
<div
|
|
key={index}
|
|
className="flex items-center justify-between gap-2 rounded bg-brand-surface-1 p-2 shadow"
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
{currentState &&
|
|
getStateGroupIcon(currentState.group, "16", "16", currentState.color)}
|
|
<h4 className="text-sm capitalize">
|
|
{selectedGroup === "state"
|
|
? addSpaceIfCamelCase(currentState?.name ?? "")
|
|
: addSpaceIfCamelCase(singleGroup)}
|
|
</h4>
|
|
</div>
|
|
<span className="text-xs text-brand-secondary">0</span>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
) : null}
|
|
</>
|
|
);
|
|
};
|