forked from github/plane
111 lines
3.8 KiB
TypeScript
111 lines
3.8 KiB
TypeScript
|
import { FC } from "react";
|
||
|
import { observer } from "mobx-react";
|
||
|
import Link from "next/link";
|
||
|
import { Circle, Info, Lock, Minus, Star, UsersRound } from "lucide-react";
|
||
|
import { Avatar, TOAST_TYPE, Tooltip, setToast } from "@plane/ui";
|
||
|
// components
|
||
|
import { PageQuickActions } from "@/components/pages";
|
||
|
// helpers
|
||
|
import { cn } from "@/helpers/common.helper";
|
||
|
import { renderFormattedDate } from "@/helpers/date-time.helper";
|
||
|
// hooks
|
||
|
import { useMember, usePage } from "@/hooks/store";
|
||
|
|
||
|
type TPageListBlock = {
|
||
|
workspaceSlug: string;
|
||
|
projectId: string;
|
||
|
pageId: string;
|
||
|
};
|
||
|
|
||
|
export const PageListBlock: FC<TPageListBlock> = observer((props) => {
|
||
|
const { workspaceSlug, projectId, pageId } = props;
|
||
|
// hooks
|
||
|
const { access, created_at, is_favorite, name, owned_by, addToFavorites, removeFromFavorites } = usePage(pageId);
|
||
|
const { getUserDetails } = useMember();
|
||
|
// derived values
|
||
|
const ownerDetails = owned_by ? getUserDetails(owned_by) : undefined;
|
||
|
|
||
|
const handleFavorites = () => {
|
||
|
if (is_favorite)
|
||
|
removeFromFavorites().then(() =>
|
||
|
setToast({
|
||
|
type: TOAST_TYPE.SUCCESS,
|
||
|
title: "Success!",
|
||
|
message: "Page removed from favorites.",
|
||
|
})
|
||
|
);
|
||
|
else
|
||
|
addToFavorites().then(() =>
|
||
|
setToast({
|
||
|
type: TOAST_TYPE.SUCCESS,
|
||
|
title: "Success!",
|
||
|
message: "Page added to favorites.",
|
||
|
})
|
||
|
);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Link
|
||
|
href={`/${workspaceSlug}/projects/${projectId}/pages/${pageId}`}
|
||
|
className="flex items-center justify-between gap-5 py-7 px-6 hover:bg-custom-background-90"
|
||
|
>
|
||
|
{/* page title */}
|
||
|
<Tooltip tooltipHeading="Title" tooltipContent={name}>
|
||
|
<h5 className="text-base font-semibold truncate">{name}</h5>
|
||
|
</Tooltip>
|
||
|
|
||
|
{/* page properties */}
|
||
|
<div className="flex items-center gap-5 flex-shrink-0">
|
||
|
{/* page details */}
|
||
|
<div className="flex items-center gap-2 text-custom-text-400">
|
||
|
{/* <span className="text-xs">Labels</span>
|
||
|
<Circle className="h-1 w-1 fill-custom-text-300" /> */}
|
||
|
<div className="cursor-default">
|
||
|
<Tooltip tooltipHeading="Owned by" tooltipContent={ownerDetails?.display_name}>
|
||
|
<Avatar src={ownerDetails?.avatar} name={ownerDetails?.display_name} />
|
||
|
</Tooltip>
|
||
|
</div>
|
||
|
<Circle className="h-1 w-1 fill-custom-text-300" />
|
||
|
{/* <span className="text-xs cursor-default">10m read</span>
|
||
|
<Circle className="h-1 w-1 fill-custom-text-300" /> */}
|
||
|
<div className="cursor-default">
|
||
|
<Tooltip tooltipContent={access === 0 ? "Public" : "Private"}>
|
||
|
{access === 0 ? <UsersRound className="h-3 w-3" /> : <Lock className="h-3 w-3" />}
|
||
|
</Tooltip>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{/* vertical divider */}
|
||
|
<Minus className="h-5 w-5 text-custom-text-400 rotate-90 -mx-3" strokeWidth={1} />
|
||
|
|
||
|
{/* page info */}
|
||
|
<Tooltip tooltipContent={`Created on ${renderFormattedDate(created_at)}`}>
|
||
|
<span className="h-4 w-4 grid place-items-center cursor-default">
|
||
|
<Info className="h-4 w-4 text-custom-text-300" />
|
||
|
</span>
|
||
|
</Tooltip>
|
||
|
|
||
|
{/* favorite/unfavorite */}
|
||
|
<button
|
||
|
type="button"
|
||
|
className="h-4 w-4 grid place-items-center"
|
||
|
onClick={(e) => {
|
||
|
e.preventDefault();
|
||
|
e.stopPropagation();
|
||
|
handleFavorites();
|
||
|
}}
|
||
|
>
|
||
|
<Star
|
||
|
className={cn("h-4 w-4 text-custom-text-300 transition-all", {
|
||
|
"fill-yellow-500 stroke-yellow-500": is_favorite,
|
||
|
})}
|
||
|
/>
|
||
|
</button>
|
||
|
|
||
|
{/* quick actions dropdown */}
|
||
|
<PageQuickActions pageId={pageId} projectId={projectId} workspaceSlug={workspaceSlug} />
|
||
|
</div>
|
||
|
</Link>
|
||
|
);
|
||
|
});
|