mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-19 11:12:00 +10:00
91 lines
3.0 KiB
TypeScript
91 lines
3.0 KiB
TypeScript
import { t } from "@lingui/macro";
|
|
import { CopySimple } from "@phosphor-icons/react";
|
|
import { Button, Input, Label, Switch, Tooltip } from "@reactive-resume/ui";
|
|
import { AnimatePresence, motion } from "framer-motion";
|
|
|
|
import { useToast } from "@/client/hooks/use-toast";
|
|
import { useUser } from "@/client/services/user";
|
|
import { useResumeStore } from "@/client/stores/resume";
|
|
|
|
import { getSectionIcon } from "../shared/section-icon";
|
|
|
|
export const SharingSection = () => {
|
|
const { user } = useUser();
|
|
const { toast } = useToast();
|
|
const username = user?.username;
|
|
|
|
const setValue = useResumeStore((state) => state.setValue);
|
|
const slug = useResumeStore((state) => state.resume.slug);
|
|
const isPublic = useResumeStore((state) => state.resume.visibility === "public");
|
|
|
|
// Constants
|
|
const url = `${window.location.origin}/${username}/${slug}`;
|
|
|
|
const onCopy = async () => {
|
|
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.`,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<section id="sharing" className="grid gap-y-6">
|
|
<header className="flex items-center justify-between">
|
|
<div className="flex items-center gap-x-4">
|
|
{getSectionIcon("sharing")}
|
|
<h2 className="line-clamp-1 text-3xl font-bold">{t`Sharing`}</h2>
|
|
</div>
|
|
</header>
|
|
|
|
<main className="grid gap-y-4">
|
|
<div className="space-y-1.5">
|
|
<div className="flex items-center gap-x-4">
|
|
<Switch
|
|
id="visibility"
|
|
checked={isPublic}
|
|
onCheckedChange={(checked) => {
|
|
setValue("visibility", checked ? "public" : "private");
|
|
}}
|
|
/>
|
|
<div>
|
|
<Label htmlFor="visibility" className="space-y-1">
|
|
<p>{t`Public`}</p>
|
|
<p className="text-xs opacity-60">
|
|
{t`Anyone with the link can view and download the resume.`}
|
|
</p>
|
|
</Label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<AnimatePresence presenceAffectsLayout>
|
|
{isPublic && (
|
|
<motion.div
|
|
layout
|
|
className="space-y-1.5"
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
exit={{ opacity: 0 }}
|
|
>
|
|
<Label htmlFor="resume-url">{t`URL`}</Label>
|
|
|
|
<div className="flex gap-x-1.5">
|
|
<Input readOnly id="resume-url" value={url} className="flex-1" />
|
|
|
|
<Tooltip content={t`Copy to Clipboard`}>
|
|
<Button size="icon" variant="ghost" onClick={onCopy}>
|
|
<CopySimple />
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
</motion.div>
|
|
)}
|
|
</AnimatePresence>
|
|
</main>
|
|
</section>
|
|
);
|
|
};
|