feat: copy page link added (#915)

This commit is contained in:
Anmol Singh Bhatia 2023-04-21 15:46:28 +05:30 committed by GitHub
parent 8f12d3d01b
commit fdf7ea1f82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 62 additions and 2 deletions

View File

@ -5,10 +5,12 @@ import { useRouter } from "next/router";
// hooks
import useUser from "hooks/use-user";
import useToast from "hooks/use-toast";
// ui
import { CustomMenu, Tooltip } from "components/ui";
// icons
import {
LinkIcon,
LockClosedIcon,
LockOpenIcon,
PencilIcon,
@ -17,7 +19,7 @@ import {
} from "@heroicons/react/24/outline";
import { ExclamationIcon } from "components/icons";
// helpers
import { truncateText } from "helpers/string.helper";
import { copyTextToClipboard, truncateText } from "helpers/string.helper";
import { renderShortTime, renderShortDate, renderLongDateFormat } from "helpers/date-time.helper";
// types
import { IPage, IProjectMember } from "types";
@ -46,6 +48,22 @@ export const SinglePageDetailedItem: React.FC<TSingleStatProps> = ({
const { user } = useUser();
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.",
});
});
};
return (
<div className="relative">
<Link href={`/${workspaceSlug}/projects/${projectId}/pages/${page.id}`}>
@ -172,6 +190,18 @@ export const SinglePageDetailedItem: React.FC<TSingleStatProps> = ({
<span>Delete Page</span>
</span>
</CustomMenu.MenuItem>
<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>
</CustomMenu>
</div>
</div>

View File

@ -5,11 +5,13 @@ import { useRouter } from "next/router";
// hooks
import useUser from "hooks/use-user";
import useToast from "hooks/use-toast";
// ui
import { CustomMenu, Tooltip } from "components/ui";
// icons
import {
DocumentTextIcon,
LinkIcon,
LockClosedIcon,
LockOpenIcon,
PencilIcon,
@ -18,7 +20,7 @@ import {
} from "@heroicons/react/24/outline";
import { ExclamationIcon } from "components/icons";
// helpers
import { truncateText } from "helpers/string.helper";
import { copyTextToClipboard, truncateText } from "helpers/string.helper";
import { renderLongDateFormat, renderShortDate, renderShortTime } from "helpers/date-time.helper";
// types
import { IPage, IProjectMember } from "types";
@ -47,6 +49,22 @@ export const SinglePageListItem: React.FC<TSingleStatProps> = ({
const { user } = useUser();
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.",
});
});
};
return (
<li>
<Link href={`/${workspaceSlug}/projects/${projectId}/pages/${page.id}`}>
@ -172,6 +190,18 @@ export const SinglePageListItem: React.FC<TSingleStatProps> = ({
<span>Delete Page</span>
</span>
</CustomMenu.MenuItem>
<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>
</CustomMenu>
</div>
</div>