From 78107d4ec78ba23c86b89ee61b5d0b75e183dc0f Mon Sep 17 00:00:00 2001 From: Yevhen Odynets Date: Wed, 10 Apr 2024 21:24:25 +0300 Subject: [PATCH] added mail service --- .gitignore | 79 + .idea/.gitignore | 5 + .idea/a-naklejka.iml | 12 + .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/inspectionProfiles/Project_Default.xml | 7 + .idea/jsLibraryMappings.xml | 6 + .idea/jsLinters/eslint.xml | 6 + .idea/markdown.xml | 9 + .idea/modules.xml | 8 + .idea/prettier.xml | 7 + .idea/vcs.xml | 7 + .idea/watcherTasks.xml | 4 + actions/login.ts | 55 + actions/register.ts | 35 + actions/send-verification-email.ts | 27 + app/[locale]/(protected)/cabinet/page.tsx | 18 + app/[locale]/(root)/(routes)/about/page.tsx | 23 + .../(root)/(routes)/about/us/page.tsx | 3 + app/[locale]/(root)/page.tsx | 29 + app/[locale]/auth/error/page.tsx | 9 + app/[locale]/auth/layout.tsx | 22 + app/[locale]/auth/login/page.tsx | 9 + app/[locale]/auth/register/page.tsx | 11 + app/[locale]/globals.css | 66 + app/[locale]/layout.tsx | 29 + app/api/auth/[...nextauth]/route.ts | 1 + app/favicon.ico | Bin 25931 -> 1150 bytes app/globals.css | 33 - app/layout.tsx | 22 - app/page.tsx | 113 -- auth.config.ts | 46 + components.json | 17 + components/FormError.tsx | 19 + components/FormSuccess.tsx | 19 + components/LocaleSwitcher.tsx | 24 + components/TranslateClientFragment.tsx | 26 + components/auth/.PasswordInput.tsx.todo | 65 + components/auth/BackButton.tsx | 18 + components/auth/CardWrapper.tsx | 55 + components/auth/ErrorCard.tsx | 25 + components/auth/Header.tsx | 20 + components/auth/LoginButton.tsx | 25 + components/auth/LoginForm.tsx | 112 ++ components/auth/Navbar.tsx | 14 + components/auth/RegisterForm.tsx | 123 ++ components/auth/Social.tsx | 31 + components/ui/button.tsx | 56 + components/ui/card.tsx | 79 + components/ui/form.tsx | 152 ++ components/ui/input.tsx | 25 + components/ui/label.tsx | 26 + components/ui/separator.tsx | 31 + config/auth.ts | 75 + config/layout.ts | 1 + config/locales.ts | 30 + config/mailer.ts | 16 + config/routes.ts | 44 + config/validation.ts | 2 + data/user.ts | 18 + data/verification-token.ts | 17 + lib/db.ts | 10 + lib/mailer.ts | 22 + lib/tokens.ts | 32 + lib/utils.ts | 12 + locales/client.ts | 11 + locales/en.ts | 60 + locales/server.ts | 9 + locales/uk.ts | 60 + middleware.ts | 60 + next.config.mjs | 12 +- package-lock.json | 1320 +++++++++++++++-- package.json | 35 +- .../20240410180928_auth/migration.sql | 58 + .../migration.sql | 2 + prisma/migrations/migration_lock.toml | 3 + prisma/schema.prisma | 66 + schemas/index.ts | 26 + styles/LocaleSwitcher.module.scss | 12 + tailwind.config.ts | 86 +- tsconfig.json | 40 +- 80 files changed, 3478 insertions(+), 329 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/a-naklejka.iml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/jsLibraryMappings.xml create mode 100644 .idea/jsLinters/eslint.xml create mode 100644 .idea/markdown.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/prettier.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/watcherTasks.xml create mode 100644 actions/login.ts create mode 100644 actions/register.ts create mode 100644 actions/send-verification-email.ts create mode 100644 app/[locale]/(protected)/cabinet/page.tsx create mode 100644 app/[locale]/(root)/(routes)/about/page.tsx create mode 100644 app/[locale]/(root)/(routes)/about/us/page.tsx create mode 100644 app/[locale]/(root)/page.tsx create mode 100644 app/[locale]/auth/error/page.tsx create mode 100644 app/[locale]/auth/layout.tsx create mode 100644 app/[locale]/auth/login/page.tsx create mode 100644 app/[locale]/auth/register/page.tsx create mode 100644 app/[locale]/globals.css create mode 100644 app/[locale]/layout.tsx create mode 100644 app/api/auth/[...nextauth]/route.ts delete mode 100644 app/globals.css delete mode 100644 app/layout.tsx delete mode 100644 app/page.tsx create mode 100644 auth.config.ts create mode 100644 components.json create mode 100644 components/FormError.tsx create mode 100644 components/FormSuccess.tsx create mode 100644 components/LocaleSwitcher.tsx create mode 100644 components/TranslateClientFragment.tsx create mode 100644 components/auth/.PasswordInput.tsx.todo create mode 100644 components/auth/BackButton.tsx create mode 100644 components/auth/CardWrapper.tsx create mode 100644 components/auth/ErrorCard.tsx create mode 100644 components/auth/Header.tsx create mode 100644 components/auth/LoginButton.tsx create mode 100644 components/auth/LoginForm.tsx create mode 100644 components/auth/Navbar.tsx create mode 100644 components/auth/RegisterForm.tsx create mode 100644 components/auth/Social.tsx create mode 100644 components/ui/button.tsx create mode 100644 components/ui/card.tsx create mode 100644 components/ui/form.tsx create mode 100644 components/ui/input.tsx create mode 100644 components/ui/label.tsx create mode 100644 components/ui/separator.tsx create mode 100644 config/auth.ts create mode 100644 config/layout.ts create mode 100644 config/locales.ts create mode 100644 config/mailer.ts create mode 100644 config/routes.ts create mode 100644 config/validation.ts create mode 100644 data/user.ts create mode 100644 data/verification-token.ts create mode 100644 lib/db.ts create mode 100644 lib/mailer.ts create mode 100644 lib/tokens.ts create mode 100644 lib/utils.ts create mode 100644 locales/client.ts create mode 100644 locales/en.ts create mode 100644 locales/server.ts create mode 100644 locales/uk.ts create mode 100644 middleware.ts create mode 100644 prisma/migrations/20240410180928_auth/migration.sql create mode 100644 prisma/migrations/20240410181603_added_ext_data_to_user/migration.sql create mode 100644 prisma/migrations/migration_lock.toml create mode 100644 prisma/schema.prisma create mode 100644 schemas/index.ts create mode 100644 styles/LocaleSwitcher.module.scss diff --git a/.gitignore b/.gitignore index fd3dbb5..7494fa5 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ yarn-error.log* # local env files .env*.local +.env # vercel .vercel @@ -34,3 +35,81 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts + +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/a-naklejka.iml b/.idea/a-naklejka.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/a-naklejka.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..9c69411 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 0000000..d23208f --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/jsLinters/eslint.xml b/.idea/jsLinters/eslint.xml new file mode 100644 index 0000000..541945b --- /dev/null +++ b/.idea/jsLinters/eslint.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/markdown.xml b/.idea/markdown.xml new file mode 100644 index 0000000..1e34094 --- /dev/null +++ b/.idea/markdown.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..fee08b8 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/prettier.xml b/.idea/prettier.xml new file mode 100644 index 0000000..0c83ac4 --- /dev/null +++ b/.idea/prettier.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..8306744 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml new file mode 100644 index 0000000..fb0d65a --- /dev/null +++ b/.idea/watcherTasks.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/actions/login.ts b/actions/login.ts new file mode 100644 index 0000000..3473df1 --- /dev/null +++ b/actions/login.ts @@ -0,0 +1,55 @@ +'use server' + +import { infer as zInfer } from 'zod' +import { LoginSchema } from '@/schemas' +import { signIn } from '@/config/auth' +import { DEFAULT_LOGIN_REDIRECT } from '@/config/routes' +import { AuthError } from 'next-auth' +import { getUserByEmail } from '@/data/user' +import { sendVerificationEmail } from '@/actions/send-verification-email' + +export const login = async (values: zInfer) => { + const validatedFields = LoginSchema.safeParse(values) + + if (!validatedFields.success) { + return { error: 'auth.form.error.invalid_fields' } + } + + const { email, password } = validatedFields.data + + const existingUser = await getUserByEmail(email) + + if (!existingUser || !existingUser.email || !existingUser.password) { + return { error: 'auth.form.error.invalid_credentials' } + } + + if (!existingUser.emailVerified) { + return await sendVerificationEmail(existingUser.email, existingUser.name) + } + + try { + await signIn('credentials', { + email, password, redirectTo: DEFAULT_LOGIN_REDIRECT, + }) + } catch (error) { + if (error instanceof AuthError) { + switch (error.type) { + case 'CredentialsSignin': + return { error: 'auth.form.error.invalid_credentials' } + case 'AccessDenied': + return { error: 'auth.form.error.access_denied' } + default: + console.error('ERROR.TYPE:', error.type) + return { error: 'common.something_went_wrong' } + } + } + + throw error + } +} + +export const SignInProvider = async (provider: 'google' | 'github' | 'facebook') => { + await signIn(provider, { + redirectTo: DEFAULT_LOGIN_REDIRECT, + }) +} \ No newline at end of file diff --git a/actions/register.ts b/actions/register.ts new file mode 100644 index 0000000..c238bab --- /dev/null +++ b/actions/register.ts @@ -0,0 +1,35 @@ +'use server' + +import { infer as zInfer } from 'zod' +import bcrypt from 'bcryptjs' + +import { RegisterSchema } from '@/schemas' +import { PASSWORD_SALT_LENGTH } from '@/config/validation' +import { db } from '@/lib/db' +import { getUserByEmail } from '@/data/user' +import { sendVerificationEmail } from '@/actions/send-verification-email' + +export const register = async (values: zInfer) => { + const validatedFields = RegisterSchema.safeParse(values) + + if (!validatedFields.success) { + return { error: 'auth.form.error.invalid_fields' } + } + + const { email, password, name } = validatedFields.data + const hashedPassword = await bcrypt.hash(password, PASSWORD_SALT_LENGTH) + + const existingUser = await getUserByEmail(email) + + if (existingUser) { + return { error: 'auth.form.error.email_taken' } + } + + await db.user.create({ + data: { + name, email, password: hashedPassword, + }, + }) + + return await sendVerificationEmail(email, name) +} \ No newline at end of file diff --git a/actions/send-verification-email.ts b/actions/send-verification-email.ts new file mode 100644 index 0000000..4aa3899 --- /dev/null +++ b/actions/send-verification-email.ts @@ -0,0 +1,27 @@ +'use server' + +import mailer from '@/lib/mailer' +import { env } from 'process' +import { AUTH_EMAIL_VERIFICATION_URL } from '@/config/routes' +import { generateVerificationToken } from '@/lib/tokens' + +const sendVerificationEmail = async (email: string, name?: string | null) => { + const verificationToken = await generateVerificationToken(email) + const confirmLink: string = [env.SITE_URL, AUTH_EMAIL_VERIFICATION_URL, '?token=', verificationToken].join('') + + const { isOk, code, info, error } = await mailer({ + to: name ? [ + { name: name?.toString(), address: verificationToken.email }, + `test-xyhy2bvhj@srv1.mail-tester.com`] : verificationToken.email, + subject: 'Complete email verification for A-Naklejka', + html: `

Click here to confirm email

`, + }) + + if (isOk) { + return { success: code === 250 ? 'auth.email.success.confirmation_email_sent' : info?.response } + } else { + return { error: env.DEBUG === 'true' ? error?.response : 'auth.email.error.verification_email_sending_error' } + } +} + +export { sendVerificationEmail } \ No newline at end of file diff --git a/app/[locale]/(protected)/cabinet/page.tsx b/app/[locale]/(protected)/cabinet/page.tsx new file mode 100644 index 0000000..f2563dd --- /dev/null +++ b/app/[locale]/(protected)/cabinet/page.tsx @@ -0,0 +1,18 @@ +import { auth, signOut } from '@/config/auth' + +const CabinetPage = async () => { + const session = await auth() + return ( +
+ {JSON.stringify(session)} +
{ + 'use server' + await signOut() + }}> + +
+
+ ) +} + +export default CabinetPage diff --git a/app/[locale]/(root)/(routes)/about/page.tsx b/app/[locale]/(root)/(routes)/about/page.tsx new file mode 100644 index 0000000..94fc942 --- /dev/null +++ b/app/[locale]/(root)/(routes)/about/page.tsx @@ -0,0 +1,23 @@ +'use client' + +import mailer from '@/lib/mailer' + +export default function AboutPage () { + const onClick = () => { + mailer({ + to: [ + { name: 'Yevhen', address: 'it@amok.space' }, + { name: 'Євген', address: 'yevhen.odynets@gmail.com' }, + ], + subject: 'ПОСИЛЕННЯ МОБІЛІЗАЦІЇ В УКРАЇНІ', + html: `
Коли Рада розгляне законопроєкт про мобілізацію у другому читанні
`, + }).catch(console.error) + } + + return ( + + ) +} \ No newline at end of file diff --git a/app/[locale]/(root)/(routes)/about/us/page.tsx b/app/[locale]/(root)/(routes)/about/us/page.tsx new file mode 100644 index 0000000..2ef4c01 --- /dev/null +++ b/app/[locale]/(root)/(routes)/about/us/page.tsx @@ -0,0 +1,3 @@ +export default function AboutUsPage () { + return (
AboutUsPage
) +} \ No newline at end of file diff --git a/app/[locale]/(root)/page.tsx b/app/[locale]/(root)/page.tsx new file mode 100644 index 0000000..f5886ac --- /dev/null +++ b/app/[locale]/(root)/page.tsx @@ -0,0 +1,29 @@ +import { Poppins } from 'next/font/google' +import { getScopedI18n } from '@/locales/server' +import { cn } from '@/lib/utils' +import { Button } from '@/components/ui/button' +import LoginButton from '@/components/auth/LoginButton' +import { bg as bgg } from '@/config/layout' + +const font = Poppins({ + subsets: ['latin'], weight: ['600'], +}) + +export default async function Home () { + const t = await getScopedI18n('auth') + return (
+
+

+ 🔐 {t('title')} +

+

{t('subtitle')}

+
+ + + +
+
+
) +} diff --git a/app/[locale]/auth/error/page.tsx b/app/[locale]/auth/error/page.tsx new file mode 100644 index 0000000..e731e49 --- /dev/null +++ b/app/[locale]/auth/error/page.tsx @@ -0,0 +1,9 @@ +import ErrorCard from '@/components/auth/ErrorCard' + +const AuthErrorPage = () => { + return ( + + ) +} + +export default AuthErrorPage diff --git a/app/[locale]/auth/layout.tsx b/app/[locale]/auth/layout.tsx new file mode 100644 index 0000000..af073a5 --- /dev/null +++ b/app/[locale]/auth/layout.tsx @@ -0,0 +1,22 @@ +'use client' + +import { ReactElement } from 'react' +import Navbar from '@/components/auth/Navbar' + +type Props = { + //params: { locale: string }; + children: ReactElement; +} +const AuthLayout = ({ children }: Props) => { + return ( + <> + +
+ {children} +
+ + ) +} + +export default AuthLayout \ No newline at end of file diff --git a/app/[locale]/auth/login/page.tsx b/app/[locale]/auth/login/page.tsx new file mode 100644 index 0000000..d875274 --- /dev/null +++ b/app/[locale]/auth/login/page.tsx @@ -0,0 +1,9 @@ +import { LoginForm } from '@/components/auth/LoginForm' + +const LoginPage = () => { + return ( + + ) +} + +export default LoginPage \ No newline at end of file diff --git a/app/[locale]/auth/register/page.tsx b/app/[locale]/auth/register/page.tsx new file mode 100644 index 0000000..988422b --- /dev/null +++ b/app/[locale]/auth/register/page.tsx @@ -0,0 +1,11 @@ +import { RegisterForm } from '@/components/auth/RegisterForm' + +const RegisterPage = () => { + return ( +
+ +
+ ) +} + +export default RegisterPage \ No newline at end of file diff --git a/app/[locale]/globals.css b/app/[locale]/globals.css new file mode 100644 index 0000000..451d5ef --- /dev/null +++ b/app/[locale]/globals.css @@ -0,0 +1,66 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +html, +body, +:root { + height: 100%; +} + +@layer base { + :root { + --background: 0 0% 100%; + --foreground: 222.2 84% 4.9%; + --card: 0 0% 100%; + --card-foreground: 222.2 84% 4.9%; + --popover: 0 0% 100%; + --popover-foreground: 222.2 84% 4.9%; + --primary: 221.2 83.2% 53.3%; + --primary-foreground: 210 40% 98%; + --secondary: 210 40% 96.1%; + --secondary-foreground: 222.2 47.4% 11.2%; + --muted: 210 40% 96.1%; + --muted-foreground: 215.4 16.3% 46.9%; + --accent: 210 40% 96.1%; + --accent-foreground: 222.2 47.4% 11.2%; + --destructive: 0 84.2% 60.2%; + --destructive-foreground: 210 40% 98%; + --border: 214.3 31.8% 91.4%; + --input: 214.3 31.8% 91.4%; + --ring: 221.2 83.2% 53.3%; + --radius: 0rem; + } + + .dark { + --background: 222.2 84% 4.9%; + --foreground: 210 40% 98%; + --card: 222.2 84% 4.9%; + --card-foreground: 210 40% 98%; + --popover: 222.2 84% 4.9%; + --popover-foreground: 210 40% 98%; + --primary: 217.2 91.2% 59.8%; + --primary-foreground: 222.2 47.4% 11.2%; + --secondary: 217.2 32.6% 17.5%; + --secondary-foreground: 210 40% 98%; + --muted: 217.2 32.6% 17.5%; + --muted-foreground: 215 20.2% 65.1%; + --accent: 217.2 32.6% 17.5%; + --accent-foreground: 210 40% 98%; + --destructive: 0 62.8% 30.6%; + --destructive-foreground: 210 40% 98%; + --border: 217.2 32.6% 17.5%; + --input: 217.2 32.6% 17.5%; + --ring: 224.3 76.3% 48%; + } +} + +@layer base { + * { + @apply border-border; + } + + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx new file mode 100644 index 0000000..e56506c --- /dev/null +++ b/app/[locale]/layout.tsx @@ -0,0 +1,29 @@ +import type { Metadata } from 'next' +import { Inter } from 'next/font/google' +import './globals.css' +import { ReactElement } from 'react' +import { I18nProviderClient } from '@/locales/client' +import { lc } from '@/lib/utils' + +const inter = Inter({ subsets: ['cyrillic'] }) + +export const metadata: Metadata = { + title: 'Create Next App', description: 'Generated by create next app', +} + +type Props = { + params: { locale: string }; children: ReactElement; +} + +export default function RootLayout ({ + params: { locale }, children, +}: Readonly) { + + return ( + + Loading...

}> + {children} +
+ + ) +} diff --git a/app/api/auth/[...nextauth]/route.ts b/app/api/auth/[...nextauth]/route.ts new file mode 100644 index 0000000..5200eb3 --- /dev/null +++ b/app/api/auth/[...nextauth]/route.ts @@ -0,0 +1 @@ +export { GET, POST } from '@/config/auth' \ No newline at end of file diff --git a/app/favicon.ico b/app/favicon.ico index 718d6fea4835ec2d246af9800eddb7ffb276240c..16661f69c0e6c8c04c44f85e80c1a9b239026f0e 100644 GIT binary patch literal 1150 zcmbu7YfRH;6o+fFZ@V!E2q;)Ur!pW+7_p02WQbhGEm#zV4u-cmU1tStP(i7c%dik= zOJ%eo&=zPZEq9P|t75GIXB6j_;NlXq#IO7O?7w~7*PS=NlQ-}COU}u2j!3jdIDUR2 zA;hAS?}$W!!fmUdf1bpG*8H1AqP@c3f8$(b6UFtN>@KVzVSh1uQcsYSag_Jgt|uTU zf{@S{Lc=!^ACu3vm`pOHO0rMt_^xh*DxHIR%NS=(50F)vX&;^D%=IR6zBxm9>}S01 zA52JCEdGIEL`Ljl`{zlex@2f428qsw`p^xQHMw(lYM zqd=j4EFb!X5f&MZWM>iirMJi}xAL{xfx$MvG*`* zgEkN<-cDe^7T*2XkK~lo95_;kv}OXO`3ZN2eOx#CxNKUbSnWevHNio}0BNW6L`w>g zNHWakbe)gY7k^jY||5+!Qnqv8%$$E?EPK ziD|?o9AI70W>PZpIdrIooC^aS)yyDwJVER9p%B<#)DCdb?@`~HHO@@z>Ucj+U-BnH}f3J!k?%+=WxtFW^mTak5(tOeG{lG zQ(S87BqnAbTOuWdMJ1DYt(R|GCutpA;)=%1=tCcq&)#y!^IGuFpw#!%JNgLk${TL> z*r+j23U#yC5F9~-FvFr#YSK#1Q=+KF>0H6#p2NQQ5`*Uz6}Cl=Y41_08lqOHOE^Tx_opxAER@va@jmbvC2r^>B|D64vtnk$&;yw zi`$Agz>mn#^?aHb&lg`FL)qrz%HV5SEe~iL^3pQ;JJk*!^{yoGynhq literal 25931 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 LrJugUA?W`A8`#=m diff --git a/app/globals.css b/app/globals.css deleted file mode 100644 index 875c01e..0000000 --- a/app/globals.css +++ /dev/null @@ -1,33 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -:root { - --foreground-rgb: 0, 0, 0; - --background-start-rgb: 214, 219, 220; - --background-end-rgb: 255, 255, 255; -} - -@media (prefers-color-scheme: dark) { - :root { - --foreground-rgb: 255, 255, 255; - --background-start-rgb: 0, 0, 0; - --background-end-rgb: 0, 0, 0; - } -} - -body { - color: rgb(var(--foreground-rgb)); - background: linear-gradient( - to bottom, - transparent, - rgb(var(--background-end-rgb)) - ) - rgb(var(--background-start-rgb)); -} - -@layer utilities { - .text-balance { - text-wrap: balance; - } -} diff --git a/app/layout.tsx b/app/layout.tsx deleted file mode 100644 index 3314e47..0000000 --- a/app/layout.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; - -const inter = Inter({ subsets: ["latin"] }); - -export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - {children} - - ); -} diff --git a/app/page.tsx b/app/page.tsx deleted file mode 100644 index dc191aa..0000000 --- a/app/page.tsx +++ /dev/null @@ -1,113 +0,0 @@ -import Image from "next/image"; - -export default function Home() { - return ( -
-
-

- Get started by editing  - app/page.tsx -

- -
- -
- Next.js Logo -
- - -
- ); -} diff --git a/auth.config.ts b/auth.config.ts new file mode 100644 index 0000000..8f57311 --- /dev/null +++ b/auth.config.ts @@ -0,0 +1,46 @@ +import type { NextAuthConfig } from 'next-auth' +import Credentials from 'next-auth/providers/credentials' +import Google from 'next-auth/providers/google' +import Github from 'next-auth/providers/github' +//import Facebook from 'next-auth/providers/facebook' +//import Twitter from 'next-auth/providers/twitter' +import { LoginSchema } from '@/schemas' +import bcrypt from 'bcryptjs' +import { getUserByEmail } from '@/data/user' +import { env } from 'process' + +export default { + secret: env.AUTH_SECRET, + providers: [ + Google({ + clientId: env.GOOGLE_CLIENT_ID, + clientSecret: env.GOOGLE_CLIENT_SECRET, + }), + Github({ + clientId: env.GITHUB_CLIENT_ID, + clientSecret: env.GITHUB_CLIENT_SECRET, + }), + //Twitter({}), + /*Facebook({ + clientId: env.FACEBOOK_CLIENT_ID, + clientSecret: env.FACEBOOK_CLIENT_SECRET, + }),*/ + Credentials({ + // @ts-ignore + async authorize (credentials) { + const validatedFields = LoginSchema.safeParse(credentials) + + if (validatedFields.success) { + const { email, password } = validatedFields.data + + const user = await getUserByEmail(email) + + if (!user || !user.password) return null + + const passwordMatch: boolean = await bcrypt.compare(password, user.password) + if (passwordMatch) return user + } + return null + }, + })], +} satisfies NextAuthConfig \ No newline at end of file diff --git a/components.json b/components.json new file mode 100644 index 0000000..8a1aeb4 --- /dev/null +++ b/components.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "default", + "rsc": true, + "tsx": true, + "tailwind": { + "config": "tailwind.config.ts", + "css": "app/[locale]/globals.css", + "baseColor": "slate", + "cssVariables": true, + "prefix": "" + }, + "aliases": { + "components": "@/components", + "utils": "@/lib/utils" + } +} \ No newline at end of file diff --git a/components/FormError.tsx b/components/FormError.tsx new file mode 100644 index 0000000..e90988a --- /dev/null +++ b/components/FormError.tsx @@ -0,0 +1,19 @@ +import { TriangleAlert } from 'lucide-react' + +type Props = { + message?: string +} + +const FormError = ({ message }: Props) => { + if (!message) return null + + return ( +
+ +

{message}

+
+ ) +} + +export default FormError diff --git a/components/FormSuccess.tsx b/components/FormSuccess.tsx new file mode 100644 index 0000000..f799daf --- /dev/null +++ b/components/FormSuccess.tsx @@ -0,0 +1,19 @@ +import { CircleCheck } from 'lucide-react' + +type Props = { + message?: string +} + +const FormSuccess = ({ message }: Props) => { + if (!message) return null + + return ( +
+ +

{message}

+
+ ) +} + +export default FormSuccess diff --git a/components/LocaleSwitcher.tsx b/components/LocaleSwitcher.tsx new file mode 100644 index 0000000..2fabc5a --- /dev/null +++ b/components/LocaleSwitcher.tsx @@ -0,0 +1,24 @@ +'use client' +import { useChangeLocale, useCurrentLocale } from '@/locales/client' +import { LC, type loc } from '@/config/locales' +import { ChangeEvent } from 'react' +import styles from '@/styles/LocaleSwitcher.module.scss' + +export default function LocaleSwitcher () { + const changeLocale = useChangeLocale() + const locale = useCurrentLocale() + const selectHandler = (e: ChangeEvent) => changeLocale( + e.target.value as loc) + + return ( + //@ts-ignore + + ) +} \ No newline at end of file diff --git a/components/TranslateClientFragment.tsx b/components/TranslateClientFragment.tsx new file mode 100644 index 0000000..91b49f2 --- /dev/null +++ b/components/TranslateClientFragment.tsx @@ -0,0 +1,26 @@ +import { useI18n } from '@/locales/client' + +type Props = { + message: string +} + +const _ = (message: string): string => { + const t = useI18n() + if (message.startsWith('["')) { + const data = JSON.parse(message) + if (data.length > 1) { + message = data.shift() + // @ts-ignore + return t(message, ...data) + } + } + + // @ts-ignore + return t(message) +} + +const TranslateClientFragment = ({ message }: Props) => { + return <>{_(message)} +} + +export default TranslateClientFragment diff --git a/components/auth/.PasswordInput.tsx.todo b/components/auth/.PasswordInput.tsx.todo new file mode 100644 index 0000000..a860f8c --- /dev/null +++ b/components/auth/.PasswordInput.tsx.todo @@ -0,0 +1,65 @@ + +'use client' +//https://gist.github.com/mjbalcueva/b21f39a8787e558d4c536bf68e267398 + +import { forwardRef, useState } from 'react' +import { EyeIcon, EyeOffIcon } from 'lucide-react' +import { Button } from '@/components/ui/button' +import { Input, InputProps } from '@/components/ui/input' +import { cn } from '@/lib/utils' +import { FormControl } from '@/components/ui/form' + +const PasswordInput = forwardRef( + ({ className, ...props }, ref) => { + const [showPassword, setShowPassword] = useState(false) + const disabled = props.value === '' || props.value === undefined || + props.disabled + + return (
+ + + + {/* hides browsers password toggles */} + +
+ ) + }, +) +PasswordInput.displayName = 'PasswordInput' + +export { PasswordInput } + diff --git a/components/auth/BackButton.tsx b/components/auth/BackButton.tsx new file mode 100644 index 0000000..ec06072 --- /dev/null +++ b/components/auth/BackButton.tsx @@ -0,0 +1,18 @@ +'use client' + +import { Button } from '@/components/ui/button' +import Link from 'next/link' + +type Props = { + href: string + label: string +} + +export const BackButton = ({ href, label }: Props) => { + return ( + + ) +} \ No newline at end of file diff --git a/components/auth/CardWrapper.tsx b/components/auth/CardWrapper.tsx new file mode 100644 index 0000000..b6a4f55 --- /dev/null +++ b/components/auth/CardWrapper.tsx @@ -0,0 +1,55 @@ +'use client' +import { Card, CardContent, CardFooter, CardHeader } from '@/components/ui/card' +import { Header } from '@/components/auth/Header' +import { Social } from '@/components/auth/Social' +import { BackButton } from '@/components/auth/BackButton' + +type Props = { + children: React.ReactNode + headerLabel: string + headerTitle: string + backButtonLabel: string + backButtonHref: string + showSocial?: boolean + continueWithLabel?: string +} + +export const CardWrapper = ({ + children, + headerLabel, + headerTitle, + backButtonLabel, + backButtonHref, + showSocial, + continueWithLabel, +}: Props) => { + return ( + + +
+ + + {children} + + {showSocial && +
+
+ +
+
+ {continueWithLabel} +
+
+ + {/**/} + +
} + + + + + ) +} \ No newline at end of file diff --git a/components/auth/ErrorCard.tsx b/components/auth/ErrorCard.tsx new file mode 100644 index 0000000..994e4b7 --- /dev/null +++ b/components/auth/ErrorCard.tsx @@ -0,0 +1,25 @@ +'use client' + +import { CardWrapper } from '@/components/auth/CardWrapper' +import { AUTH_LOGIN_URL } from '@/config/routes' +import { useI18n } from '@/locales/client' +import { TriangleAlert } from 'lucide-react' + +const ErrorCard = () => { + const t = useI18n() + return ( + +
+ +

ssss

+
+
+ ) +} + +export default ErrorCard diff --git a/components/auth/Header.tsx b/components/auth/Header.tsx new file mode 100644 index 0000000..2e07ddd --- /dev/null +++ b/components/auth/Header.tsx @@ -0,0 +1,20 @@ +import { Poppins } from 'next/font/google' +import { cn } from '@/lib/utils' + +const font = Poppins({ + subsets: ['latin'], weight: ['600'], +}) + +type Props = { + label: string, title: string +} + +export const Header = ({ label, title }: Props) => { + return ( +
+

+ 🔐 {title || 'Auth'} +

+

{label}

+
) +} \ No newline at end of file diff --git a/components/auth/LoginButton.tsx b/components/auth/LoginButton.tsx new file mode 100644 index 0000000..c2ff9cc --- /dev/null +++ b/components/auth/LoginButton.tsx @@ -0,0 +1,25 @@ +'use client' + +import { useRouter } from 'next/navigation' +import { AUTH_LOGIN_URL } from '@/config/routes' + +type Props = { + children: React.ReactNode + mode?: 'modal' | 'redirect' + asChild?: boolean +} + +const LoginButton = ({ + children, mode = 'redirect', asChild, +}: Props) => { + const router = useRouter() + const onClick = () => router.push(AUTH_LOGIN_URL) + + if (mode === 'modal') { + return TODO: Implement modal + } + + return {children} +} + +export default LoginButton diff --git a/components/auth/LoginForm.tsx b/components/auth/LoginForm.tsx new file mode 100644 index 0000000..5af821d --- /dev/null +++ b/components/auth/LoginForm.tsx @@ -0,0 +1,112 @@ +'use client' + +import { infer as zInfer } from 'zod' +import { useState, useTransition } from 'react' +import { useForm } from 'react-hook-form' +import { useSearchParams } from 'next/navigation' +import { zodResolver } from '@hookform/resolvers/zod' +import { + Form, + FormControl, + FormField, + FormItem, + FormLabel, + FormMessage, +} from '@/components/ui/form' +import { Input } from '@/components/ui/input' +import { CardWrapper } from '@/components/auth/CardWrapper' +import { useI18n } from '@/locales/client' +import { Button } from '@/components/ui/button' +import FormError from '@/components/FormError' +import FormSuccess from '@/components/FormSuccess' +import { login } from '@/actions/login' +import { LoginSchema } from '@/schemas' +import { AUTH_REGISTER_URL } from '@/config/routes' + +export const LoginForm = () => { + const t = useI18n() + + const searchParams = useSearchParams() + const urlError = searchParams.get('error') === 'OAuthAccountNotLinked' + ? t('auth.form.error.email_in_use') + : '' + + const [error, setError] = useState('') + const [success, setSuccess] = useState('') + const [isPending, startTransition] = useTransition() + + const form = useForm>({ + resolver: zodResolver(LoginSchema), defaultValues: { + email: '', password: '', + }, + }) + + const onSubmit = (values: zInfer) => { + setError('') + setSuccess('') + + startTransition(() => { + login(values).then((data) => { + // @ts-ignore + setError(t(data?.error)) + // @ts-ignore + setSuccess(t(data?.success)) + }) + }) + } + + return ( +
+ +
+ ( + {t('form.label.email')} + + + + + )}/> + {/*Password*/} + ( + {t('form.label.password')} + + + + + )}/> +
+ + + + + +
) +} + +//1:30:00 \ No newline at end of file diff --git a/components/auth/Navbar.tsx b/components/auth/Navbar.tsx new file mode 100644 index 0000000..d913d1d --- /dev/null +++ b/components/auth/Navbar.tsx @@ -0,0 +1,14 @@ +'use client' +//import { useScopedI18n } from '@/locales/client' +import LocaleSwitcher from '@/components/LocaleSwitcher' + +export default function Navbar () { + //const t = useScopedI18n('navbar') + + return ( + + ) +} \ No newline at end of file diff --git a/components/auth/RegisterForm.tsx b/components/auth/RegisterForm.tsx new file mode 100644 index 0000000..e2fbe1c --- /dev/null +++ b/components/auth/RegisterForm.tsx @@ -0,0 +1,123 @@ +'use client' + +import { infer as zInfer } from 'zod' +import { useState, useTransition } from 'react' +import { useForm } from 'react-hook-form' +import { zodResolver } from '@hookform/resolvers/zod' +import { + Form, + FormControl, + FormField, + FormItem, + FormLabel, + FormMessage, +} from '@/components/ui/form' +import { Input } from '@/components/ui/input' +import { CardWrapper } from '@/components/auth/CardWrapper' +import { useI18n } from '@/locales/client' +import { Button } from '@/components/ui/button' +import FormError from '@/components/FormError' +import FormSuccess from '@/components/FormSuccess' + +import { register } from '@/actions/register' +import { RegisterSchema } from '@/schemas' +import { AUTH_LOGIN_URL } from '@/config/routes' + +export const RegisterForm = () => { + // const [currentPassword, setCurrentPassword] = useState('') + // const [password, setPassword] = useState('') + // const [passwordConfirmation, setPasswordConfirmation] = useState('') + const [error, setError] = useState('') + const [success, setSuccess] = useState('') + const [isPending, startTransition] = useTransition() + + const t = useI18n() + + const form = useForm>({ + resolver: zodResolver(RegisterSchema), defaultValues: { + email: '', password: '', name: '', + }, + }) + + const onSubmit = (values: zInfer) => { + setError('') + setSuccess('') + + startTransition(() => { + register(values).then((data) => { + // @ts-ignore + setError(t(data?.error)) + // @ts-ignore + setSuccess(t(data?.success)) + }) + }) + } + + return ( +
+ +
+ {/*Name*/} + ( + {t('form.label.name')} + + + + + )}/> + {/*Email*/} + ( + {t('form.label.email')} + + + + + )}/> + {/*Password*/} + ( + {t('form.label.password')} + + + + + )}/> +
+ + + + + +
) +} diff --git a/components/auth/Social.tsx b/components/auth/Social.tsx new file mode 100644 index 0000000..e1171f1 --- /dev/null +++ b/components/auth/Social.tsx @@ -0,0 +1,31 @@ +'use client' + +import { FcGoogle } from 'react-icons/fc' +import { FaFacebook, FaGithub } from 'react-icons/fa' +//import { RiTwitterXLine } from 'react-icons/ri' + +import { Button } from '@/components/ui/button' +import { SignInProvider } from '@/actions/login' + +export const Social = () => { + + return ( +
+ + + {/**/} + {/**/} +
+ ) +} diff --git a/components/ui/button.tsx b/components/ui/button.tsx new file mode 100644 index 0000000..0ba4277 --- /dev/null +++ b/components/ui/button.tsx @@ -0,0 +1,56 @@ +import * as React from "react" +import { Slot } from "@radix-ui/react-slot" +import { cva, type VariantProps } from "class-variance-authority" + +import { cn } from "@/lib/utils" + +const buttonVariants = cva( + "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", + { + variants: { + variant: { + default: "bg-primary text-primary-foreground hover:bg-primary/90", + destructive: + "bg-destructive text-destructive-foreground hover:bg-destructive/90", + outline: + "border border-input bg-background hover:bg-accent hover:text-accent-foreground", + secondary: + "bg-secondary text-secondary-foreground hover:bg-secondary/80", + ghost: "hover:bg-accent hover:text-accent-foreground", + link: "text-primary underline-offset-4 hover:underline", + }, + size: { + default: "h-10 px-4 py-2", + sm: "h-9 rounded-md px-3", + lg: "h-11 rounded-md px-8", + icon: "h-10 w-10", + }, + }, + defaultVariants: { + variant: "default", + size: "default", + }, + } +) + +export interface ButtonProps + extends React.ButtonHTMLAttributes, + VariantProps { + asChild?: boolean +} + +const Button = React.forwardRef( + ({ className, variant, size, asChild = false, ...props }, ref) => { + const Comp = asChild ? Slot : "button" + return ( + + ) + } +) +Button.displayName = "Button" + +export { Button, buttonVariants } diff --git a/components/ui/card.tsx b/components/ui/card.tsx new file mode 100644 index 0000000..afa13ec --- /dev/null +++ b/components/ui/card.tsx @@ -0,0 +1,79 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +const Card = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)) +Card.displayName = "Card" + +const CardHeader = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)) +CardHeader.displayName = "CardHeader" + +const CardTitle = React.forwardRef< + HTMLParagraphElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)) +CardTitle.displayName = "CardTitle" + +const CardDescription = React.forwardRef< + HTMLParagraphElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)) +CardDescription.displayName = "CardDescription" + +const CardContent = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)) +CardContent.displayName = "CardContent" + +const CardFooter = React.forwardRef< + HTMLDivElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +
+)) +CardFooter.displayName = "CardFooter" + +export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent } diff --git a/components/ui/form.tsx b/components/ui/form.tsx new file mode 100644 index 0000000..88b670b --- /dev/null +++ b/components/ui/form.tsx @@ -0,0 +1,152 @@ +import * as React from 'react' +import * as LabelPrimitive from '@radix-ui/react-label' +import { Slot } from '@radix-ui/react-slot' +import { + Controller, + ControllerProps, + FieldPath, + FieldValues, + FormProvider, + useFormContext, +} from 'react-hook-form' + +import { cn } from '@/lib/utils' +import { Label } from '@/components/ui/label' +import TranslateClientFragment from '@/components/TranslateClientFragment' + +const Form = FormProvider + +type FormFieldContextValue = FieldPath> = { + name: TName +} + +const FormFieldContext = React.createContext( + {} as FormFieldContextValue) + +const FormField = = FieldPath> ({ + ...props +}: ControllerProps) => { + return ( + + ) +} + +const useFormField = () => { + const fieldContext = React.useContext(FormFieldContext) + const itemContext = React.useContext(FormItemContext) + const { getFieldState, formState } = useFormContext() + + const fieldState = getFieldState(fieldContext.name, formState) + + if (!fieldContext) { + throw new Error('useFormField should be used within ') + } + + const { id } = itemContext + + return { + id, + name: fieldContext.name, + formItemId: `${id}-form-item`, + formDescriptionId: `${id}-form-item-description`, + formMessageId: `${id}-form-item-message`, ...fieldState, + } +} + +type FormItemContextValue = { + id: string +} + +const FormItemContext = React.createContext( + {} as FormItemContextValue) + +const FormItem = React.forwardRef>( + ({ className, ...props }, ref) => { + const id = React.useId() + + return ( +
+ ) + }) +FormItem.displayName = 'FormItem' + +const FormLabel = React.forwardRef, React.ComponentPropsWithoutRef>( + ({ className, ...props }, ref) => { + const { error, formItemId } = useFormField() + + return (