mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
220389e74e
* chore: autorun for the issue detail store * fix: labels mutation * chore: remove old peek overview code * chore: move add to cycle and module logic to store * fix: build errors * chore: add peekProjectId query param for the peek overview * chore: update profile layout * fix: multiple workspaces * style: Issue activity and link design improvements in Peek overview. * fix issue with labels not occupying full widht. * fix links overflow issue. * add tooltip in links to display entire link. * add functionality to copy links to clipboard. * chore: peek overview for all the layouts * fix: build errors --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// cmdk
|
|
import { Command } from "cmdk";
|
|
// ui
|
|
import { Spinner, StateGroupIcon } from "@plane/ui";
|
|
// icons
|
|
import { Check } from "lucide-react";
|
|
// types
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
closePalette: () => void;
|
|
issue: IIssue;
|
|
};
|
|
|
|
export const ChangeIssueState: React.FC<Props> = observer((props) => {
|
|
const { closePalette, issue } = props;
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const {
|
|
projectState: { projectStates },
|
|
projectIssues: { updateIssue },
|
|
} = useMobxStore();
|
|
|
|
const submitChanges = async (formData: Partial<IIssue>) => {
|
|
if (!workspaceSlug || !projectId || !issue) return;
|
|
|
|
const payload = { ...formData };
|
|
await updateIssue(workspaceSlug.toString(), projectId.toString(), issue.id, payload).catch((e) => {
|
|
console.error(e);
|
|
});
|
|
};
|
|
|
|
const handleIssueState = (stateId: string) => {
|
|
submitChanges({ state: stateId });
|
|
closePalette();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{projectStates ? (
|
|
projectStates.length > 0 ? (
|
|
projectStates.map((state) => (
|
|
<Command.Item key={state.id} onSelect={() => handleIssueState(state.id)} className="focus:outline-none">
|
|
<div className="flex items-center space-x-3">
|
|
<StateGroupIcon stateGroup={state.group} color={state.color} height="16px" width="16px" />
|
|
<p>{state.name}</p>
|
|
</div>
|
|
<div>{state.id === issue.state && <Check className="h-3 w-3" />}</div>
|
|
</Command.Item>
|
|
))
|
|
) : (
|
|
<div className="text-center">No states found</div>
|
|
)
|
|
) : (
|
|
<Spinner />
|
|
)}
|
|
</>
|
|
);
|
|
});
|