mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
d78b4dccf3
* chore: basic crud operations added to the list view * refactor: cycle details page * refactor: module details page * chore: added quick actions to kanban issue block * chore: implement quick actions in calendar layout * fix: custom menu component * chore: separate quick action dropdowns implemented * style: loader for calendar * fix: build errors
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { FC } from "react";
|
|
// components
|
|
import { IssueBlock } from "components/issues";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
interface Props {
|
|
columnId: string;
|
|
issues: IIssue[];
|
|
handleIssues: (group_by: string | null, issue: IIssue, action: "update" | "delete") => void;
|
|
quickActions: (group_by: string | null, issue: IIssue) => React.ReactNode;
|
|
display_properties: any;
|
|
states: any;
|
|
labels: any;
|
|
members: any;
|
|
priorities: any;
|
|
}
|
|
|
|
export const IssueBlocksList: FC<Props> = (props) => {
|
|
const { columnId, issues, handleIssues, quickActions, display_properties, states, labels, members, priorities } =
|
|
props;
|
|
|
|
return (
|
|
<>
|
|
{issues &&
|
|
issues?.length > 0 &&
|
|
issues.map((issue) => (
|
|
<IssueBlock
|
|
key={issue.id}
|
|
columnId={columnId}
|
|
issue={issue}
|
|
handleIssues={handleIssues}
|
|
quickActions={quickActions}
|
|
display_properties={display_properties}
|
|
states={states}
|
|
labels={labels}
|
|
members={members}
|
|
priorities={priorities}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
};
|