Initial commit: PodcastYes — AI podcast platform

This commit is contained in:
Leon Serfaty
2026-06-07 03:58:32 -04:00
commit 155507f21a
151 changed files with 19826 additions and 0 deletions
+78
View File
@@ -0,0 +1,78 @@
"use client";
import { useState } from "react";
import Link from "next/link";
import { Loader2, MailCheck } from "lucide-react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
import { authClient } from "@/lib/auth/auth-client";
export function ForgotPasswordForm() {
const [loading, setLoading] = useState(false);
const [sent, setSent] = useState(false);
async function onSubmit(e: React.FormEvent<HTMLFormElement>) {
e.preventDefault();
setLoading(true);
const form = new FormData(e.currentTarget);
const { error } = await authClient.requestPasswordReset({
email: String(form.get("email")),
redirectTo: "/reset-password",
});
setLoading(false);
if (error) {
toast.error(error.message ?? "Something went wrong");
return;
}
setSent(true);
}
if (sent) {
return (
<Card className="rounded-3xl shadow-md">
<CardHeader className="pb-2">
<CardTitle className="flex items-center gap-2 text-2xl">
<MailCheck className="h-6 w-6 text-brand" /> Check your inbox
</CardTitle>
<CardDescription>
If an account exists for that email, we&apos;ve sent a reset link.
</CardDescription>
</CardHeader>
<CardContent>
<Button asChild variant="outline" className="w-full">
<Link href="/sign-in">Back to sign in</Link>
</Button>
</CardContent>
</Card>
);
}
return (
<Card className="rounded-3xl shadow-md">
<CardHeader className="pb-2">
<CardTitle className="text-2xl">Forgot your password?</CardTitle>
<CardDescription>Enter your email and we&apos;ll send you a reset link.</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={onSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input id="email" name="email" type="email" autoComplete="email" required />
</div>
<Button type="submit" className="w-full" disabled={loading}>
{loading && <Loader2 className="h-4 w-4 animate-spin" />}
Send reset link
</Button>
<p className="text-center text-sm text-muted-foreground">
<Link href="/sign-in" className="font-semibold text-brand hover:underline">
Back to sign in
</Link>
</p>
</form>
</CardContent>
</Card>
);
}
+43
View File
@@ -0,0 +1,43 @@
"use client";
import { useState } from "react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
import { signIn } from "@/lib/auth/auth-client";
export function GoogleButton({ callbackURL = "/dashboard" }: { callbackURL?: string }) {
const [loading, setLoading] = useState(false);
async function handleGoogle() {
setLoading(true);
const { error } = await signIn.social({ provider: "google", callbackURL });
if (error) {
toast.error(error.message ?? "Google sign-in failed");
setLoading(false);
}
}
return (
<Button type="button" variant="outline" className="w-full" onClick={handleGoogle} disabled={loading}>
<svg className="h-4 w-4" viewBox="0 0 24 24">
<path
fill="currentColor"
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.27-4.74 3.27-8.1Z"
/>
<path
fill="currentColor"
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84A11 11 0 0 0 12 23Z"
/>
<path
fill="currentColor"
d="M5.84 14.1a6.6 6.6 0 0 1 0-4.2V7.06H2.18a11 11 0 0 0 0 9.88l3.66-2.84Z"
/>
<path
fill="currentColor"
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.06l3.66 2.84C6.71 7.3 9.14 5.38 12 5.38Z"
/>
</svg>
Continue with Google
</Button>
);
}
+81
View File
@@ -0,0 +1,81 @@
"use client";
import { useState } from "react";
import Link from "next/link";
import { useRouter, useSearchParams } from "next/navigation";
import { Loader2 } from "lucide-react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
import { authClient } from "@/lib/auth/auth-client";
export function ResetPasswordForm() {
const router = useRouter();
const params = useSearchParams();
const token = params.get("token") ?? "";
const errorParam = params.get("error");
const [loading, setLoading] = useState(false);
async function onSubmit(e: React.FormEvent<HTMLFormElement>) {
e.preventDefault();
const form = new FormData(e.currentTarget);
const newPassword = String(form.get("password"));
const confirm = String(form.get("confirm"));
if (newPassword !== confirm) {
toast.error("Passwords don't match");
return;
}
setLoading(true);
const { error } = await authClient.resetPassword({ newPassword, token });
setLoading(false);
if (error) {
toast.error(error.message ?? "Could not reset password");
return;
}
toast.success("Password updated. Please sign in.");
router.push("/sign-in");
}
if (errorParam || !token) {
return (
<Card className="rounded-3xl shadow-md">
<CardHeader className="pb-2">
<CardTitle className="text-2xl">Invalid or expired link</CardTitle>
<CardDescription>Please request a new password reset link.</CardDescription>
</CardHeader>
<CardContent>
<Button asChild className="w-full">
<Link href="/forgot-password">Request new link</Link>
</Button>
</CardContent>
</Card>
);
}
return (
<Card className="rounded-3xl shadow-md">
<CardHeader className="pb-2">
<CardTitle className="text-2xl">Set a new password</CardTitle>
<CardDescription>Choose a strong password you don&apos;t use elsewhere.</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={onSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="password">New password</Label>
<Input id="password" name="password" type="password" minLength={8} required />
</div>
<div className="space-y-2">
<Label htmlFor="confirm">Confirm password</Label>
<Input id="confirm" name="confirm" type="password" minLength={8} required />
</div>
<Button type="submit" className="w-full" disabled={loading}>
{loading && <Loader2 className="h-4 w-4 animate-spin" />}
Update password
</Button>
</form>
</CardContent>
</Card>
);
}
+86
View File
@@ -0,0 +1,86 @@
"use client";
import { useState } from "react";
import Link from "next/link";
import { useRouter, useSearchParams } from "next/navigation";
import { Loader2 } from "lucide-react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
import { signIn } from "@/lib/auth/auth-client";
import { GoogleButton } from "./google-button";
export function SignInForm({ googleEnabled }: { googleEnabled: boolean }) {
const router = useRouter();
const params = useSearchParams();
const redirectTo = params.get("redirect") || "/dashboard";
const [loading, setLoading] = useState(false);
async function onSubmit(e: React.FormEvent<HTMLFormElement>) {
e.preventDefault();
setLoading(true);
const form = new FormData(e.currentTarget);
const { error } = await signIn.email({
email: String(form.get("email")),
password: String(form.get("password")),
});
if (error) {
toast.error(error.message ?? "Invalid email or password");
setLoading(false);
return;
}
router.push(redirectTo);
router.refresh();
}
return (
<Card className="rounded-3xl shadow-md">
<CardHeader className="pb-2">
<CardTitle className="text-2xl">Welcome back</CardTitle>
<CardDescription>Sign in to your PodcastYes account.</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
{googleEnabled && (
<>
<GoogleButton callbackURL={redirectTo} />
<div className="relative">
<div className="absolute inset-0 flex items-center">
<span className="w-full border-t" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-card px-2 text-muted-foreground">or</span>
</div>
</div>
</>
)}
<form onSubmit={onSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input id="email" name="email" type="email" autoComplete="email" required />
</div>
<div className="space-y-2">
<div className="flex items-center justify-between">
<Label htmlFor="password">Password</Label>
<Link href="/forgot-password" className="text-xs text-muted-foreground hover:text-foreground">
Forgot?
</Link>
</div>
<Input id="password" name="password" type="password" autoComplete="current-password" required />
</div>
<Button type="submit" className="w-full" disabled={loading}>
{loading && <Loader2 className="h-4 w-4 animate-spin" />}
Sign in
</Button>
</form>
<p className="text-center text-sm text-muted-foreground">
Don&apos;t have an account?{" "}
<Link href="/sign-up" className="font-semibold text-brand hover:underline">
Sign up
</Link>
</p>
</CardContent>
</Card>
);
}
+93
View File
@@ -0,0 +1,93 @@
"use client";
import { useState } from "react";
import Link from "next/link";
import { useRouter } from "next/navigation";
import { Loader2 } from "lucide-react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
import { signUp } from "@/lib/auth/auth-client";
import { GoogleButton } from "./google-button";
export function SignUpForm({ googleEnabled }: { googleEnabled: boolean }) {
const router = useRouter();
const [loading, setLoading] = useState(false);
async function onSubmit(e: React.FormEvent<HTMLFormElement>) {
e.preventDefault();
setLoading(true);
const form = new FormData(e.currentTarget);
const { error } = await signUp.email({
name: String(form.get("name")),
email: String(form.get("email")),
password: String(form.get("password")),
});
if (error) {
toast.error(error.message ?? "Could not create account");
setLoading(false);
return;
}
toast.success("Account created! Welcome to PodcastYes.");
router.push("/dashboard");
router.refresh();
}
return (
<Card className="rounded-3xl shadow-md">
<CardHeader className="pb-2">
<CardTitle className="text-2xl">Create your account</CardTitle>
<CardDescription>Start producing podcasts with AI free, no card required.</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
{googleEnabled && (
<>
<GoogleButton />
<div className="relative">
<div className="absolute inset-0 flex items-center">
<span className="w-full border-t" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-card px-2 text-muted-foreground">or</span>
</div>
</div>
</>
)}
<form onSubmit={onSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name">Name</Label>
<Input id="name" name="name" autoComplete="name" required />
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input id="email" name="email" type="email" autoComplete="email" required />
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
name="password"
type="password"
autoComplete="new-password"
minLength={8}
required
/>
<p className="text-xs text-muted-foreground">At least 8 characters.</p>
</div>
<Button type="submit" className="w-full" disabled={loading}>
{loading && <Loader2 className="h-4 w-4 animate-spin" />}
Create account
</Button>
</form>
<p className="text-center text-sm text-muted-foreground">
Already have an account?{" "}
<Link href="/sign-in" className="font-semibold text-brand hover:underline">
Sign in
</Link>
</p>
</CardContent>
</Card>
);
}