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
32 lines
989 B
TypeScript
32 lines
989 B
TypeScript
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { ProjectIssueQuickActions } from "components/issues";
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { EUserProjectRoles } from "constants/project";
|
|
import { useUser } from "hooks/store";
|
|
// components
|
|
// types
|
|
// constants
|
|
import { BaseKanBanRoot } from "../base-kanban-root";
|
|
|
|
export const ProfileIssuesKanBanLayout: React.FC = observer(() => {
|
|
const {
|
|
membership: { currentWorkspaceAllProjectsRole },
|
|
} = useUser();
|
|
|
|
const canEditPropertiesBasedOnProject = (projectId: string) => {
|
|
const currentProjectRole = currentWorkspaceAllProjectsRole && currentWorkspaceAllProjectsRole[projectId];
|
|
|
|
return !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;
|
|
};
|
|
|
|
return (
|
|
<BaseKanBanRoot
|
|
showLoader
|
|
QuickActions={ProjectIssueQuickActions}
|
|
storeType={EIssuesStoreType.PROFILE}
|
|
canEditPropertiesBasedOnProject={canEditPropertiesBasedOnProject}
|
|
/>
|
|
);
|
|
});
|