implementirano kopiranje linka

This commit is contained in:
2024-12-13 15:38:48 +01:00
parent 6d45892108
commit 439de9d305
2 changed files with 16 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
'use client';
import { Cog8ToothIcon, PlusCircleIcon } from "@heroicons/react/24/outline";
import { Cog8ToothIcon, PlusCircleIcon, LinkIcon } from "@heroicons/react/24/outline";
import { FC } from "react";
import { BillBadge } from "./BillBadge";
import { BillingLocation } from "../lib/db-types";
@@ -8,6 +8,7 @@ import { formatYearMonth } from "../lib/format";
import { formatCurrency } from "../lib/formatStrings";
import Link from "next/link";
import { useTranslations } from "next-intl";
import { toast, useToast } from "react-toastify";
export interface LocationCardProps {
location: BillingLocation
@@ -19,6 +20,15 @@ export const LocationCard:FC<LocationCardProps> = ({location: { _id, name, yearM
// sum all the billAmounts
const monthlyExpense = bills.reduce((acc, bill) => bill.paid ? acc + (bill.payedAmount ?? 0) : acc, 0);
const handleCopyLinkClick = () => {
// copy URL to clipboard
const url = `${window.location.origin}/share/location/${_id}`;
navigator.clipboard.writeText(url);
// use NextJS toast to notiy user that the link was copied
toast.success(t("link-copy-message"), {theme: "dark"});
}
return(
<div data-key={_id } className="card card-compact card-bordered max-w-[30em] bg-base-100 border-1 border-neutral my-1">
@@ -42,6 +52,8 @@ export const LocationCard:FC<LocationCardProps> = ({location: { _id, name, yearM
</p>
: null
}
<LinkIcon className="h-[1em] w-[1em] cursor-pointer text-2xl inline-block hover:text-red-500" title="create sharable link" style={{ position: "absolute", bottom: ".5em", right: "1.2em" }} onClick={handleCopyLinkClick} />
</div>
</div>);
};