"use client"; import { useState, useEffect, type FormEvent } from "react"; import { createPortal } from "react-dom"; import { useLocale } from "@/i18n/navigation"; import { getPayEnv, redirectToPay, getDeviceFromEnv, } from "@/app/lib/payment"; import type { PayChannel, PayEnv } from "@/app/lib/payment"; interface JoinModalProps { isOpen: boolean; onClose: () => void; initialEmail?: string; /** 仅登录(已有 VIP 用户验证密码后直接登录,不跳转支付) */ vipOnly?: boolean; } export default function JoinModal({ isOpen, onClose, initialEmail = "", vipOnly = false }: JoinModalProps) { const locale = useLocale(); const [email, setEmail] = useState(initialEmail); const [password, setPassword] = useState(""); const [loading, setLoading] = useState(false); const [error, setError] = useState(null); useEffect(() => { if (isOpen) { setEmail(initialEmail); setPassword(""); setError(null); } }, [isOpen, initialEmail]); const handleSubmit = async (e: FormEvent) => { e.preventDefault(); if (loading) return; const em = email.trim(); if (!em) { setError(locale === "zh" ? "请输入邮箱" : "Please enter your email"); return; } setError(null); setLoading(true); try { const res = await fetch("/api/meetup/ensure-user", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ email: em, password: password || undefined }), credentials: "include", }); const data = await res.json(); if (!res.ok || !data?.ok) { throw new Error(data?.error || (locale === "zh" ? "操作失败" : "Operation failed")); } if (data.is_new) { await fetch("/api/meetup/set-needs-password-change", { method: "POST", credentials: "include" }); } const { pbSaveAuth } = await import("@/app/lib/pocketbase"); pbSaveAuth(data.token, data.record); await fetch("/api/auth/sync-session", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ token: data.token, record: data.record }), credentials: "include", }); if (typeof window !== "undefined") { window.dispatchEvent(new CustomEvent("auth:updated")); } if (vipOnly) { onClose(); return; } const returnUrl = typeof window !== "undefined" ? `${window.location.origin}/${locale}/join/paid` : "/zh/join/paid"; const env = getPayEnv(); const channel: PayChannel = "wxpay"; redirectToPay({ user_id: data.user_id, return_url: returnUrl, channel, device: getDeviceFromEnv(env), useJoinConfig: true, }); } catch (err) { setError(err instanceof Error ? err.message : "操作失败"); } finally { setLoading(false); } }; const [mounted, setMounted] = useState(false); useEffect(() => setMounted(true), []); if (!isOpen || !mounted) return null; const modalContent = (

{vipOnly ? (locale === "zh" ? "验证密码登录" : "Verify password to login") : (locale === "zh" ? "加入游牧中国" : "Join Nomad China")}

{ setEmail(e.target.value); setError(null); }} placeholder={locale === "zh" ? "输入你的邮箱..." : "Enter your email..."} required className="w-full rounded-lg border border-gray-200 px-4 py-2.5 text-gray-800 placeholder-gray-400 focus:border-[#ff4d4f] focus:outline-none focus:ring-1 focus:ring-[#ff4d4f] dark:border-gray-600 dark:bg-gray-800 dark:text-gray-100" />
{ setPassword(e.target.value); setError(null); }} placeholder={locale === "zh" ? "请输入密码" : "Enter your password"} className="w-full rounded-lg border border-gray-200 px-4 py-2.5 text-gray-800 placeholder-gray-400 focus:border-[#ff4d4f] focus:outline-none focus:ring-1 focus:ring-[#ff4d4f] dark:border-gray-600 dark:bg-gray-800 dark:text-gray-100" />
{error && (

{error}

)}
); return createPortal(modalContent, document.body); }