2024-05-31 08:57:52 +00:00
|
|
|
import { FC, useRef, useState } from "react";
|
2024-04-11 15:58:59 +00:00
|
|
|
import { observer } from "mobx-react";
|
2024-05-31 08:57:52 +00:00
|
|
|
import { FileText } from "lucide-react";
|
|
|
|
// types
|
|
|
|
import { TLogoProps } from "@plane/types";
|
|
|
|
// ui
|
|
|
|
import { EmojiIconPicker, EmojiIconPickerTypes, TOAST_TYPE, setToast } from "@plane/ui";
|
2024-04-11 15:58:59 +00:00
|
|
|
// components
|
2024-05-31 08:57:52 +00:00
|
|
|
import { Logo } from "@/components/common";
|
2024-04-30 11:51:24 +00:00
|
|
|
import { ListItem } from "@/components/core/list";
|
|
|
|
import { BlockItemAction } from "@/components/pages/list";
|
2024-05-17 07:26:44 +00:00
|
|
|
// helpers
|
2024-05-31 08:57:52 +00:00
|
|
|
import { convertHexEmojiToDecimal } from "@/helpers/emoji.helper";
|
2024-05-17 07:26:44 +00:00
|
|
|
import { getPageName } from "@/helpers/page.helper";
|
2024-04-11 15:58:59 +00:00
|
|
|
// hooks
|
2024-04-30 11:51:24 +00:00
|
|
|
import { usePage } from "@/hooks/store";
|
|
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
2024-04-11 15:58:59 +00:00
|
|
|
|
|
|
|
type TPageListBlock = {
|
|
|
|
workspaceSlug: string;
|
|
|
|
projectId: string;
|
|
|
|
pageId: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const PageListBlock: FC<TPageListBlock> = observer((props) => {
|
|
|
|
const { workspaceSlug, projectId, pageId } = props;
|
2024-04-30 13:29:07 +00:00
|
|
|
// refs
|
|
|
|
const parentRef = useRef(null);
|
2024-05-31 08:57:52 +00:00
|
|
|
// state
|
|
|
|
const [isOpen, setIsOpen] = useState(false);
|
2024-04-11 15:58:59 +00:00
|
|
|
// hooks
|
2024-05-31 08:57:52 +00:00
|
|
|
const { name, logo_props, updatePageLogo } = usePage(pageId);
|
2024-04-30 11:51:24 +00:00
|
|
|
const { isMobile } = usePlatformOS();
|
2024-04-11 15:58:59 +00:00
|
|
|
|
2024-05-31 08:57:52 +00:00
|
|
|
const handlePageLogoUpdate = async (data: TLogoProps) => {
|
|
|
|
if (data) {
|
|
|
|
updatePageLogo(data)
|
|
|
|
.then(() => {
|
|
|
|
setToast({
|
|
|
|
type: TOAST_TYPE.SUCCESS,
|
|
|
|
title: "Success!",
|
|
|
|
message: "Logo Updated successfully.",
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setToast({
|
|
|
|
type: TOAST_TYPE.ERROR,
|
|
|
|
title: "Error!",
|
|
|
|
message: "Something went wrong. Please try again.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-04-11 15:58:59 +00:00
|
|
|
return (
|
2024-04-30 11:51:24 +00:00
|
|
|
<ListItem
|
2024-05-31 08:57:52 +00:00
|
|
|
prependTitleElement={
|
|
|
|
<>
|
|
|
|
<EmojiIconPicker
|
|
|
|
isOpen={isOpen}
|
|
|
|
handleToggle={(val: boolean) => setIsOpen(val)}
|
|
|
|
className="flex items-center justify-center"
|
|
|
|
buttonClassName="flex items-center justify-center"
|
|
|
|
label={
|
|
|
|
<>
|
|
|
|
{logo_props?.in_use ? (
|
|
|
|
<Logo logo={logo_props} size={16} type="lucide" />
|
|
|
|
) : (
|
|
|
|
<FileText className="h-4 w-4 text-custom-text-300" />
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
onChange={(val) => {
|
|
|
|
let logoValue = {};
|
|
|
|
|
|
|
|
if (val?.type === "emoji")
|
|
|
|
logoValue = {
|
|
|
|
value: convertHexEmojiToDecimal(val.value.unified),
|
|
|
|
url: val.value.imageUrl,
|
|
|
|
};
|
|
|
|
else if (val?.type === "icon") logoValue = val.value;
|
|
|
|
|
|
|
|
handlePageLogoUpdate({
|
|
|
|
in_use: val?.type,
|
|
|
|
[val?.type]: logoValue,
|
|
|
|
}).finally(() => setIsOpen(false));
|
|
|
|
}}
|
|
|
|
defaultIconColor={logo_props?.in_use && logo_props.in_use === "icon" ? logo_props?.icon?.color : undefined}
|
|
|
|
defaultOpen={
|
|
|
|
logo_props?.in_use && logo_props?.in_use === "emoji"
|
|
|
|
? EmojiIconPickerTypes.EMOJI
|
|
|
|
: EmojiIconPickerTypes.ICON
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
}
|
2024-05-17 07:26:44 +00:00
|
|
|
title={getPageName(name)}
|
2024-04-30 11:51:24 +00:00
|
|
|
itemLink={`/${workspaceSlug}/projects/${projectId}/pages/${pageId}`}
|
2024-05-17 07:26:44 +00:00
|
|
|
actionableItems={
|
|
|
|
<BlockItemAction workspaceSlug={workspaceSlug} projectId={projectId} pageId={pageId} parentRef={parentRef} />
|
|
|
|
}
|
2024-04-30 11:51:24 +00:00
|
|
|
isMobile={isMobile}
|
2024-04-30 13:29:07 +00:00
|
|
|
parentRef={parentRef}
|
2024-05-31 08:57:52 +00:00
|
|
|
disableLink={isOpen}
|
2024-04-30 11:51:24 +00:00
|
|
|
/>
|
2024-04-11 15:58:59 +00:00
|
|
|
);
|
|
|
|
});
|