merging all
This commit is contained in:
parent
6fbd12d59b
commit
1e57afb1ac
@ -27,7 +27,7 @@ import { btcToSats, formatNumber } from "@/lib/utils";
|
||||
import { formatDate } from "@/lib/utils/dates";
|
||||
import SmallCalendarIcon from "@/components/EventIcons/DateIcon";
|
||||
import LocationIcon from "@/components/EventIcons/LocationIcon";
|
||||
|
||||
import BannerImage from "@/components/PageComponents/BannerImage";
|
||||
const RSVPButton = dynamic(() => import("./RSVPButton"), {
|
||||
ssr: false,
|
||||
});
|
||||
@ -128,16 +128,7 @@ export default function Header({ event }: { event: NDKEvent }) {
|
||||
<div className="relative overflow-hidden rounded-[1rem] border bg-muted p-[0.5rem] @container">
|
||||
<div className="overflow-hidden rounded-[0.5rem] p-0">
|
||||
<div className="relative w-full overflow-hidden bg-gradient-to-b from-primary pb-[50%] @5xl:rounded-[20px] md:pb-[40%]">
|
||||
{!!image && (
|
||||
<Image
|
||||
className="absolute inset-0 h-full w-full object-cover align-middle"
|
||||
src={image}
|
||||
width={400}
|
||||
height={100}
|
||||
alt="banner"
|
||||
unoptimized
|
||||
/>
|
||||
)}
|
||||
{!!image && <BannerImage image={image} />}
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-1 p-3 @sm:px-3.5 @sm:pb-2 @sm:pt-5">
|
||||
@ -154,7 +145,7 @@ export default function Header({ event }: { event: NDKEvent }) {
|
||||
{!!currentUser && currentUser.pubkey === pubkey && (
|
||||
<EditEventButton event={event.rawEvent()} />
|
||||
)}
|
||||
{!isMember && <RSVPButton eventReference={eventReference} />}
|
||||
{!isMember && <RSVPButton event={event} />}
|
||||
{/* {!isMember &&
|
||||
(hasValidPayment ? (
|
||||
<Button variant={"outline"}>Pending Sync</Button>
|
||||
|
@ -1,19 +1,146 @@
|
||||
import { useState } from "react";
|
||||
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { useModal } from "@/app/_providers/modal/provider";
|
||||
import { HiOutlineLightningBolt } from "react-icons/hi";
|
||||
|
||||
import RSVPModal from "@/components/Modals/RSVP";
|
||||
import ConfirmModal from "@/components/Modals/Confirm";
|
||||
|
||||
import { type NDKEvent } from "@nostr-dev-kit/ndk";
|
||||
import { getTagAllValues, getTagValues } from "@/lib/nostr/utils";
|
||||
import { formatDate } from "@/lib/utils/dates";
|
||||
|
||||
import { useModal } from "@/app/_providers/modal/provider";
|
||||
import { btcToSats, formatNumber } from "@/lib/utils";
|
||||
import useCurrentUser from "@/lib/hooks/useCurrentUser";
|
||||
import { useNDK } from "@/app/_providers/ndk";
|
||||
import { toast } from "sonner";
|
||||
|
||||
import { sendZap, checkPayment } from "@/lib/actions/zap";
|
||||
|
||||
type RSVPButtonProps = {
|
||||
eventReference: string;
|
||||
event: NDKEvent;
|
||||
};
|
||||
|
||||
export default function RSVPButton({ eventReference }: RSVPButtonProps) {
|
||||
export default function RSVPButton({ event }: RSVPButtonProps) {
|
||||
const modal = useModal();
|
||||
const { currentUser } = useCurrentUser();
|
||||
const { ndk } = useNDK();
|
||||
const eventReference = event.encode();
|
||||
const name = getTagValues("name", event.tags);
|
||||
const tickets = getTagValues("tickets", event.tags);
|
||||
const price = getTagAllValues("price", event.tags);
|
||||
const priceInBTC = parseFloat(getTagValues("price", event.tags) ?? "0");
|
||||
const [ticketPending, setTicketPending] = useState(false);
|
||||
const [checkingPayment, setCheckingPayment] = useState(false);
|
||||
const [hasValidPayment, setHasValidPayment] = useState(false);
|
||||
|
||||
async function handleBuyTicket() {
|
||||
setTicketPending(true);
|
||||
try {
|
||||
if (!currentUser || !ndk?.signer) return;
|
||||
|
||||
const result = await sendZap(
|
||||
ndk!,
|
||||
btcToSats(priceInBTC),
|
||||
event.rawEvent(),
|
||||
`Ticket payment: ${name}`,
|
||||
);
|
||||
toast.success("Payment Sent!");
|
||||
void handleCheckPayment();
|
||||
} catch (err) {
|
||||
console.log("error sending zap", err);
|
||||
} finally {
|
||||
setTicketPending(false);
|
||||
}
|
||||
}
|
||||
|
||||
async function handleCheckPayment() {
|
||||
if (!event || !currentUser || !ndk) return;
|
||||
setCheckingPayment(true);
|
||||
try {
|
||||
const result = await checkPayment(
|
||||
ndk,
|
||||
event.tagId(),
|
||||
currentUser.pubkey,
|
||||
event.rawEvent(),
|
||||
);
|
||||
console.log("Payment result", result);
|
||||
if (result) {
|
||||
setHasValidPayment(true);
|
||||
}
|
||||
} catch (err) {
|
||||
console.log("error sending zap", err);
|
||||
} finally {
|
||||
setCheckingPayment(false);
|
||||
}
|
||||
}
|
||||
if (!tickets) {
|
||||
return (
|
||||
<Button
|
||||
onClick={() =>
|
||||
modal?.show(<RSVPModal eventReference={eventReference} />)
|
||||
}
|
||||
>
|
||||
RSVP
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
if (price) {
|
||||
return (
|
||||
<Button
|
||||
onClick={() =>
|
||||
modal?.show(
|
||||
<ConfirmModal
|
||||
title={`Buy Ticket for ${name}`}
|
||||
onConfirm={handleBuyTicket}
|
||||
ctaBody={
|
||||
<>
|
||||
<span>Zap for Ticket</span>
|
||||
<HiOutlineLightningBolt className="h-4 w-4" />
|
||||
</>
|
||||
}
|
||||
>
|
||||
<p className="text-muted-forground">
|
||||
{`Pay ${priceInBTC} BTC (${formatNumber(
|
||||
btcToSats(priceInBTC),
|
||||
)} sats) for one ticket for ${name}`}
|
||||
</p>
|
||||
</ConfirmModal>,
|
||||
)
|
||||
}
|
||||
>
|
||||
Buy Ticket
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
return (
|
||||
<Button
|
||||
onClick={() => modal?.show(<RSVPModal eventReference={eventReference} />)}
|
||||
onClick={() =>
|
||||
modal?.show(
|
||||
<ConfirmModal
|
||||
title={`Get Ticket for ${name}`}
|
||||
onConfirm={handleBuyTicket}
|
||||
ctaBody={
|
||||
<>
|
||||
<span>Zap to Subscribe</span>
|
||||
<HiOutlineLightningBolt className="h-4 w-4" />
|
||||
</>
|
||||
}
|
||||
>
|
||||
<p className="text-muted-forground">
|
||||
{`Pay ${priceInBTC} BTC (${formatNumber(
|
||||
btcToSats(priceInBTC),
|
||||
)} sats) for year long access until ${formatDate(
|
||||
new Date(new Date().setFullYear(new Date().getFullYear() + 1)),
|
||||
"MMM Do, YYYY",
|
||||
)}`}
|
||||
</p>
|
||||
</ConfirmModal>,
|
||||
)
|
||||
}
|
||||
>
|
||||
RSVP
|
||||
Get Ticket
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
|
@ -130,3 +130,14 @@ input[type="time"]::-webkit-calendar-picker-indicator {
|
||||
background: none;
|
||||
display: none;
|
||||
}
|
||||
/* Chrome, Safari, Edge, Opera */
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Firefox */
|
||||
input[type="number"] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user