forked from github/plane
b3ac9def8d
* dev: workspace states and estimates * refactor issue dropdown logic to help work properly with issues on global level * fix: project labels response change * fix label type * change store computed actions to computed functions from mobx-utils * fix: state response change * chore: project and workspace state change * fix state and label types * chore: state and label serializer change * modify state and label types * fix dropdown reset on project id change * fix label sort order --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Rahul R <rahulr@Rahuls-MacBook-Pro.local> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Rahul R <rahul.ramesha@plane.so>
100 lines
2.9 KiB
TypeScript
100 lines
2.9 KiB
TypeScript
import { FC, useMemo } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { LabelList, LabelCreate, IssueLabelSelectRoot } from "./";
|
|
// hooks
|
|
import { useIssueDetail, useLabel } from "hooks/store";
|
|
// types
|
|
import { IIssueLabel, TIssue } from "@plane/types";
|
|
import useToast from "hooks/use-toast";
|
|
|
|
export type TIssueLabel = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export type TLabelOperations = {
|
|
updateIssue: (workspaceSlug: string, projectId: string, issueId: string, data: Partial<TIssue>) => Promise<void>;
|
|
createLabel: (workspaceSlug: string, projectId: string, data: Partial<IIssueLabel>) => Promise<any>;
|
|
};
|
|
|
|
export const IssueLabel: FC<TIssueLabel> = observer((props) => {
|
|
const { workspaceSlug, projectId, issueId, disabled = false } = props;
|
|
// hooks
|
|
const { updateIssue } = useIssueDetail();
|
|
const { createLabel } = useLabel();
|
|
const { setToastAlert } = useToast();
|
|
|
|
const labelOperations: TLabelOperations = useMemo(
|
|
() => ({
|
|
updateIssue: async (workspaceSlug: string, projectId: string, issueId: string, data: Partial<TIssue>) => {
|
|
try {
|
|
await updateIssue(workspaceSlug, projectId, issueId, data);
|
|
setToastAlert({
|
|
title: "Issue updated successfully",
|
|
type: "success",
|
|
message: "Issue updated successfully",
|
|
});
|
|
} catch (error) {
|
|
setToastAlert({
|
|
title: "Issue update failed",
|
|
type: "error",
|
|
message: "Issue update failed",
|
|
});
|
|
}
|
|
},
|
|
createLabel: async (workspaceSlug: string, projectId: string, data: Partial<IIssueLabel>) => {
|
|
try {
|
|
const labelResponse = await createLabel(workspaceSlug, projectId, data);
|
|
setToastAlert({
|
|
title: "Label created successfully",
|
|
type: "success",
|
|
message: "Label created successfully",
|
|
});
|
|
return labelResponse;
|
|
} catch (error) {
|
|
setToastAlert({
|
|
title: "Label creation failed",
|
|
type: "error",
|
|
message: "Label creation failed",
|
|
});
|
|
return error;
|
|
}
|
|
},
|
|
}),
|
|
[updateIssue, createLabel, setToastAlert]
|
|
);
|
|
|
|
return (
|
|
<div className="relative flex flex-wrap items-center gap-1">
|
|
<LabelList
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
labelOperations={labelOperations}
|
|
disabled={disabled}
|
|
/>
|
|
|
|
{!disabled && (
|
|
<IssueLabelSelectRoot
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
labelOperations={labelOperations}
|
|
/>
|
|
)}
|
|
|
|
{!disabled && (
|
|
<LabelCreate
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
labelOperations={labelOperations}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|