From 2c4773cbfa77ec7cb6a2b4d5bf2f122700e3b718 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Tue, 24 Sep 2024 14:27:43 +0200 Subject: Add copy CIDR button, fixes #25 --- app/page.tsx | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 94c76f6..13ce9ee 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,6 +7,7 @@ export default function Cidr() { const [ip, setIp] = useState([10, 88, 135, 144]); const [cidr, setCidr] = useState(28); const [cols] = useState(["bg-purple-400", "bg-red-400", "bg-green-400", "bg-yellow-400", "bg-slate-300"]); + const [isCopied, setIsCopied] = useState(false); const [isShared, setIsShared] = useState(false); const bits = ip.map(octet => Array.from({ length: 8 }, (_, i) => (octet >> (7 - i)) & 1)); @@ -113,6 +114,12 @@ export default function Cidr() { updateCidrString(text); } + const handleCopy = async () => { + await navigator.clipboard.writeText(pretty); + setIsCopied(true); + setTimeout(() => setIsCopied(false), 2000); + }; + const handleShare = async () => { const frag = "#" + ip.join(".") + "/" + cidr; window.location.hash = frag; @@ -194,12 +201,22 @@ export default function Cidr() {