-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from emiliosheinz/feat/email-signin
feat: email magic link sign in
- Loading branch information
Showing
17 changed files
with
494 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,16 @@ DATABASE_URL="postgresql://postgres:password@localhost:5432/sos-pet" | |
NEXTAUTH_URL="http://localhost:3000" | ||
NEXTAUTH_SECRET="nextauth-secret" | ||
|
||
# Next Auth Providers | ||
# Next Auth Google Sign-In | ||
GOOGLE_CLIENT_ID="google-client-id" | ||
GOOGLE_CLIENT_SECRET="google-client-secret" | ||
# Next Auth Email magic link Sign-In | ||
# https://resend.com/changelog/smtp-service | ||
EMAIL_HOST="smtp.resend.com" | ||
EMAIL_PORT="465" | ||
EMAIL_USER="resend" | ||
EMAIL_PASSWORD="resend-api-key" | ||
EMAIL_FROM="[email protected]" | ||
|
||
# Google Maps | ||
NEXT_PUBLIC_GOOGLE_MAPS_API_KEY="google-maps-api-key" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
"use client"; | ||
|
||
import { zodResolver } from "@hookform/resolvers/zod"; | ||
import { Loader2 } from "lucide-react"; | ||
import { signIn } from "next-auth/react"; | ||
import { useState } from "react"; | ||
import { useForm } from "react-hook-form"; | ||
import { z } from "zod"; | ||
import { Button } from "~/components/ui/button"; | ||
import { | ||
Form, | ||
FormControl, | ||
FormField, | ||
FormItem, | ||
FormMessage, | ||
} from "~/components/ui/form"; | ||
import { Input } from "~/components/ui/input"; | ||
|
||
const formSchema = z.object({ | ||
email: z.string().email("Por favor, insira um e-mail válido"), | ||
}); | ||
|
||
export function EmailProviderForm() { | ||
const form = useForm<z.infer<typeof formSchema>>({ | ||
resolver: zodResolver(formSchema), | ||
defaultValues: { email: "" }, | ||
}); | ||
const [isLoading, setIsLoading] = useState(false); | ||
|
||
const onSubmit = async ({ email }: z.infer<typeof formSchema>) => { | ||
setIsLoading(true); | ||
await signIn("email", { email }); | ||
setIsLoading(false); | ||
}; | ||
|
||
return ( | ||
<Form {...form}> | ||
<form | ||
className="mt-5 flex flex-col gap-5" | ||
onSubmit={form.handleSubmit(onSubmit)} | ||
> | ||
<div className="relative my-5"> | ||
<span className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 transform bg-white pb-1 text-lg tracking-widest text-neutral-500"> | ||
ou | ||
</span> | ||
<hr /> | ||
</div> | ||
<FormField | ||
name="email" | ||
control={form.control} | ||
disabled={isLoading} | ||
render={({ field }) => ( | ||
<FormItem> | ||
<FormControl> | ||
<Input placeholder="[email protected]" {...field} /> | ||
</FormControl> | ||
<FormMessage /> | ||
</FormItem> | ||
)} | ||
/> | ||
|
||
<Button type="submit" className="w-full" disabled={isLoading}> | ||
{isLoading ? ( | ||
<Loader2 className="animate-spin" /> | ||
) : ( | ||
"Entrar com e-mail" | ||
)} | ||
</Button> | ||
</form> | ||
</Form> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"use client"; | ||
|
||
import { type ClientSafeProvider, signIn } from "next-auth/react"; | ||
import Image from "next/image"; | ||
|
||
type SignInProviderButtonProps = { | ||
provider: ClientSafeProvider; | ||
callbackUrl: string; | ||
}; | ||
|
||
export function SignInProviderButton({ | ||
provider, | ||
callbackUrl, | ||
}: SignInProviderButtonProps) { | ||
return ( | ||
<button | ||
type="button" | ||
className="inline-flex h-10 w-full items-center justify-center whitespace-nowrap rounded-md border border-neutral-200 bg-white px-4 py-2 text-sm font-medium text-neutral-900 ring-offset-white transition-colors hover:bg-neutral-50 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-neutral-900 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" | ||
onClick={() => signIn(provider.id, { callbackUrl })} | ||
> | ||
<Image | ||
src={`/${provider.id}.svg`} | ||
alt={`Icone de ${provider.name}`} | ||
width={32} | ||
height={32} | ||
/> | ||
Entrar com {provider.name} | ||
</button> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { type PropsWithChildren } from "react"; | ||
|
||
export default function SignInVerifyLayout({ children }: PropsWithChildren) { | ||
return ( | ||
<div className="m-auto flex w-full max-w-lg flex-col items-center justify-center gap-5 p-5 pt-28"> | ||
{children} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,77 @@ | ||
import { getProviders } from "next-auth/react"; | ||
import { | ||
type ClientSafeProvider, | ||
type LiteralUnion, | ||
getProviders, | ||
} from "next-auth/react"; | ||
import { redirect } from "next/navigation"; | ||
import { getServerAuthSession } from "~/server/auth"; | ||
import { SigninProviderButton } from "./_components/SigninProviderButton"; | ||
import { SignInProviderButton } from "./_components/SignInProviderButton"; | ||
import Image from "next/image"; | ||
import { Suspense } from "react"; | ||
import { Loader2 } from "lucide-react"; | ||
import { EmailProviderForm } from "./_components/EmailProviderForm"; | ||
import { Alert, AlertDescription, AlertTitle } from "~/components/ui/alert"; | ||
import { FiAlertTriangle } from "react-icons/fi"; | ||
|
||
type SigninPageProps = { | ||
type SignInPageProps = { | ||
searchParams: Record<string, string>; | ||
}; | ||
|
||
export default async function SigninPage({ searchParams }: SigninPageProps) { | ||
const session = await getServerAuthSession(); | ||
const splitProviders = ( | ||
providers: Awaited<ReturnType<typeof getProviders>>, | ||
): [ClientSafeProvider | null, ClientSafeProvider[]] | [null, null] => { | ||
if (!providers) return [null, null]; | ||
const email = providers.email; | ||
const other = Object.values(providers).filter( | ||
(provider) => provider.id !== "email", | ||
); | ||
return [email, other]; | ||
}; | ||
|
||
export default async function SignInPage({ searchParams }: SignInPageProps) { | ||
const [session, providers] = await Promise.all([ | ||
getServerAuthSession(), | ||
getProviders(), | ||
]); | ||
|
||
if (session) { | ||
redirect(searchParams.callbackUrl ?? "/"); | ||
} | ||
|
||
const providers = [{ id: "google", name: "Google" }]; | ||
const [emailProvider, otherProviders] = splitProviders(providers); | ||
const hasError = !!searchParams.error; | ||
|
||
return ( | ||
<div className="flex flex-col items-center justify-center gap-5 pt-28"> | ||
<Suspense fallback={<Loader2 className="size-8 animate-spin" />}> | ||
<Image src="/logo-horizontal.svg" alt="Logo" width={150} height={100} /> | ||
<p className="max-w-md text-center"> | ||
Em decorrência das enchentes que afetaram o estado do Rio Grande do | ||
Sul, estamos gerenciando as necessidades de abrigos de animais vítimas | ||
do desastre. | ||
<br></br> | ||
<br></br> | ||
Antes de <b>cadastrar um abrigo</b> você precisa <b>fazer login</b>{" "} | ||
com uma das opções abaixo: | ||
</p> | ||
<div className="w-full max-w-md p-5"> | ||
{Object.values(providers).map((provider) => ( | ||
<SigninProviderButton | ||
key={provider.id} | ||
provider={provider} | ||
callbackUrl={searchParams.callbackUrl ?? "/"} | ||
/> | ||
))} | ||
</div> | ||
</Suspense> | ||
</div> | ||
<Suspense fallback={<Loader2 className="size-8 animate-spin" />}> | ||
<Image src="/logo-horizontal.svg" alt="Logo" width={150} height={100} /> | ||
<p className="text-center"> | ||
Em decorrência das enchentes que afetaram o estado do Rio Grande do Sul, | ||
estamos gerenciando as necessidades de abrigos de animais vítimas do | ||
desastre. | ||
<br></br> | ||
<br></br> | ||
Antes de <b>cadastrar um abrigo</b> você precisa <b>fazer login</b> com | ||
uma das opções abaixo: | ||
</p> | ||
{hasError && ( | ||
<Alert variant="destructive"> | ||
<FiAlertTriangle className="h-4 w-4" /> | ||
<AlertTitle>Erro ao tentar realizar o login.</AlertTitle> | ||
<AlertDescription> | ||
Por favor, tente novamente com outra opção disponível. | ||
</AlertDescription> | ||
</Alert> | ||
)} | ||
<div className="w-full"> | ||
{otherProviders?.map((provider) => ( | ||
<SignInProviderButton | ||
key={provider.id} | ||
provider={provider} | ||
callbackUrl={searchParams.callbackUrl ?? "/"} | ||
/> | ||
))} | ||
{!!emailProvider && <EmailProviderForm />} | ||
</div> | ||
</Suspense> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { FaRegCheckCircle } from "react-icons/fa"; | ||
|
||
export default function SignInVerifyPage() { | ||
return ( | ||
<> | ||
<div className="flex flex-col items-center justify-center gap-5 pt-28"> | ||
<FaRegCheckCircle className="text-6xl text-green-500" /> | ||
<h1 className="text-center text-2xl font-bold"> | ||
E-mail enviado com sucesso | ||
</h1> | ||
<p className="max-w-md text-center"> | ||
Enviamos um e-mail com um link para você verificar sua conta. Por | ||
favor, <b>verifique sua caixa de entrada</b> para continuar com o | ||
processo de login. | ||
</p> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.