mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
c16a5b9b71
* restructure the logic to avoid throwing error if any dat is not found * updated files for previous commit * fix build errors * remove throwing error if userId is undefined * optionally chain display_name property to fix sentry issues * add ooptional check * change issue action logic to increase code maintainability and make sure to send only the updated date while updating the issue * fix issue updation bugs * fix module issues build error * fix runtime errors
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
// mobx store
|
|
import { ModuleIssueQuickActions } from "components/issues";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { useIssues } from "hooks/store";
|
|
// components
|
|
// types
|
|
// constants
|
|
import { BaseListRoot } from "../base-list-root";
|
|
|
|
export interface IModuleListLayout {}
|
|
|
|
export const ModuleListLayout: React.FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, moduleId } = router.query;
|
|
|
|
const { issues } = useIssues(EIssuesStoreType.MODULE);
|
|
|
|
return (
|
|
<BaseListRoot
|
|
QuickActions={ModuleIssueQuickActions}
|
|
viewId={moduleId?.toString()}
|
|
storeType={EIssuesStoreType.MODULE}
|
|
addIssuesToView={(issueIds: string[]) => {
|
|
if (!workspaceSlug || !projectId || !moduleId) throw new Error();
|
|
return issues.addIssuesToModule(workspaceSlug.toString(), projectId.toString(), moduleId.toString(), issueIds);
|
|
}}
|
|
/>
|
|
);
|
|
});
|