mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
092e65b43d
* [WEB-1424] chore: page and view logo implementation, and emoji/icon picker improvement (#4583) * chore: added logo_props * chore: logo props in cycles, views and modules * chore: emoji icon picker types updated * chore: info icon added to plane ui package * chore: icon color adjust helper function added * style: icon picker ui improvement and default color options updated * chore: update page logo action added in store * chore: emoji code to unicode helper function added * chore: common logo renderer component added * chore: app header project logo updated * chore: project logo updated across platform * chore: page logo picker added * chore: control link component improvement * chore: list item improvement * chore: emoji picker component updated * chore: space app and package logo prop type updated * chore: migration * chore: logo added to project view * chore: page logo picker added in create modal and breadcrumbs * chore: view logo picker added in create modal and updated breadcrumbs * fix: build error * chore: AIO docker images for preview deployments (#4605) * fix: adding single docker base file * action added * fix action * dockerfile.base modified * action fix * dockerfile * fix: base aio dockerfile * fix: dockerfile.base * fix: dockerfile base * fix: modified folder structure * fix: action * fix: dockerfile * fix: dockerfile.base * fix: supervisor file name changed * fix: base dockerfile updated * fix dockerfile base * fix: base dockerfile * fix: docker files * fix: base dockerfile * update base image * modified docker aio base * aio base modified to debian-12-slim * fixes * finalize the dockerfiles with volume exposure * modified the aio build and dockerfile * fix: codacy suggestions implemented * fix: codacy fix * update aio build action --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> * fix: merge conflict * chore: lucide react added to planu ui package * chore: new emoji picker component added with lucid icon and code refactor * chore: logo component updated * chore: emoji picker updated for pages and views --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> * fix: build error --------- Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
170 lines
5.9 KiB
TypeScript
170 lines
5.9 KiB
TypeScript
import { useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
import { FileText } from "lucide-react";
|
|
// types
|
|
import { TLogoProps } from "@plane/types";
|
|
// ui
|
|
import { Breadcrumbs, Button, EmojiIconPicker, EmojiIconPickerTypes, TOAST_TYPE, setToast } from "@plane/ui";
|
|
// components
|
|
import { BreadcrumbLink, Logo } from "@/components/common";
|
|
// helper
|
|
import { convertHexEmojiToDecimal } from "@/helpers/emoji.helper";
|
|
// hooks
|
|
import { usePage, useProject } from "@/hooks/store";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
|
|
export interface IPagesHeaderProps {
|
|
showButton?: boolean;
|
|
}
|
|
|
|
export const PageDetailsHeader = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, pageId } = router.query;
|
|
// state
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
// store hooks
|
|
const { currentProjectDetails } = useProject();
|
|
const { isContentEditable, isSubmitting, name, logo_props, updatePageLogo } = usePage(pageId?.toString() ?? "");
|
|
|
|
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.",
|
|
});
|
|
});
|
|
}
|
|
};
|
|
// use platform
|
|
const { platform } = usePlatformOS();
|
|
// derived values
|
|
const isMac = platform === "MacOS";
|
|
|
|
return (
|
|
<div className="relative z-10 flex h-[3.75rem] w-full flex-shrink-0 flex-row items-center justify-between gap-x-2 gap-y-4 bg-custom-sidebar-background-100 p-4">
|
|
<div className="flex w-full flex-grow items-center gap-2 overflow-ellipsis whitespace-nowrap">
|
|
<div>
|
|
<Breadcrumbs>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<span>
|
|
<span className="hidden md:block">
|
|
<BreadcrumbLink
|
|
href={`/${workspaceSlug}/projects/${currentProjectDetails?.id}/issues`}
|
|
label={currentProjectDetails?.name ?? "Project"}
|
|
icon={
|
|
currentProjectDetails && (
|
|
<span className="grid h-4 w-4 flex-shrink-0 place-items-center">
|
|
<Logo logo={currentProjectDetails?.logo_props} size={16} />
|
|
</span>
|
|
)
|
|
}
|
|
/>
|
|
</span>
|
|
<span className="md:hidden">
|
|
<BreadcrumbLink
|
|
href={`/${workspaceSlug}/projects/${currentProjectDetails?.id}/issues`}
|
|
label={"..."}
|
|
/>
|
|
</span>
|
|
</span>
|
|
}
|
|
/>
|
|
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
href={`/${workspaceSlug}/projects/${currentProjectDetails?.id}/pages`}
|
|
label="Pages"
|
|
icon={<FileText className="h-4 w-4 text-custom-text-300" />}
|
|
/>
|
|
}
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
link={
|
|
<BreadcrumbLink
|
|
label={name ?? "Page"}
|
|
icon={
|
|
<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
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
}
|
|
/>
|
|
</Breadcrumbs>
|
|
</div>
|
|
</div>
|
|
{isContentEditable && (
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
onClick={() => {
|
|
// ctrl/cmd + s to save the changes
|
|
const event = new KeyboardEvent("keydown", {
|
|
key: "s",
|
|
ctrlKey: !isMac,
|
|
metaKey: isMac,
|
|
});
|
|
window.dispatchEvent(event);
|
|
}}
|
|
className="flex-shrink-0"
|
|
loading={isSubmitting === "submitting"}
|
|
>
|
|
{isSubmitting === "submitting" ? "Saving" : "Save changes"}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|