mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
8a95a41100
Co-authored-by: Bavisetti Narayan <72156168+NarayanBavisetti@users.noreply.github.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Bavisetti Narayan <narayan@Bavisettis-MacBook-Pro.local> Co-authored-by: Nikhil <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: M. Palanikannan <73993394+Palanikannan1437@users.noreply.github.com> Co-authored-by: Lakhan Baheti <94619783+1akhanBaheti@users.noreply.github.com> Co-authored-by: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com>
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { useEffect } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { IssueListHeader } from "components/issues/board-views/list/header";
|
|
import { IssueListBlock } from "components/issues/board-views/list/block";
|
|
// interfaces
|
|
import { IIssueState, IIssue } from "types/issue";
|
|
// mobx hook
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// store
|
|
import { RootStore } from "store/root";
|
|
import { useRouter } from "next/router";
|
|
|
|
export const IssueListView = observer(() => {
|
|
const { issue: issueStore }: RootStore = useMobxStore();
|
|
|
|
return (
|
|
<>
|
|
{issueStore?.states &&
|
|
issueStore?.states.length > 0 &&
|
|
issueStore?.states.map((_state: IIssueState) => (
|
|
<div key={_state.id} className="relative w-full">
|
|
<IssueListHeader state={_state} />
|
|
{issueStore.getFilteredIssuesByState(_state.id) &&
|
|
issueStore.getFilteredIssuesByState(_state.id).length > 0 ? (
|
|
<div className="divide-y divide-custom-border-200">
|
|
{issueStore.getFilteredIssuesByState(_state.id).map((_issue: IIssue) => (
|
|
<IssueListBlock key={_issue.id} issue={_issue} />
|
|
))}
|
|
</div>
|
|
) : (
|
|
<div className="px-6 py-3.5 text-sm text-custom-text-200 bg-custom-background-100">
|
|
No Issues are available.
|
|
</div>
|
|
)}
|
|
</div>
|
|
))}
|
|
</>
|
|
);
|
|
});
|