mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e1ae0d3b56
* remirror instances commented out to avoid prosemirror conflicts * styles migrated for remirror to tiptap transition * added bubblemenu support with extensions * fixed css for task lists and code with syntax highlighting * added support for slash command * fixed bubble menu to match styles and added better seperation in UI * saving with debounce logic added and it's stored in backend * added migration support by updating to html * Image uploads done * improved file structure and delete image function implemented * Integrated tiptap with Issue Modal * added additional props and Tiptap Integration with Comments * added tiptap integration with user activity feeds * added ref control support and bubble menu support for readonly editor * added tiptap support for plane pages * added tiptap support to gpt assistant modal (yet to be tested) * removed remirror instances and cleaned up code * improved code structure for extracting props in Tiptap * fixing ts errors for next build * fixing node ts error for Horizontal Rule * added ts fix for node types * temp fix * temp fix * added min height for issue description in modal * added resolutions to prosemirror-model version * trying pnpm overrides * explicitly added prosemirror deps * bugfixes * removed extra gap at the top and moved saved indicator to the bottom * fix: slash command scroll position * chore: update custom css variables * matched theme colours * fixed gpt-assistant modal * updated yarn lock * added debounced updates for the title and removed saved state after timeout * added css animations for saved state * build fixes and remove remirror instances * minor commenting fixes --------- Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
151 lines
4.7 KiB
TypeScript
151 lines
4.7 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
import useProjectDetails from "hooks/use-project-details";
|
|
// components
|
|
import { DeleteEstimateModal } from "components/estimates";
|
|
// ui
|
|
import { CustomMenu, SecondaryButton } from "components/ui";
|
|
//icons
|
|
import { PencilIcon, TrashIcon } from "@heroicons/react/24/outline";
|
|
// helpers
|
|
import { orderArrayBy } from "helpers/array.helper";
|
|
// types
|
|
import { ICurrentUserResponse, IEstimate } from "types";
|
|
|
|
type Props = {
|
|
user: ICurrentUserResponse | undefined;
|
|
estimate: IEstimate;
|
|
editEstimate: (estimate: IEstimate) => void;
|
|
handleEstimateDelete: (estimateId: string) => void;
|
|
};
|
|
|
|
export const SingleEstimate: React.FC<Props> = ({
|
|
user,
|
|
estimate,
|
|
editEstimate,
|
|
handleEstimateDelete,
|
|
}) => {
|
|
const [isDeleteEstimateModalOpen, setIsDeleteEstimateModalOpen] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { projectDetails, mutateProjectDetails } = useProjectDetails();
|
|
|
|
const handleUseEstimate = async () => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
const payload = {
|
|
estimate: estimate.id,
|
|
};
|
|
|
|
mutateProjectDetails((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return { ...prevData, estimate: estimate.id };
|
|
}, false);
|
|
|
|
await projectService
|
|
.updateProject(workspaceSlug as string, projectId as string, payload, user)
|
|
.catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Estimate points could not be used. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="gap-2 py-3">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h6 className="flex w-[40vw] items-center gap-2 truncate text-sm font-medium">
|
|
{estimate.name}
|
|
{projectDetails?.estimate && projectDetails?.estimate === estimate.id && (
|
|
<span className="rounded bg-green-500/20 px-2 py-0.5 text-xs text-green-500">
|
|
In use
|
|
</span>
|
|
)}
|
|
</h6>
|
|
<p className="font-sm w-[40vw] truncate text-[14px] font-normal text-custom-text-200">
|
|
{estimate.description}
|
|
</p>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
{projectDetails?.estimate !== estimate.id && estimate.points.length > 0 && (
|
|
<SecondaryButton
|
|
onClick={handleUseEstimate}
|
|
className="!py-1 text-custom-text-200 hover:text-custom-text-100"
|
|
>
|
|
Use
|
|
</SecondaryButton>
|
|
)}
|
|
<CustomMenu ellipsis>
|
|
<CustomMenu.MenuItem
|
|
onClick={() => {
|
|
editEstimate(estimate);
|
|
}}
|
|
>
|
|
<div className="flex items-center justify-start gap-2">
|
|
<PencilIcon className="h-3.5 w-3.5" />
|
|
<span>Edit estimate</span>
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
{projectDetails?.estimate !== estimate.id && (
|
|
<CustomMenu.MenuItem
|
|
onClick={() => {
|
|
setIsDeleteEstimateModalOpen(true);
|
|
}}
|
|
>
|
|
<div className="flex items-center justify-start gap-2">
|
|
<TrashIcon className="h-3.5 w-3.5" />
|
|
<span>Delete estimate</span>
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
)}
|
|
</CustomMenu>
|
|
</div>
|
|
</div>
|
|
{estimate.points.length > 0 ? (
|
|
<div className="flex text-xs text-custom-text-200">
|
|
Estimate points (
|
|
<span className="flex gap-1">
|
|
{orderArrayBy(estimate.points, "key").map((point, index) => (
|
|
<h6 key={point.id} className="text-custom-text-200">
|
|
{point.value}
|
|
{index !== estimate.points.length - 1 && ","}{" "}
|
|
</h6>
|
|
))}
|
|
</span>
|
|
)
|
|
</div>
|
|
) : (
|
|
<div>
|
|
<p className="text-xs text-custom-text-200">No estimate points</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<DeleteEstimateModal
|
|
isOpen={isDeleteEstimateModalOpen}
|
|
handleClose={() => setIsDeleteEstimateModalOpen(false)}
|
|
data={estimate}
|
|
handleDelete={() => {
|
|
handleEstimateDelete(estimate.id);
|
|
setIsDeleteEstimateModalOpen(false);
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
};
|