2023-03-23 05:31:06 +00:00
|
|
|
import React from "react";
|
2023-03-25 18:09:46 +00:00
|
|
|
|
2023-03-23 05:31:06 +00:00
|
|
|
import Link from "next/link";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
2023-04-11 06:40:22 +00:00
|
|
|
// hooks
|
|
|
|
import useUser from "hooks/use-user";
|
2023-04-21 10:16:28 +00:00
|
|
|
import useToast from "hooks/use-toast";
|
2023-03-23 05:31:06 +00:00
|
|
|
// ui
|
2023-03-25 18:09:46 +00:00
|
|
|
import { CustomMenu, Tooltip } from "components/ui";
|
2023-03-23 05:31:06 +00:00
|
|
|
// icons
|
2023-04-03 18:00:29 +00:00
|
|
|
import {
|
2023-04-20 06:39:48 +00:00
|
|
|
DocumentTextIcon,
|
2023-04-21 10:16:28 +00:00
|
|
|
LinkIcon,
|
2023-04-03 18:00:29 +00:00
|
|
|
LockClosedIcon,
|
|
|
|
LockOpenIcon,
|
|
|
|
PencilIcon,
|
|
|
|
StarIcon,
|
|
|
|
TrashIcon,
|
|
|
|
} from "@heroicons/react/24/outline";
|
2023-04-20 06:39:48 +00:00
|
|
|
import { ExclamationIcon } from "components/icons";
|
2023-03-23 05:31:06 +00:00
|
|
|
// helpers
|
2023-04-21 10:16:28 +00:00
|
|
|
import { copyTextToClipboard, truncateText } from "helpers/string.helper";
|
2023-04-12 12:37:50 +00:00
|
|
|
import { renderLongDateFormat, renderShortDate, renderShortTime } from "helpers/date-time.helper";
|
2023-03-23 05:31:06 +00:00
|
|
|
// types
|
2023-04-12 12:37:50 +00:00
|
|
|
import { IPage, IProjectMember } from "types";
|
2023-03-23 05:31:06 +00:00
|
|
|
|
|
|
|
type TSingleStatProps = {
|
|
|
|
page: IPage;
|
2023-04-12 12:37:50 +00:00
|
|
|
people: IProjectMember[] | undefined;
|
2023-03-23 05:31:06 +00:00
|
|
|
handleEditPage: () => void;
|
|
|
|
handleDeletePage: () => void;
|
2023-03-25 18:09:46 +00:00
|
|
|
handleAddToFavorites: () => void;
|
|
|
|
handleRemoveFromFavorites: () => void;
|
2023-04-03 18:00:29 +00:00
|
|
|
partialUpdatePage: (page: IPage, formData: Partial<IPage>) => void;
|
2023-03-23 05:31:06 +00:00
|
|
|
};
|
|
|
|
|
2023-03-25 18:09:46 +00:00
|
|
|
export const SinglePageListItem: React.FC<TSingleStatProps> = ({
|
|
|
|
page,
|
2023-04-12 12:37:50 +00:00
|
|
|
people,
|
2023-03-25 18:09:46 +00:00
|
|
|
handleEditPage,
|
|
|
|
handleDeletePage,
|
|
|
|
handleAddToFavorites,
|
|
|
|
handleRemoveFromFavorites,
|
2023-04-03 18:00:29 +00:00
|
|
|
partialUpdatePage,
|
2023-03-25 18:09:46 +00:00
|
|
|
}) => {
|
2023-03-23 05:31:06 +00:00
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
|
2023-04-11 06:40:22 +00:00
|
|
|
const { user } = useUser();
|
|
|
|
|
2023-04-21 10:16:28 +00:00
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
|
|
|
|
const handleCopyText = () => {
|
|
|
|
const originURL =
|
|
|
|
typeof window !== "undefined" && window.location.origin ? window.location.origin : "";
|
|
|
|
copyTextToClipboard(
|
|
|
|
`${originURL}/${workspaceSlug}/projects/${projectId}/pages/${page.id}`
|
|
|
|
).then(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Link Copied!",
|
|
|
|
message: "Page link copied to clipboard.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-03-23 05:31:06 +00:00
|
|
|
return (
|
2023-03-25 18:09:46 +00:00
|
|
|
<li>
|
2023-03-27 17:49:05 +00:00
|
|
|
<Link href={`/${workspaceSlug}/projects/${projectId}/pages/${page.id}`}>
|
|
|
|
<a>
|
2023-04-20 20:45:21 +00:00
|
|
|
<div className="relative rounded p-4 text-brand-secondary hover:bg-brand-base">
|
2023-03-27 17:49:05 +00:00
|
|
|
<div className="flex items-center justify-between">
|
2023-04-20 06:39:48 +00:00
|
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
|
|
<DocumentTextIcon className="h-4 w-4" />
|
2023-04-20 20:45:21 +00:00
|
|
|
<p className="mr-2 truncate text-sm text-brand-base">
|
2023-04-11 12:48:49 +00:00
|
|
|
{truncateText(page.name, 75)}
|
|
|
|
</p>
|
2023-03-27 17:49:05 +00:00
|
|
|
{page.label_details.length > 0 &&
|
|
|
|
page.label_details.map((label) => (
|
|
|
|
<div
|
|
|
|
key={label.id}
|
2023-04-20 08:11:24 +00:00
|
|
|
className="group flex items-center gap-1 rounded-2xl border border-brand-base px-2 py-0.5 text-xs"
|
2023-03-27 17:49:05 +00:00
|
|
|
style={{
|
2023-04-20 20:45:21 +00:00
|
|
|
backgroundColor: `${label?.color}20`,
|
2023-03-27 17:49:05 +00:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
<span
|
|
|
|
className="h-1.5 w-1.5 flex-shrink-0 rounded-full"
|
|
|
|
style={{
|
2023-04-20 20:45:21 +00:00
|
|
|
backgroundColor: label?.color,
|
2023-03-27 17:49:05 +00:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
{label.name}
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
<div className="ml-2 flex flex-shrink-0">
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<Tooltip
|
2023-04-12 12:37:50 +00:00
|
|
|
tooltipContent={`Last updated at ${renderShortTime(
|
|
|
|
page.updated_at
|
|
|
|
)} on ${renderShortDate(page.updated_at)}`}
|
2023-03-27 17:49:05 +00:00
|
|
|
>
|
|
|
|
<p className="text-sm text-gray-400">{renderShortTime(page.updated_at)}</p>
|
|
|
|
</Tooltip>
|
|
|
|
{page.is_favorite ? (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
handleRemoveFromFavorites();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<StarIcon className="h-4 w-4 text-orange-400" fill="#f6ad55" />
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
handleAddToFavorites();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<StarIcon className="h-4 w-4 " color="#858e96" />
|
|
|
|
</button>
|
|
|
|
)}
|
2023-04-11 06:40:22 +00:00
|
|
|
{page.created_by === user?.id && (
|
|
|
|
<Tooltip
|
|
|
|
tooltipContent={`${
|
|
|
|
page.access
|
|
|
|
? "This page is only visible to you."
|
|
|
|
: "This page can be viewed by anyone in the project."
|
|
|
|
}`}
|
|
|
|
theme="dark"
|
2023-04-03 18:00:29 +00:00
|
|
|
>
|
2023-04-11 06:40:22 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
partialUpdatePage(page, { access: page.access ? 0 : 1 });
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{page.access ? (
|
|
|
|
<LockClosedIcon className="h-4 w-4" color="#858e96" />
|
|
|
|
) : (
|
|
|
|
<LockOpenIcon className="h-4 w-4" color="#858e96" />
|
|
|
|
)}
|
|
|
|
</button>
|
|
|
|
</Tooltip>
|
|
|
|
)}
|
2023-04-12 12:37:50 +00:00
|
|
|
<Tooltip
|
|
|
|
theme="dark"
|
|
|
|
position="top-right"
|
|
|
|
tooltipContent={`Created by ${
|
|
|
|
people?.find((person) => person.member.id === page.created_by)?.member
|
|
|
|
.first_name ?? ""
|
|
|
|
} on ${renderLongDateFormat(`${page.created_at}`)}`}
|
|
|
|
>
|
|
|
|
<span>
|
|
|
|
<ExclamationIcon className="h-4 w-4 text-gray-400" />
|
|
|
|
</span>
|
|
|
|
</Tooltip>
|
2023-04-11 06:40:22 +00:00
|
|
|
|
2023-03-27 17:49:05 +00:00
|
|
|
<CustomMenu width="auto" verticalEllipsis>
|
|
|
|
<CustomMenu.MenuItem
|
|
|
|
onClick={(e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
handleEditPage();
|
|
|
|
}}
|
|
|
|
>
|
2023-03-31 10:33:25 +00:00
|
|
|
<span className="flex items-center justify-start gap-2">
|
2023-03-27 17:49:05 +00:00
|
|
|
<PencilIcon className="h-3.5 w-3.5" />
|
|
|
|
<span>Edit Page</span>
|
|
|
|
</span>
|
|
|
|
</CustomMenu.MenuItem>
|
|
|
|
<CustomMenu.MenuItem
|
|
|
|
onClick={(e: any) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
handleDeletePage();
|
|
|
|
}}
|
|
|
|
>
|
2023-03-31 10:33:25 +00:00
|
|
|
<span className="flex items-center justify-start gap-2">
|
2023-03-27 17:49:05 +00:00
|
|
|
<TrashIcon className="h-3.5 w-3.5" />
|
|
|
|
<span>Delete Page</span>
|
|
|
|
</span>
|
|
|
|
</CustomMenu.MenuItem>
|
2023-04-21 10:16:28 +00:00
|
|
|
<CustomMenu.MenuItem
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
handleCopyText();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div className="flex items-center justify-start gap-2">
|
|
|
|
<LinkIcon className="h-4 w-4" />
|
|
|
|
<span>Copy Page link</span>
|
|
|
|
</div>
|
|
|
|
</CustomMenu.MenuItem>
|
2023-03-27 17:49:05 +00:00
|
|
|
</CustomMenu>
|
2023-03-25 18:09:46 +00:00
|
|
|
</div>
|
2023-03-27 17:49:05 +00:00
|
|
|
</div>
|
2023-03-23 05:31:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-27 17:49:05 +00:00
|
|
|
</a>
|
|
|
|
</Link>
|
2023-03-25 18:09:46 +00:00
|
|
|
</li>
|
2023-03-23 05:31:06 +00:00
|
|
|
);
|
|
|
|
};
|