mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
48 lines
1.8 KiB
TypeScript
48 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
// mobx react lite
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { IssueListHeader } from "components/issues/board-views/kanban/header";
|
|
import { IssueListBlock } from "components/issues/board-views/kanban/block";
|
|
// ui
|
|
import { Icon } from "components/ui";
|
|
// interfaces
|
|
import { IIssueState, IIssue } from "types/issue";
|
|
// mobx hook
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { RootStore } from "store/root";
|
|
|
|
export const IssueKanbanView = observer(() => {
|
|
const store: RootStore = useMobxStore();
|
|
|
|
return (
|
|
<div className="relative w-full h-full overflow-hidden overflow-x-auto flex gap-3">
|
|
{store?.issue?.states &&
|
|
store?.issue?.states.length > 0 &&
|
|
store?.issue?.states.map((_state: IIssueState) => (
|
|
<div key={_state.id} className="flex-shrink-0 relative w-[340px] h-full flex flex-col">
|
|
<div className="flex-shrink-0">
|
|
<IssueListHeader state={_state} />
|
|
</div>
|
|
<div className="w-full h-full overflow-hidden overflow-y-auto hide-vertical-scrollbar">
|
|
{store.issue.getFilteredIssuesByState(_state.id) &&
|
|
store.issue.getFilteredIssuesByState(_state.id).length > 0 ? (
|
|
<div className="space-y-3 pb-2 px-2">
|
|
{store.issue.getFilteredIssuesByState(_state.id).map((_issue: IIssue) => (
|
|
<IssueListBlock key={_issue.id} issue={_issue} />
|
|
))}
|
|
</div>
|
|
) : (
|
|
<div className="flex justify-center items-center gap-2 pt-10 text-center text-sm text-custom-text-200 font-medium">
|
|
<Icon iconName="stack" />
|
|
No issues in this state
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
});
|