forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
126 lines
3.2 KiB
TypeScript
126 lines
3.2 KiB
TypeScript
import Link from "next/link";
|
|
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { CustomSelect, Icon } from "components/ui";
|
|
// icons
|
|
import { East, OpenInFull } from "@mui/icons-material";
|
|
// helpers
|
|
import { copyTextToClipboard } from "helpers/string.helper";
|
|
// types
|
|
import { IIssue } from "types";
|
|
import { TPeekOverviewModes } from "./layout";
|
|
|
|
type Props = {
|
|
handleClose: () => void;
|
|
handleDeleteIssue: () => void;
|
|
issue: IIssue | undefined;
|
|
mode: TPeekOverviewModes;
|
|
setMode: (mode: TPeekOverviewModes) => void;
|
|
workspaceSlug: string;
|
|
};
|
|
|
|
const peekModes: {
|
|
key: TPeekOverviewModes;
|
|
icon: string;
|
|
label: string;
|
|
}[] = [
|
|
{ key: "side", icon: "side_navigation", label: "Side Peek" },
|
|
{
|
|
key: "modal",
|
|
icon: "dialogs",
|
|
label: "Modal Peek",
|
|
},
|
|
{
|
|
key: "full",
|
|
icon: "nearby",
|
|
label: "Full Screen Peek",
|
|
},
|
|
];
|
|
|
|
export const PeekOverviewHeader: React.FC<Props> = ({
|
|
issue,
|
|
handleClose,
|
|
handleDeleteIssue,
|
|
mode,
|
|
setMode,
|
|
workspaceSlug,
|
|
}) => {
|
|
const { setToastAlert } = useToast();
|
|
|
|
const handleCopyLink = () => {
|
|
const urlToCopy = window.location.href;
|
|
|
|
copyTextToClipboard(urlToCopy).then(() => {
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Link copied!",
|
|
message: "Issue link copied to clipboard",
|
|
});
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="flex justify-between items-center">
|
|
<div className="flex items-center gap-4">
|
|
{mode === "side" && (
|
|
<button type="button" onClick={handleClose}>
|
|
<East
|
|
sx={{
|
|
fontSize: "14px",
|
|
}}
|
|
/>
|
|
</button>
|
|
)}
|
|
<Link href={`/${workspaceSlug}/projects/${issue?.project}/issues/${issue?.id}`}>
|
|
<a>
|
|
<OpenInFull
|
|
sx={{
|
|
fontSize: "14px",
|
|
}}
|
|
/>
|
|
</a>
|
|
</Link>
|
|
<CustomSelect
|
|
value={mode}
|
|
onChange={(val: TPeekOverviewModes) => setMode(val)}
|
|
customButton={
|
|
<button
|
|
type="button"
|
|
className={`grid place-items-center ${mode === "full" ? "rotate-45" : ""}`}
|
|
>
|
|
<Icon iconName={peekModes.find((m) => m.key === mode)?.icon ?? ""} />
|
|
</button>
|
|
}
|
|
position="left"
|
|
>
|
|
{peekModes.map((mode) => (
|
|
<CustomSelect.Option key={mode.key} value={mode.key}>
|
|
<div className="flex items-center gap-1.5">
|
|
<Icon
|
|
iconName={mode.icon}
|
|
className={`!text-base flex-shrink-0 -my-1 ${
|
|
mode.key === "full" ? "rotate-45" : ""
|
|
}`}
|
|
/>
|
|
{mode.label}
|
|
</div>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
</div>
|
|
{(mode === "side" || mode === "modal") && (
|
|
<div className="flex items-center gap-2 flex-shrink-0">
|
|
<button type="button" onClick={handleCopyLink} className="-rotate-45">
|
|
<Icon iconName="link" />
|
|
</button>
|
|
<button type="button" onClick={handleDeleteIssue}>
|
|
<Icon iconName="delete" />
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|