mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
804dd8300d
* fix: add multiple module in an issue * feat: implemented multiple modules select in the issue detail and issue peekoverview and resolved build errors. * feat: handled module parameters type error in the issue create and draft modal * feat: handled UI for modules select dropdown * fix: delete module activity updated * ui: module issue activity * fix: module search endpoint and issue fetch in the modules * fix: module ids optimized * fix: replaced module_id from boolean to array of module Id's in module search modal params --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
// hooks
|
|
import { useIssueDetail } from "hooks/store";
|
|
// components
|
|
import { IssueActivityBlockComponent } from "./";
|
|
// icons
|
|
import { DiceIcon } from "@plane/ui";
|
|
|
|
type TIssueModuleActivity = { activityId: string; ends: "top" | "bottom" | undefined };
|
|
|
|
export const IssueModuleActivity: FC<TIssueModuleActivity> = observer((props) => {
|
|
const { activityId, ends } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityById },
|
|
} = useIssueDetail();
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
if (!activity) return <></>;
|
|
return (
|
|
<IssueActivityBlockComponent
|
|
icon={<DiceIcon className="h-4 w-4 flex-shrink-0 text-[#6b7280]" />}
|
|
activityId={activityId}
|
|
ends={ends}
|
|
>
|
|
<>
|
|
{activity.verb === "created" ? (
|
|
<>
|
|
<span>added this issue to the module </span>
|
|
<a
|
|
href={`/${activity.workspace_detail?.slug}/projects/${activity.project}/modules/${activity.new_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 truncate font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="truncate">{activity.new_value}</span>
|
|
</a>
|
|
</>
|
|
) : activity.verb === "updated" ? (
|
|
<>
|
|
<span>set the module to </span>
|
|
<a
|
|
href={`/${activity.workspace_detail?.slug}/projects/${activity.project}/modules/${activity.new_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 truncate font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="truncate"> {activity.new_value}</span>
|
|
</a>
|
|
</>
|
|
) : (
|
|
<>
|
|
<span>removed the issue from the module </span>
|
|
<a
|
|
href={`/${activity.workspace_detail?.slug}/projects/${activity.project}/modules/${activity.old_identifier}`}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="inline-flex items-center gap-1 truncate font-medium text-custom-text-100 hover:underline"
|
|
>
|
|
<span className="truncate"> {activity.old_value}</span>
|
|
</a>
|
|
</>
|
|
)}
|
|
</>
|
|
</IssueActivityBlockComponent>
|
|
);
|
|
});
|