@digilogiclabs/create-saas-app 2.8.0 → 2.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/dist/.tsbuildinfo +1 -1
  2. package/dist/generators/template-generator.js +8 -8
  3. package/dist/generators/template-generator.js.map +1 -1
  4. package/dist/templates/shared/quality/web/src/__tests__/accessibility.test.tsx +3 -3
  5. package/dist/templates/web/ai-platform/template/src/app/page.tsx +207 -207
  6. package/dist/templates/web/base/template/package.json +1 -3
  7. package/dist/templates/web/base/template/src/app/auth/callback/route.ts +32 -18
  8. package/dist/templates/web/base/template/src/app/dashboard/page.tsx +6 -43
  9. package/dist/templates/web/base/template/src/app/globals.css +158 -157
  10. package/dist/templates/web/base/template/src/app/page.tsx +2 -2
  11. package/dist/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +800 -800
  12. package/dist/templates/web/ui-auth/template/src/app/globals.css +96 -95
  13. package/dist/templates/web/ui-auth/template/src/app/login/page.tsx +109 -109
  14. package/dist/templates/web/ui-auth/template/src/app/page.tsx +4 -3
  15. package/dist/templates/web/ui-auth/template/src/app/signup/page.tsx +128 -128
  16. package/dist/templates/web/ui-auth-ai/template/src/app/globals.css +35 -40
  17. package/dist/templates/web/ui-auth-ai/template/src/app/layout.tsx +1 -0
  18. package/dist/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +3 -3
  19. package/dist/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +10 -49
  20. package/dist/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +800 -800
  21. package/dist/templates/web/ui-auth-payments/template/src/app/globals.css +212 -211
  22. package/dist/templates/web/ui-auth-payments/template/src/app/login/page.tsx +109 -109
  23. package/dist/templates/web/ui-auth-payments/template/src/app/page.tsx +350 -350
  24. package/dist/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +506 -506
  25. package/dist/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +128 -128
  26. package/dist/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +143 -143
  27. package/dist/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +184 -184
  28. package/dist/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +143 -233
  29. package/dist/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +10 -50
  30. package/dist/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +800 -800
  31. package/dist/templates/web/ui-auth-payments-ai/template/src/app/globals.css +97 -96
  32. package/dist/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +325 -364
  33. package/dist/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +1 -1
  34. package/dist/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +389 -532
  35. package/dist/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +644 -644
  36. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +119 -163
  37. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +158 -201
  38. package/dist/templates/web/ui-auth-payments-ai-rag/template/package.json +1 -2
  39. package/dist/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +10 -51
  40. package/dist/templates/web/ui-auth-payments-audio/template/src/app/globals.css +97 -96
  41. package/dist/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +402 -403
  42. package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +143 -143
  43. package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +184 -184
  44. package/dist/templates/web/ui-auth-payments-video/template/src/app/globals.css +229 -228
  45. package/dist/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +1 -1
  46. package/dist/templates/web/ui-auth-payments-video/template/src/app/page.tsx +4 -7
  47. package/dist/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +1 -1
  48. package/dist/templates/web/ui-only/template/src/app/globals.css +43 -42
  49. package/package.json +1 -1
  50. package/src/templates/shared/quality/web/src/__tests__/accessibility.test.tsx +3 -3
  51. package/src/templates/web/ai-platform/template/src/app/page.tsx +207 -207
  52. package/src/templates/web/base/template/package.json +1 -3
  53. package/src/templates/web/base/template/src/app/auth/callback/route.ts +32 -18
  54. package/src/templates/web/base/template/src/app/dashboard/page.tsx +6 -43
  55. package/src/templates/web/base/template/src/app/globals.css +158 -157
  56. package/src/templates/web/base/template/src/app/page.tsx +2 -2
  57. package/src/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +800 -800
  58. package/src/templates/web/ui-auth/template/src/app/globals.css +96 -95
  59. package/src/templates/web/ui-auth/template/src/app/login/page.tsx +109 -109
  60. package/src/templates/web/ui-auth/template/src/app/page.tsx +4 -3
  61. package/src/templates/web/ui-auth/template/src/app/signup/page.tsx +128 -128
  62. package/src/templates/web/ui-auth-ai/template/src/app/globals.css +35 -40
  63. package/src/templates/web/ui-auth-ai/template/src/app/layout.tsx +1 -0
  64. package/src/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +3 -3
  65. package/src/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +10 -49
  66. package/src/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +800 -800
  67. package/src/templates/web/ui-auth-payments/template/src/app/globals.css +212 -211
  68. package/src/templates/web/ui-auth-payments/template/src/app/login/page.tsx +109 -109
  69. package/src/templates/web/ui-auth-payments/template/src/app/page.tsx +350 -350
  70. package/src/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +506 -506
  71. package/src/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +128 -128
  72. package/src/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +143 -143
  73. package/src/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +184 -184
  74. package/src/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +143 -233
  75. package/src/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +10 -50
  76. package/src/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +800 -800
  77. package/src/templates/web/ui-auth-payments-ai/template/src/app/globals.css +97 -96
  78. package/src/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +325 -364
  79. package/src/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +1 -1
  80. package/src/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +389 -532
  81. package/src/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +644 -644
  82. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +119 -163
  83. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +158 -201
  84. package/src/templates/web/ui-auth-payments-ai-rag/template/package.json +1 -2
  85. package/src/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +10 -51
  86. package/src/templates/web/ui-auth-payments-audio/template/src/app/globals.css +97 -96
  87. package/src/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +402 -403
  88. package/src/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +143 -143
  89. package/src/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +184 -184
  90. package/src/templates/web/ui-auth-payments-video/template/src/app/globals.css +229 -228
  91. package/src/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +1 -1
  92. package/src/templates/web/ui-auth-payments-video/template/src/app/page.tsx +4 -7
  93. package/src/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +1 -1
  94. package/src/templates/web/ui-only/template/src/app/globals.css +43 -42
@@ -1,144 +1,144 @@
1
- 'use client'
2
-
3
- import React, { useState, useActionState } from 'react'
4
- import { Button, Card, Input, Label } from '@digilogiclabs/saas-factory-ui'
5
- import { useAuth } from '@digilogiclabs/app-sdk'
6
- import { useRouter } from 'next/navigation'
7
- import { signInAction } from '@/lib/actions/auth'
8
-
9
- export function LoginForm() {
10
- const [email, setEmail] = useState('')
11
- const [password, setPassword] = useState('')
12
- const { signIn, signInWithOAuth, loading, error, user } = useAuth()
13
- const [actionState, formAction] = useActionState(signInAction, { success: false })
14
- const router = useRouter()
15
-
16
- // Redirect if already logged in
17
- React.useEffect(() => {
18
- if (user) {
19
- router.push('/')
20
- }
21
- }, [user, router])
22
-
23
- const handleLogin = async (e: React.FormEvent) => {
24
- e.preventDefault()
25
- try {
26
- await signIn(email, password)
27
- router.push('/')
28
- } catch (err) {
29
- console.error('Login error:', err)
30
- }
31
- }
32
-
33
- const handleGoogleLogin = async () => {
34
- try {
35
- await signInWithOAuth('google', window.location.origin)
36
- } catch (err) {
37
- console.error('Google login error:', err)
38
- }
39
- }
40
-
41
- // Enhanced form action that uses both server action validation and client auth
42
- const handleServerAction = async (formData: FormData) => {
43
- const result = await formAction(formData)
44
-
45
- if (result?.success) {
46
- // If server validation passes, proceed with client auth
47
- const emailValue = formData.get('email') as string
48
- const passwordValue = formData.get('password') as string
49
-
50
- try {
51
- await signIn(emailValue, passwordValue)
52
- router.push('/')
53
- } catch (err) {
54
- console.error('Login error:', err)
55
- }
56
- }
57
- }
58
-
59
- if (loading) {
60
- return (
61
- <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
62
- <div>Loading...</div>
63
- </div>
64
- )
65
- }
66
-
67
- return (
68
- <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
69
- <Card className="w-full max-w-md p-8">
70
- <h1 className="text-2xl font-bold text-center mb-6">Sign In</h1>
71
-
72
- {/* Server action errors */}
73
- {actionState?.error && (
74
- <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
75
- {actionState.error}
76
- </div>
77
- )}
78
-
79
- {/* Client auth errors */}
80
- {error && (
81
- <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
82
- {error.message}
83
- </div>
84
- )}
85
-
86
- <form action={handleServerAction} className="space-y-4">
87
- <div>
88
- <Label htmlFor="email">Email</Label>
89
- <Input
90
- id="email"
91
- name="email"
92
- type="email"
93
- value={email}
94
- onChange={(e) => setEmail(e.target.value)}
95
- placeholder="Enter your email"
96
- required
97
- disabled={loading}
98
- />
99
- {actionState?.fieldErrors?.email && (
100
- <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.email[0]}</p>
101
- )}
102
- </div>
103
- <div>
104
- <Label htmlFor="password">Password</Label>
105
- <Input
106
- id="password"
107
- name="password"
108
- type="password"
109
- value={password}
110
- onChange={(e) => setPassword(e.target.value)}
111
- placeholder="Enter your password"
112
- required
113
- disabled={loading}
114
- />
115
- {actionState?.fieldErrors?.password && (
116
- <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.password[0]}</p>
117
- )}
118
- </div>
119
- <Button type="submit" className="w-full" disabled={loading}>
120
- {loading ? 'Signing In...' : 'Sign In'}
121
- </Button>
122
- <Button
123
- type="button"
124
- variant="outline"
125
- className="w-full"
126
- onClick={handleGoogleLogin}
127
- disabled={loading}
128
- >
129
- Sign in with Google
130
- </Button>
131
- </form>
132
-
133
- <div className="mt-4 text-center">
134
- <p className="text-sm text-gray-600 dark:text-gray-300">
135
- Don&apos;t have an account?{' '}
136
- <a href="/signup" className="text-blue-600 hover:underline dark:text-blue-400">
137
- Sign up
138
- </a>
139
- </p>
140
- </div>
141
- </Card>
142
- </div>
143
- )
1
+ 'use client'
2
+
3
+ import React, { useState, useActionState } from 'react'
4
+ import { Button, Card, Input, Label } from '@digilogiclabs/saas-factory-ui'
5
+ import { useAuth } from '@digilogiclabs/app-sdk'
6
+ import { useRouter } from 'next/navigation'
7
+ import { signInAction } from '@/lib/actions/auth'
8
+
9
+ export function LoginForm() {
10
+ const [email, setEmail] = useState('')
11
+ const [password, setPassword] = useState('')
12
+ const { signIn, signInWithOAuth, loading, error, user } = useAuth()
13
+ const [actionState, formAction] = useActionState(signInAction, { success: false })
14
+ const router = useRouter()
15
+
16
+ // Redirect if already logged in
17
+ React.useEffect(() => {
18
+ if (user) {
19
+ router.push('/')
20
+ }
21
+ }, [user, router])
22
+
23
+ const handleLogin = async (e: React.FormEvent) => {
24
+ e.preventDefault()
25
+ try {
26
+ await signIn(email, password)
27
+ router.push('/')
28
+ } catch (err) {
29
+ console.error('Login error:', err)
30
+ }
31
+ }
32
+
33
+ const handleGoogleLogin = async () => {
34
+ try {
35
+ await signInWithOAuth('google')
36
+ } catch (err) {
37
+ console.error('Google login error:', err)
38
+ }
39
+ }
40
+
41
+ // Enhanced form action that uses both server action validation and client auth
42
+ const handleServerAction = async (formData: FormData) => {
43
+ const result = await formAction(formData)
44
+
45
+ if (result?.success) {
46
+ // If server validation passes, proceed with client auth
47
+ const emailValue = formData.get('email') as string
48
+ const passwordValue = formData.get('password') as string
49
+
50
+ try {
51
+ await signIn(emailValue, passwordValue)
52
+ router.push('/')
53
+ } catch (err) {
54
+ console.error('Login error:', err)
55
+ }
56
+ }
57
+ }
58
+
59
+ if (loading) {
60
+ return (
61
+ <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
62
+ <div>Loading...</div>
63
+ </div>
64
+ )
65
+ }
66
+
67
+ return (
68
+ <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
69
+ <Card className="w-full max-w-md p-8">
70
+ <h1 className="text-2xl font-bold text-center mb-6">Sign In</h1>
71
+
72
+ {/* Server action errors */}
73
+ {actionState?.error && (
74
+ <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
75
+ {actionState.error}
76
+ </div>
77
+ )}
78
+
79
+ {/* Client auth errors */}
80
+ {error && (
81
+ <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
82
+ {error.message}
83
+ </div>
84
+ )}
85
+
86
+ <form action={handleServerAction} className="space-y-4">
87
+ <div>
88
+ <Label htmlFor="email">Email</Label>
89
+ <Input
90
+ id="email"
91
+ name="email"
92
+ type="email"
93
+ value={email}
94
+ onChange={(e) => setEmail(e.target.value)}
95
+ placeholder="Enter your email"
96
+ required
97
+ disabled={loading}
98
+ />
99
+ {actionState?.fieldErrors?.email && (
100
+ <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.email[0]}</p>
101
+ )}
102
+ </div>
103
+ <div>
104
+ <Label htmlFor="password">Password</Label>
105
+ <Input
106
+ id="password"
107
+ name="password"
108
+ type="password"
109
+ value={password}
110
+ onChange={(e) => setPassword(e.target.value)}
111
+ placeholder="Enter your password"
112
+ required
113
+ disabled={loading}
114
+ />
115
+ {actionState?.fieldErrors?.password && (
116
+ <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.password[0]}</p>
117
+ )}
118
+ </div>
119
+ <Button type="submit" className="w-full" disabled={loading}>
120
+ {loading ? 'Signing In...' : 'Sign In'}
121
+ </Button>
122
+ <Button
123
+ type="button"
124
+ variant="outline"
125
+ className="w-full"
126
+ onClick={handleGoogleLogin}
127
+ disabled={loading}
128
+ >
129
+ Sign in with Google
130
+ </Button>
131
+ </form>
132
+
133
+ <div className="mt-4 text-center">
134
+ <p className="text-sm text-gray-600 dark:text-gray-300">
135
+ Don&apos;t have an account?{' '}
136
+ <a href="/signup" className="text-blue-600 hover:underline dark:text-blue-400">
137
+ Sign up
138
+ </a>
139
+ </p>
140
+ </div>
141
+ </Card>
142
+ </div>
143
+ )
144
144
  }
@@ -1,185 +1,185 @@
1
- 'use client'
2
-
3
- import React, { useState, useActionState } from 'react'
4
- import { Button, Card, Input, Label } from '@digilogiclabs/saas-factory-ui'
5
- import { useAuth } from '@digilogiclabs/app-sdk'
6
- import { useRouter } from 'next/navigation'
7
- import { signUpAction } from '@/lib/actions/auth'
8
-
9
- export function SignupForm() {
10
- const [name, setName] = useState('')
11
- const [email, setEmail] = useState('')
12
- const [password, setPassword] = useState('')
13
- const [confirmPassword, setConfirmPassword] = useState('')
14
- const { signUp, signInWithOAuth, loading, error, user } = useAuth()
15
- const [actionState, formAction] = useActionState(signUpAction, { success: false })
16
- const router = useRouter()
17
-
18
- // Redirect if already logged in
19
- React.useEffect(() => {
20
- if (user) {
21
- router.push('/')
22
- }
23
- }, [user, router])
24
-
25
- const handleSignUp = async (e: React.FormEvent) => {
26
- e.preventDefault()
27
-
28
- if (password !== confirmPassword) {
29
- console.error('Passwords do not match')
30
- return
31
- }
32
-
33
- try {
34
- await signUp(email, password)
35
- router.push('/')
36
- } catch (err) {
37
- console.error('Sign up error:', err)
38
- }
39
- }
40
-
41
- const handleGoogleSignUp = async () => {
42
- try {
43
- await signInWithOAuth('google', window.location.origin)
44
- } catch (err) {
45
- console.error('Google sign up error:', err)
46
- }
47
- }
48
-
49
- // Enhanced form action that uses both server action validation and client auth
50
- const handleServerAction = async (formData: FormData) => {
51
- const result = await formAction(formData)
52
-
53
- if (result?.success) {
54
- // If server validation passes, proceed with client auth
55
- const emailValue = formData.get('email') as string
56
- const passwordValue = formData.get('password') as string
57
- const nameValue = formData.get('name') as string
58
-
59
- try {
60
- await signUp(emailValue, passwordValue)
61
- router.push('/')
62
- } catch (err) {
63
- console.error('Sign up error:', err)
64
- }
65
- }
66
- }
67
-
68
- if (loading) {
69
- return (
70
- <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
71
- <div>Loading...</div>
72
- </div>
73
- )
74
- }
75
-
76
- return (
77
- <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
78
- <Card className="w-full max-w-md p-8">
79
- <h1 className="text-2xl font-bold text-center mb-6">Sign Up</h1>
80
-
81
- {/* Server action errors */}
82
- {actionState?.error && (
83
- <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
84
- {actionState.error}
85
- </div>
86
- )}
87
-
88
- {/* Client auth errors */}
89
- {error && (
90
- <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
91
- {error.message}
92
- </div>
93
- )}
94
-
95
- <form action={handleServerAction} className="space-y-4">
96
- <div>
97
- <Label htmlFor="name">Name</Label>
98
- <Input
99
- id="name"
100
- name="name"
101
- type="text"
102
- value={name}
103
- onChange={(e) => setName(e.target.value)}
104
- placeholder="Enter your name"
105
- required
106
- disabled={loading}
107
- />
108
- {actionState?.fieldErrors?.name && (
109
- <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.name[0]}</p>
110
- )}
111
- </div>
112
- <div>
113
- <Label htmlFor="email">Email</Label>
114
- <Input
115
- id="email"
116
- name="email"
117
- type="email"
118
- value={email}
119
- onChange={(e) => setEmail(e.target.value)}
120
- placeholder="Enter your email"
121
- required
122
- disabled={loading}
123
- />
124
- {actionState?.fieldErrors?.email && (
125
- <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.email[0]}</p>
126
- )}
127
- </div>
128
- <div>
129
- <Label htmlFor="password">Password</Label>
130
- <Input
131
- id="password"
132
- name="password"
133
- type="password"
134
- value={password}
135
- onChange={(e) => setPassword(e.target.value)}
136
- placeholder="Enter your password"
137
- required
138
- disabled={loading}
139
- />
140
- {actionState?.fieldErrors?.password && (
141
- <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.password[0]}</p>
142
- )}
143
- </div>
144
- <div>
145
- <Label htmlFor="confirmPassword">Confirm Password</Label>
146
- <Input
147
- id="confirmPassword"
148
- name="confirmPassword"
149
- type="password"
150
- value={confirmPassword}
151
- onChange={(e) => setConfirmPassword(e.target.value)}
152
- placeholder="Confirm your password"
153
- required
154
- disabled={loading}
155
- />
156
- {actionState?.fieldErrors?.confirmPassword && (
157
- <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.confirmPassword[0]}</p>
158
- )}
159
- </div>
160
- <Button type="submit" className="w-full" disabled={loading}>
161
- {loading ? 'Signing Up...' : 'Sign Up'}
162
- </Button>
163
- <Button
164
- type="button"
165
- variant="outline"
166
- className="w-full"
167
- onClick={handleGoogleSignUp}
168
- disabled={loading}
169
- >
170
- Sign up with Google
171
- </Button>
172
- </form>
173
-
174
- <div className="mt-4 text-center">
175
- <p className="text-sm text-gray-600 dark:text-gray-300">
176
- Already have an account?{' '}
177
- <a href="/login" className="text-blue-600 hover:underline dark:text-blue-400">
178
- Sign in
179
- </a>
180
- </p>
181
- </div>
182
- </Card>
183
- </div>
184
- )
1
+ 'use client'
2
+
3
+ import React, { useState, useActionState } from 'react'
4
+ import { Button, Card, Input, Label } from '@digilogiclabs/saas-factory-ui'
5
+ import { useAuth } from '@digilogiclabs/app-sdk'
6
+ import { useRouter } from 'next/navigation'
7
+ import { signUpAction } from '@/lib/actions/auth'
8
+
9
+ export function SignupForm() {
10
+ const [name, setName] = useState('')
11
+ const [email, setEmail] = useState('')
12
+ const [password, setPassword] = useState('')
13
+ const [confirmPassword, setConfirmPassword] = useState('')
14
+ const { signUp, signInWithOAuth, loading, error, user } = useAuth()
15
+ const [actionState, formAction] = useActionState(signUpAction, { success: false })
16
+ const router = useRouter()
17
+
18
+ // Redirect if already logged in
19
+ React.useEffect(() => {
20
+ if (user) {
21
+ router.push('/')
22
+ }
23
+ }, [user, router])
24
+
25
+ const handleSignUp = async (e: React.FormEvent) => {
26
+ e.preventDefault()
27
+
28
+ if (password !== confirmPassword) {
29
+ console.error('Passwords do not match')
30
+ return
31
+ }
32
+
33
+ try {
34
+ await signUp(email, password)
35
+ router.push('/')
36
+ } catch (err) {
37
+ console.error('Sign up error:', err)
38
+ }
39
+ }
40
+
41
+ const handleGoogleSignUp = async () => {
42
+ try {
43
+ await signInWithOAuth('google')
44
+ } catch (err) {
45
+ console.error('Google sign up error:', err)
46
+ }
47
+ }
48
+
49
+ // Enhanced form action that uses both server action validation and client auth
50
+ const handleServerAction = async (formData: FormData) => {
51
+ const result = await formAction(formData)
52
+
53
+ if (result?.success) {
54
+ // If server validation passes, proceed with client auth
55
+ const emailValue = formData.get('email') as string
56
+ const passwordValue = formData.get('password') as string
57
+ const nameValue = formData.get('name') as string
58
+
59
+ try {
60
+ await signUp(emailValue, passwordValue)
61
+ router.push('/')
62
+ } catch (err) {
63
+ console.error('Sign up error:', err)
64
+ }
65
+ }
66
+ }
67
+
68
+ if (loading) {
69
+ return (
70
+ <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
71
+ <div>Loading...</div>
72
+ </div>
73
+ )
74
+ }
75
+
76
+ return (
77
+ <div className="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
78
+ <Card className="w-full max-w-md p-8">
79
+ <h1 className="text-2xl font-bold text-center mb-6">Sign Up</h1>
80
+
81
+ {/* Server action errors */}
82
+ {actionState?.error && (
83
+ <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
84
+ {actionState.error}
85
+ </div>
86
+ )}
87
+
88
+ {/* Client auth errors */}
89
+ {error && (
90
+ <div className="mb-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded">
91
+ {error.message}
92
+ </div>
93
+ )}
94
+
95
+ <form action={handleServerAction} className="space-y-4">
96
+ <div>
97
+ <Label htmlFor="name">Name</Label>
98
+ <Input
99
+ id="name"
100
+ name="name"
101
+ type="text"
102
+ value={name}
103
+ onChange={(e) => setName(e.target.value)}
104
+ placeholder="Enter your name"
105
+ required
106
+ disabled={loading}
107
+ />
108
+ {actionState?.fieldErrors?.name && (
109
+ <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.name[0]}</p>
110
+ )}
111
+ </div>
112
+ <div>
113
+ <Label htmlFor="email">Email</Label>
114
+ <Input
115
+ id="email"
116
+ name="email"
117
+ type="email"
118
+ value={email}
119
+ onChange={(e) => setEmail(e.target.value)}
120
+ placeholder="Enter your email"
121
+ required
122
+ disabled={loading}
123
+ />
124
+ {actionState?.fieldErrors?.email && (
125
+ <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.email[0]}</p>
126
+ )}
127
+ </div>
128
+ <div>
129
+ <Label htmlFor="password">Password</Label>
130
+ <Input
131
+ id="password"
132
+ name="password"
133
+ type="password"
134
+ value={password}
135
+ onChange={(e) => setPassword(e.target.value)}
136
+ placeholder="Enter your password"
137
+ required
138
+ disabled={loading}
139
+ />
140
+ {actionState?.fieldErrors?.password && (
141
+ <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.password[0]}</p>
142
+ )}
143
+ </div>
144
+ <div>
145
+ <Label htmlFor="confirmPassword">Confirm Password</Label>
146
+ <Input
147
+ id="confirmPassword"
148
+ name="confirmPassword"
149
+ type="password"
150
+ value={confirmPassword}
151
+ onChange={(e) => setConfirmPassword(e.target.value)}
152
+ placeholder="Confirm your password"
153
+ required
154
+ disabled={loading}
155
+ />
156
+ {actionState?.fieldErrors?.confirmPassword && (
157
+ <p className="text-sm text-red-600 mt-1">{actionState.fieldErrors.confirmPassword[0]}</p>
158
+ )}
159
+ </div>
160
+ <Button type="submit" className="w-full" disabled={loading}>
161
+ {loading ? 'Signing Up...' : 'Sign Up'}
162
+ </Button>
163
+ <Button
164
+ type="button"
165
+ variant="outline"
166
+ className="w-full"
167
+ onClick={handleGoogleSignUp}
168
+ disabled={loading}
169
+ >
170
+ Sign up with Google
171
+ </Button>
172
+ </form>
173
+
174
+ <div className="mt-4 text-center">
175
+ <p className="text-sm text-gray-600 dark:text-gray-300">
176
+ Already have an account?{' '}
177
+ <a href="/login" className="text-blue-600 hover:underline dark:text-blue-400">
178
+ Sign in
179
+ </a>
180
+ </p>
181
+ </div>
182
+ </Card>
183
+ </div>
184
+ )
185
185
  }