From e00efd03a1f8d6c5857c9bd61c4e1d34aef61aea Mon Sep 17 00:00:00 2001 From: Anubhav Singh Date: Thu, 23 Nov 2023 22:37:13 +0530 Subject: [PATCH] BUG-1566 - Add Copy functionality --- .../src/pages/builder/_components/toolbar.tsx | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/apps/client/src/pages/builder/_components/toolbar.tsx b/apps/client/src/pages/builder/_components/toolbar.tsx index 439f90b3..a2568fa4 100644 --- a/apps/client/src/pages/builder/_components/toolbar.tsx +++ b/apps/client/src/pages/builder/_components/toolbar.tsx @@ -15,11 +15,13 @@ import { import { Button, Separator, Toggle, Tooltip } from "@reactive-resume/ui"; import { motion } from "framer-motion"; +import { useToast } from "@/client/hooks/use-toast"; import { usePrintResume } from "@/client/services/resume"; import { useBuilderStore } from "@/client/stores/builder"; import { useResumeStore, useTemporalResumeStore } from "@/client/stores/resume"; export const BuilderToolbar = () => { + const { toast } = useToast(); const setValue = useResumeStore((state) => state.setValue); const undo = useTemporalResumeStore((state) => state.undo); const redo = useTemporalResumeStore((state) => state.redo); @@ -42,6 +44,17 @@ export const BuilderToolbar = () => { openInNewTab(url); }; + const onCopy = async () => { + const { url } = await printResume({ id }); + await navigator.clipboard.writeText(url); + + toast({ + variant: "success", + title: t`A link has been copied to your clipboard.`, + description: t`Anyone with this link can view and download the resume. Share it on your profile or with recruiters.`, + }); + }; + const onZoomIn = () => frameRef?.contentWindow?.postMessage({ type: "ZOOM_IN" }, "*"); const onZoomOut = () => frameRef?.contentWindow?.postMessage({ type: "ZOOM_OUT" }, "*"); const onResetView = () => frameRef?.contentWindow?.postMessage({ type: "RESET_VIEW" }, "*"); @@ -117,7 +130,13 @@ export const BuilderToolbar = () => { -