2023-11-20 16:01:12 +00:00
|
|
|
import { FC, useState } from "react";
|
|
|
|
import Link from "next/link";
|
|
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
import {
|
|
|
|
AlertCircle,
|
|
|
|
Archive,
|
|
|
|
ArchiveRestoreIcon,
|
|
|
|
FileText,
|
|
|
|
Globe2,
|
|
|
|
LinkIcon,
|
|
|
|
Lock,
|
|
|
|
Pencil,
|
|
|
|
Star,
|
|
|
|
Trash2,
|
|
|
|
} from "lucide-react";
|
2023-12-06 13:43:42 +00:00
|
|
|
// mobx store
|
|
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
2023-11-20 16:01:12 +00:00
|
|
|
// hooks
|
|
|
|
import useToast from "hooks/use-toast";
|
|
|
|
// helpers
|
|
|
|
import { copyUrlToClipboard } from "helpers/string.helper";
|
2023-12-06 13:43:42 +00:00
|
|
|
import { render24HourFormatTime, renderFormattedDate } from "helpers/date-time.helper";
|
2023-11-20 16:01:12 +00:00
|
|
|
// ui
|
|
|
|
import { CustomMenu, Tooltip } from "@plane/ui";
|
|
|
|
// components
|
|
|
|
import { CreateUpdatePageModal, DeletePageModal } from "components/pages";
|
|
|
|
// types
|
|
|
|
import { IPage } from "types";
|
2023-12-04 14:33:23 +00:00
|
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
2023-11-20 16:01:12 +00:00
|
|
|
|
|
|
|
export interface IPagesListItem {
|
|
|
|
workspaceSlug: string;
|
|
|
|
projectId: string;
|
|
|
|
page: IPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const PagesListItem: FC<IPagesListItem> = observer((props) => {
|
|
|
|
const { workspaceSlug, projectId, page } = props;
|
|
|
|
// states
|
|
|
|
const [createUpdatePageModal, setCreateUpdatePageModal] = useState(false);
|
|
|
|
const [deletePageModal, setDeletePageModal] = useState(false);
|
2023-12-06 13:43:42 +00:00
|
|
|
// mobx store
|
2023-11-20 16:01:12 +00:00
|
|
|
const {
|
|
|
|
page: { archivePage, removeFromFavorites, addToFavorites, makePublic, makePrivate, restorePage },
|
2023-12-06 13:43:42 +00:00
|
|
|
user: { currentUser, currentProjectRole },
|
2023-11-20 16:01:12 +00:00
|
|
|
projectMember: { projectMembers },
|
|
|
|
} = useMobxStore();
|
|
|
|
// hooks
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
|
|
|
|
const handleCopyUrl = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
copyUrlToClipboard(`${workspaceSlug}/projects/${projectId}/pages/${page.id}`).then(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Link Copied!",
|
|
|
|
message: "Page link copied to clipboard.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleAddToFavorites = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
addToFavorites(workspaceSlug, projectId, page.id)
|
|
|
|
.then(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Success!",
|
|
|
|
message: "Successfully added the page to favorites.",
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
|
|
|
message: "Couldn't add the page to favorites. Please try again.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleRemoveFromFavorites = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
removeFromFavorites(workspaceSlug, projectId, page.id)
|
|
|
|
.then(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Success!",
|
|
|
|
message: "Successfully removed the page from favorites.",
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
|
|
|
message: "Couldn't remove the page from favorites. Please try again.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleMakePublic = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
makePublic(workspaceSlug, projectId, page.id);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleMakePrivate = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
makePrivate(workspaceSlug, projectId, page.id);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleArchivePage = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
archivePage(workspaceSlug, projectId, page.id);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleRestorePage = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
restorePage(workspaceSlug, projectId, page.id);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleDeletePage = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
setDeletePageModal(true);
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleEditPage = (e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
setCreateUpdatePageModal(true);
|
|
|
|
};
|
|
|
|
|
2023-12-06 13:43:42 +00:00
|
|
|
const ownerDetails = projectMembers?.find((projectMember) => projectMember.member.id === page.owned_by)?.member;
|
|
|
|
const isCurrentUserOwner = page.owned_by === currentUser?.id;
|
|
|
|
|
|
|
|
const userCanEdit =
|
|
|
|
isCurrentUserOwner ||
|
|
|
|
(currentProjectRole && [EUserWorkspaceRoles.ADMIN, EUserWorkspaceRoles.MEMBER].includes(currentProjectRole));
|
|
|
|
const userCanChangeAccess = isCurrentUserOwner;
|
|
|
|
const userCanArchive = isCurrentUserOwner || currentProjectRole === EUserWorkspaceRoles.ADMIN;
|
|
|
|
const userCanDelete = isCurrentUserOwner || currentProjectRole === EUserWorkspaceRoles.ADMIN;
|
2023-11-20 16:01:12 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<CreateUpdatePageModal
|
|
|
|
isOpen={createUpdatePageModal}
|
|
|
|
handleClose={() => setCreateUpdatePageModal(false)}
|
|
|
|
data={page}
|
|
|
|
projectId={projectId}
|
|
|
|
/>
|
|
|
|
<DeletePageModal isOpen={deletePageModal} onClose={() => setDeletePageModal(false)} data={page} />
|
|
|
|
<li>
|
|
|
|
<Link href={`/${workspaceSlug}/projects/${projectId}/pages/${page.id}`}>
|
2023-12-01 10:20:01 +00:00
|
|
|
<div className="relative rounded p-4 text-custom-text-200 hover:bg-custom-background-80">
|
|
|
|
<div className="flex items-center justify-between">
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="flex items-center gap-2 overflow-hidden">
|
2023-12-01 10:20:01 +00:00
|
|
|
<FileText className="h-4 w-4 shrink-0" />
|
|
|
|
<p className="mr-2 truncate text-sm text-custom-text-100">{page.name}</p>
|
|
|
|
{page.label_details.length > 0 &&
|
|
|
|
page.label_details.map((label) => (
|
|
|
|
<div
|
|
|
|
key={label.id}
|
|
|
|
className="group flex items-center gap-1 rounded-2xl border border-custom-border-200 px-2 py-0.5 text-xs"
|
|
|
|
style={{
|
|
|
|
backgroundColor: `${label?.color}20`,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<span
|
|
|
|
className="h-1.5 w-1.5 flex-shrink-0 rounded-full"
|
2023-11-20 16:01:12 +00:00
|
|
|
style={{
|
2023-12-01 10:20:01 +00:00
|
|
|
backgroundColor: label?.color,
|
2023-11-20 16:01:12 +00:00
|
|
|
}}
|
2023-12-01 10:20:01 +00:00
|
|
|
/>
|
|
|
|
{label.name}
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2.5">
|
|
|
|
{page.archived_at ? (
|
2023-11-20 16:01:12 +00:00
|
|
|
<Tooltip
|
2023-12-06 13:43:42 +00:00
|
|
|
tooltipContent={`Archived at ${render24HourFormatTime(page.archived_at)} on ${renderFormattedDate(
|
2023-12-01 10:20:01 +00:00
|
|
|
page.archived_at
|
|
|
|
)}`}
|
2023-11-20 16:01:12 +00:00
|
|
|
>
|
2023-12-01 10:20:01 +00:00
|
|
|
<p className="text-sm text-custom-text-200">{render24HourFormatTime(page.archived_at)}</p>
|
2023-11-20 16:01:12 +00:00
|
|
|
</Tooltip>
|
2023-12-01 10:20:01 +00:00
|
|
|
) : (
|
|
|
|
<Tooltip
|
2023-12-06 13:43:42 +00:00
|
|
|
tooltipContent={`Last updated at ${render24HourFormatTime(
|
2023-12-01 10:20:01 +00:00
|
|
|
page.updated_at
|
2023-12-06 13:43:42 +00:00
|
|
|
)} on ${renderFormattedDate(page.updated_at)}`}
|
2023-12-01 10:20:01 +00:00
|
|
|
>
|
|
|
|
<p className="text-sm text-custom-text-200">{render24HourFormatTime(page.updated_at)}</p>
|
|
|
|
</Tooltip>
|
|
|
|
)}
|
2023-12-06 13:43:42 +00:00
|
|
|
<Tooltip tooltipContent={`${page.is_favorite ? "Remove from favorites" : "Mark as favorite"}`}>
|
|
|
|
{page.is_favorite ? (
|
|
|
|
<button type="button" onClick={handleRemoveFromFavorites}>
|
2023-12-10 10:18:10 +00:00
|
|
|
<Star className="h-3.5 w-3.5 fill-orange-400 text-orange-400" />
|
2023-12-06 13:43:42 +00:00
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button type="button" onClick={handleAddToFavorites}>
|
|
|
|
<Star className="h-3.5 w-3.5" />
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</Tooltip>
|
|
|
|
{userCanChangeAccess && (
|
2023-12-01 10:20:01 +00:00
|
|
|
<Tooltip
|
|
|
|
tooltipContent={`${
|
|
|
|
page.access
|
|
|
|
? "This page is only visible to you"
|
|
|
|
: "This page can be viewed by anyone in the project"
|
|
|
|
}`}
|
|
|
|
>
|
|
|
|
{page.access ? (
|
|
|
|
<button type="button" onClick={handleMakePublic}>
|
|
|
|
<Lock className="h-3.5 w-3.5" />
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button type="button" onClick={handleMakePrivate}>
|
|
|
|
<Globe2 className="h-3.5 w-3.5" />
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</Tooltip>
|
|
|
|
)}
|
|
|
|
<Tooltip
|
|
|
|
position="top-right"
|
2023-12-06 13:43:42 +00:00
|
|
|
tooltipContent={`Created by ${ownerDetails?.display_name} on ${renderFormattedDate(page.created_at)}`}
|
2023-12-01 10:20:01 +00:00
|
|
|
>
|
|
|
|
<AlertCircle className="h-3.5 w-3.5" />
|
|
|
|
</Tooltip>
|
2023-12-06 13:43:42 +00:00
|
|
|
<CustomMenu width="auto" placement="bottom-end" className="!-m-1" verticalEllipsis>
|
|
|
|
{page.archived_at ? (
|
|
|
|
<>
|
|
|
|
{userCanArchive && (
|
2023-12-01 10:20:01 +00:00
|
|
|
<CustomMenu.MenuItem onClick={handleRestorePage}>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<ArchiveRestoreIcon className="h-3 w-3" />
|
|
|
|
<span>Restore page</span>
|
|
|
|
</div>
|
|
|
|
</CustomMenu.MenuItem>
|
2023-12-06 13:43:42 +00:00
|
|
|
)}
|
|
|
|
{userCanDelete && (
|
2023-12-01 10:20:01 +00:00
|
|
|
<CustomMenu.MenuItem onClick={handleDeletePage}>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<Trash2 className="h-3 w-3" />
|
|
|
|
<span>Delete page</span>
|
|
|
|
</div>
|
|
|
|
</CustomMenu.MenuItem>
|
2023-12-06 13:43:42 +00:00
|
|
|
)}
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
{userCanEdit && (
|
2023-12-01 10:20:01 +00:00
|
|
|
<CustomMenu.MenuItem onClick={handleEditPage}>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<Pencil className="h-3 w-3" />
|
|
|
|
<span>Edit page</span>
|
|
|
|
</div>
|
|
|
|
</CustomMenu.MenuItem>
|
2023-12-06 13:43:42 +00:00
|
|
|
)}
|
|
|
|
{userCanArchive && (
|
2023-12-01 10:20:01 +00:00
|
|
|
<CustomMenu.MenuItem onClick={handleArchivePage}>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<Archive className="h-3 w-3" />
|
|
|
|
<span>Archive page</span>
|
|
|
|
</div>
|
|
|
|
</CustomMenu.MenuItem>
|
2023-12-06 13:43:42 +00:00
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
<CustomMenu.MenuItem onClick={handleCopyUrl}>
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<LinkIcon className="h-3 w-3" />
|
|
|
|
<span>Copy page link</span>
|
|
|
|
</div>
|
|
|
|
</CustomMenu.MenuItem>
|
|
|
|
</CustomMenu>
|
2023-11-20 16:01:12 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-12-01 10:20:01 +00:00
|
|
|
</div>
|
2023-11-20 16:01:12 +00:00
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
});
|