forked from github/plane
3e2355e223
* fix: stroing the transactions in page * fix: page details changes * chore: page response change * chore: removed duplicated endpoints * chore: optimised the urls * chore: removed archived and favorite pages * chore: revamping pages store and components * mentions loading state part done * fixed mentions not showing in modals * removed comments and cleaned up types * removed unused types * reset: head * chore: pages store and component updates * style: pages list item UI * fix: improved colors and drag handle width * fix: slash commands are no more shown in the code blocks * fix: cleanup/hide drag handles post drop * fix: hide/cleanup drag handles post drag start * fix: aligning the drag handles better with the node post css changes of the length * fix: juggling back and forth of drag handles in ordered and unordered lists * chore: fix imports, ts errors and other things * fix: clearing nodes to default node i.e paragraph before converting it to other types of nodes For more reference on what this does, please refer https://tiptap.dev/docs/editor/api/commands/clear-nodes * chore: clearNodes after delete in case of selections being present * fix: hiding link selector in the bubble menu if inline code block is selected * chore: filtering, ordering and searching implemented * chore: updated pages store and updated UI * chore: new core editor just for document editor created * chore: removed setIsSubmitting prop in doc editor * fix: fixed submitting state for image uploads * refactor: setShouldShowAlert removed * refactor: rerenderOnPropsChange prop removed * chore: type inference magic in ref to expose an api for controlling editor menu items from outside * fix: naming imports * chore: change names of the exposed functions and removing old types * refactor: remove debouncedUpdatesEnabled prop; * refactor: editor heading markings now parsed using html * chore: removed unrelated components from the document editor * refactor: page details granular components * fix: remove onActionCompleteHandler * refactor: removed rerenderOnProps change prop * feat: added getMarkDown function * chore: update dropdown option actions * fix: sidebar markings update logic * chore: add image and to-do list actions to the toolbar * fix: handling refs and populating them via callbacks * feat: scroll to node api exposed * cleaning up editor refs when the editor is destroyed * feat: scrolling added to read only instance of the editor * fix: markings logic * fix: build errors with types * fix: build erros * fix: subscribing to transactions of editor via ref * chore: remove debug statements * fix: type errors * fix: temporary different slash commands for document editor * chore: inline code extension style * chore: remove border from readOnly editor * fix: editor bottom padding * chore: pages improvements * chore: handle Enter key on the page title * feat: added loading indicator logic in mentions * fix: mentions and slash commands now work well with multiple editors in one place * refactor: page store structure, filtering logic * feat: added better seperation in inline code blocks * feat: list autojoining added * fix: pages folder structure * fix: image refocus from external parts * working lists somewhat * chore: implement page reactions * fix: build errors * fix: build errors * fixed drag handles stuff * task list item fixed * working * fix: working on multiple nested lists * chore: remove debug statements * fix: Tab key on first list item handled to not go out of editor focus * feat: threshold auto scroll support added and multi nested list selection fixed * fix: caret color bug with improved inline code blocks * fix: node range error when bulk deleting with list * fix: removed slash commands from working in code blocks * chore: update typography margins * chore: new field added in page model * fix: better type inference in slash commands * chore: code block UI * feat: image insertion at correct position using ref added * feat: added improved mentions support for space * fix: type errors in mentions for comments in web app * sync: core with document-core * fix: build errors * fix: fallback for appendTo not being able to find active container instantly * fix: page store * fix: page description * fix: css quality issues * chore: code cleanup * chore: removed placeholder text in codeblocks * chore: archived pages response change * chore: archived pages response change * fix: initial pages list fetch * fix: pages list filters and ordering * chore: add access change option in the quick actions dropdown * fix: inline code block caret fixed * regression: removing extra text * chore: caret color removed * feat: copy code button added in code blocks * fix: initial load of page details * fix: initial load of page details * fix: image resizing weird behavior on click/expanding it too much fixed now * chore: copy page response * fix: todo list spacing * chore: description html in the copy page * chore: handle latest description on refetch * fix: saner scroll behaviours * fix: block menu positioning * fix: updated empty string description * feat: tab change sync support added * fix: infinite rerendering with markings * fix: block menu finally * fix: intial load on reload bug fixed * fix: nested lists alignment * fix: editor padding * fix: first level list items copyable * chore: list spacing * fix: title change * fix: pages list block items interaction * fix: saving chip position * fix: delete action from block menu to focus properly * fix: margin-bottom as 0 to avoid weird spacing when a paragraph node follows a list node * style: table, chore: lite text editor toolbar * fix: page description tab sync * fix: lists spacing and alignment * refactor: document editor props * feat: rich text editor wrapper created and migrated core * feat: created wrapper around lite text editor and merged core * chore: add lite text editor toolbar * fix: build errors * fix: type errors and addead live updation of toolbar * chore: pages migration * fix: inbox issue * refactor: remove redundant package * refactor: unused files * fix: add dompurify to space app * fix: inline code margin * fix: editor className props * fix: build errors * fix: traversing up the tree before assuming the parent is not a list item * fix: drag handle positions for list items fixed * fix: removed focus at end logic after deleting block * fix: image wrapper overflow scroll fix with block menu's position * fix: selection and deletion logic for nested lists fixed!! * fix: hiding the block menu while scrolling in the document/app * fix: merge conflicts resolved from develop * fix: inbox issue description * chore: move page title to the web app * fix: handling edge cases for table selection * chore: lint issues * refactor: list item functions moved to same file * refactor: use mention hook * fix: added try catch blocks for mention suggestions * chore: remove unused code * fix: remove console logs * fix: remove console logs --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com>
295 lines
11 KiB
TypeScript
295 lines
11 KiB
TypeScript
import React, { useState } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { ArchiveRestoreIcon, Check, LinkIcon, Lock, Pencil, Star, Trash2 } from "lucide-react";
|
|
import type { IProject } from "@plane/types";
|
|
// ui
|
|
import { Avatar, AvatarGroup, Button, Tooltip, TOAST_TYPE, setToast, setPromiseToast } from "@plane/ui";
|
|
// components
|
|
import { ArchiveRestoreProjectModal, DeleteProjectModal, JoinProjectModal, ProjectLogo } from "@/components/project";
|
|
// helpers
|
|
import { EUserProjectRoles } from "@/constants/project";
|
|
import { cn } from "@/helpers/common.helper";
|
|
import { renderFormattedDate } from "@/helpers/date-time.helper";
|
|
import { copyUrlToClipboard } from "@/helpers/string.helper";
|
|
// hooks
|
|
import { useProject } from "@/hooks/store";
|
|
// types
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
// hooks
|
|
// constants
|
|
|
|
type Props = {
|
|
project: IProject;
|
|
};
|
|
|
|
export const ProjectCard: React.FC<Props> = observer((props) => {
|
|
const { project } = props;
|
|
// states
|
|
const [deleteProjectModalOpen, setDeleteProjectModal] = useState(false);
|
|
const [joinProjectModalOpen, setJoinProjectModal] = useState(false);
|
|
const [restoreProject, setRestoreProject] = useState(false);
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store hooks
|
|
const { addProjectToFavorites, removeProjectFromFavorites } = useProject();
|
|
// hooks
|
|
const { isMobile } = usePlatformOS();
|
|
project.member_role;
|
|
// derived values
|
|
const projectMembersIds = project.members?.map((member) => member.member_id);
|
|
// auth
|
|
const isOwner = project.member_role === EUserProjectRoles.ADMIN;
|
|
const isMember = project.member_role === EUserProjectRoles.MEMBER;
|
|
// archive
|
|
const isArchived = !!project.archived_at;
|
|
|
|
const handleAddToFavorites = () => {
|
|
if (!workspaceSlug) return;
|
|
|
|
const addToFavoritePromise = addProjectToFavorites(workspaceSlug.toString(), project.id);
|
|
setPromiseToast(addToFavoritePromise, {
|
|
loading: "Adding project to favorites...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Project added to favorites.",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Couldn't add the project to favorites. Please try again.",
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleRemoveFromFavorites = () => {
|
|
if (!workspaceSlug) return;
|
|
|
|
const removeFromFavoritePromise = removeProjectFromFavorites(workspaceSlug.toString(), project.id);
|
|
setPromiseToast(removeFromFavoritePromise, {
|
|
loading: "Removing project from favorites...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Project removed from favorites.",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Couldn't remove the project from favorites. Please try again.",
|
|
},
|
|
});
|
|
};
|
|
|
|
const handleCopyText = () =>
|
|
copyUrlToClipboard(`${workspaceSlug}/projects/${project.id}/issues`).then(() =>
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Link Copied!",
|
|
message: "Project link copied to clipboard.",
|
|
})
|
|
);
|
|
|
|
return (
|
|
<>
|
|
{/* Delete Project Modal */}
|
|
<DeleteProjectModal
|
|
project={project}
|
|
isOpen={deleteProjectModalOpen}
|
|
onClose={() => setDeleteProjectModal(false)}
|
|
/>
|
|
{/* Join Project Modal */}
|
|
{workspaceSlug && (
|
|
<JoinProjectModal
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
project={project}
|
|
isOpen={joinProjectModalOpen}
|
|
handleClose={() => setJoinProjectModal(false)}
|
|
/>
|
|
)}
|
|
{/* Restore project modal */}
|
|
{workspaceSlug && project && (
|
|
<ArchiveRestoreProjectModal
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={project.id}
|
|
isOpen={restoreProject}
|
|
onClose={() => setRestoreProject(false)}
|
|
archive={false}
|
|
/>
|
|
)}
|
|
<Link
|
|
href={`/${workspaceSlug}/projects/${project.id}/issues`}
|
|
onClick={(e) => {
|
|
if (!project.is_member || isArchived) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
if (!isArchived) setJoinProjectModal(true);
|
|
}
|
|
}}
|
|
className="flex flex-col rounded border border-custom-border-200 bg-custom-background-100"
|
|
>
|
|
<div className="relative h-[118px] w-full rounded-t ">
|
|
<div className="absolute inset-0 z-[1] bg-gradient-to-t from-black/60 to-transparent" />
|
|
|
|
<img
|
|
src={
|
|
project.cover_image ??
|
|
"https://images.unsplash.com/photo-1672243775941-10d763d9adef?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80"
|
|
}
|
|
alt={project.name}
|
|
className="absolute left-0 top-0 h-full w-full rounded-t object-cover"
|
|
/>
|
|
|
|
<div className="absolute bottom-4 z-[1] flex h-10 w-full items-center justify-between gap-3 px-4">
|
|
<div className="flex flex-grow items-center gap-2.5 truncate">
|
|
<div className="h-9 w-9 flex-shrink-0 grid place-items-center rounded bg-white/90">
|
|
<ProjectLogo logo={project.logo_props} />
|
|
</div>
|
|
|
|
<div className="flex w-full flex-col justify-between gap-0.5 truncate">
|
|
<h3 className="truncate font-semibold text-white">{project.name}</h3>
|
|
<span className="flex items-center gap-1.5">
|
|
<p className="text-xs font-medium text-white">{project.identifier} </p>
|
|
{project.network === 0 && <Lock className="h-2.5 w-2.5 text-white " />}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{!isArchived && (
|
|
<div className="flex h-full flex-shrink-0 items-center gap-2">
|
|
<button
|
|
className="flex h-6 w-6 items-center justify-center rounded bg-white/10"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
handleCopyText();
|
|
}}
|
|
>
|
|
<LinkIcon className="h-3 w-3 text-white" />
|
|
</button>
|
|
<button
|
|
className="flex h-6 w-6 items-center justify-center rounded bg-white/10"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
if (project.is_favorite) handleRemoveFromFavorites();
|
|
else handleAddToFavorites();
|
|
}}
|
|
>
|
|
<Star
|
|
className={`h-3 w-3 ${project.is_favorite ? "fill-amber-400 text-transparent" : "text-white"} `}
|
|
/>
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
className={cn("flex h-[104px] w-full flex-col justify-between rounded-b p-4", {
|
|
"opacity-90": isArchived,
|
|
})}
|
|
>
|
|
<p className="line-clamp-2 break-words text-sm text-custom-text-300">
|
|
{project.description && project.description.trim() !== ""
|
|
? project.description
|
|
: `Created on ${renderFormattedDate(project.created_at)}`}
|
|
</p>
|
|
<div className="item-center flex justify-between">
|
|
<div className="flex items-center justify-center gap-2">
|
|
<Tooltip
|
|
isMobile={isMobile}
|
|
tooltipHeading="Members"
|
|
tooltipContent={
|
|
project.members && project.members.length > 0 ? `${project.members.length} Members` : "No Member"
|
|
}
|
|
position="top"
|
|
>
|
|
{projectMembersIds && projectMembersIds.length > 0 ? (
|
|
<div className="flex cursor-pointer items-center gap-2 text-custom-text-200">
|
|
<AvatarGroup showTooltip={false}>
|
|
{projectMembersIds.map((memberId) => {
|
|
const member = project.members?.find((m) => m.member_id === memberId);
|
|
if (!member) return null;
|
|
return (
|
|
<Avatar key={member.id} name={member.member__display_name} src={member.member__avatar} />
|
|
);
|
|
})}
|
|
</AvatarGroup>
|
|
</div>
|
|
) : (
|
|
<span className="text-sm italic text-custom-text-400">No Member Yet</span>
|
|
)}
|
|
</Tooltip>
|
|
{isArchived && <div className="text-xs text-custom-text-400 font-medium">Archived</div>}
|
|
</div>
|
|
{isArchived ? (
|
|
isOwner && (
|
|
<div className="flex items-center justify-center gap-2">
|
|
<div
|
|
className="flex items-center justify-center text-xs text-custom-text-400 font-medium hover:text-custom-text-200"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setRestoreProject(true);
|
|
}}
|
|
>
|
|
<div className="flex items-center gap-1.5">
|
|
<ArchiveRestoreIcon className="h-3.5 w-3.5" />
|
|
Restore
|
|
</div>
|
|
</div>
|
|
<div
|
|
className="flex items-center justify-center text-xs text-custom-text-400 font-medium hover:text-custom-text-200"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setDeleteProjectModal(true);
|
|
}}
|
|
>
|
|
<Trash2 className="h-3.5 w-3.5" />
|
|
</div>
|
|
</div>
|
|
)
|
|
) : (
|
|
<>
|
|
{project.is_member &&
|
|
(isOwner || isMember ? (
|
|
<Link
|
|
className="flex items-center justify-center rounded p-1 text-custom-text-400 hover:bg-custom-background-80 hover:text-custom-text-200"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
href={`/${workspaceSlug}/projects/${project.id}/settings`}
|
|
>
|
|
<Pencil className="h-3.5 w-3.5" />
|
|
</Link>
|
|
) : (
|
|
<span className="flex items-center gap-1 text-custom-text-400 text-sm">
|
|
<Check className="h-3.5 w-3.5" />
|
|
Joined
|
|
</span>
|
|
))}
|
|
{!project.is_member && (
|
|
<div className="flex items-center">
|
|
<Button
|
|
variant="link-primary"
|
|
className="!p-0 font-semibold"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setJoinProjectModal(true);
|
|
}}
|
|
>
|
|
Join
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
</>
|
|
);
|
|
});
|