1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
import DesktopView from '@/core/components/views/DesktopView'
import useRegister from '../hooks/useRegister'
import Link from '@/core/components/elements/Link/Link'
import Alert from '@/core/components/elements/Alert/Alert'
import PageContent from '@/lib/content/components/PageContent'
import BottomPopup from '@/core/components/elements/Popup/BottomPopup'
import ReCAPTCHA from 'react-google-recaptcha'
import Image from 'next/image'
import { useEffect } from 'react'
import { setCookie } from 'cookies-next'
import { signIn, useSession } from 'next-auth/react'
import { useRouter } from 'next/router'
import LogoSpinner from '@/core/components/elements/Spinner/LogoSpinner'
const RegisterDesktop = () => {
const {
handleChangeInput,
handleSubmit,
isLoading,
isValid,
alert,
companyNameRef,
fullnameRef,
emailRef,
passwordRef,
recaptchaRef,
tnd,
setTnd
} = useRegister()
const { data: session } = useSession()
const router = useRouter()
const handleGoogle = async () => {
await signIn('google', { callbackUrl: '/register?source=google' })
}
useEffect(() => {
if(session){
setCookie('auth', JSON.stringify(session?.odooUser))
router.push('/')
}
},[session])
if (router.query.source) {
return (
<BottomPopup active={true} close=''>
<div className='leading-7 text-gray_r-12/80 flex justify-center'>Mohon Tunggu</div>
<div className='container flex justify-center my-4'>
<LogoSpinner width={48} height={48} />
</div>
</BottomPopup>
)
}
return (
<DesktopView>
<div className='container mx-auto'>
<div className='grid grid-cols-2 gap-x-10 pt-16'>
<div>
<h1 className='text-2xl font-semibold'>Daftar Akun Indoteknik</h1>
<h2 className='text-gray_r-11 font-normal mt-1 mb-4'>
Buat akun sekarang lebih mudah dan terverifikasi
</h2>
{alert && (
<Alert className='text-center' type={alert.type}>
{alert.children}
</Alert>
)}
<form className='w-full mt-6 flex flex-col gap-y-4' onSubmit={handleSubmit}>
<div>
<label htmlFor='companyName'>
Nama Perusahaan <span className='text-gray_r-11'>(opsional)</span>
</label>
<input
type='text'
id='companyName'
name='companyName'
className='form-input w-full mt-3'
ref={companyNameRef}
onChange={handleChangeInput}
placeholder='cth: INDOTEKNIK DOTCOM GEMILANG'
autoCapitalize='true'
/>
</div>
<div>
<label htmlFor='fullname'>Nama Lengkap</label>
<input
type='text'
id='fullname'
name='fullname'
className='form-input w-full mt-3'
ref={fullnameRef}
onChange={handleChangeInput}
placeholder='John Doe'
/>
</div>
<div>
<label htmlFor='email'>Alamat Email</label>
<input
type='email'
name='email'
id='email'
className='form-input w-full mt-3'
ref={emailRef}
onChange={handleChangeInput}
placeholder='contoh@email.com'
/>
</div>
<div>
<label htmlFor='password'>Kata Sandi</label>
<input
type='password'
name='password'
id='password'
className='form-input w-full mt-3'
ref={passwordRef}
onChange={handleChangeInput}
placeholder='••••••••••••'
/>
</div>
<ReCAPTCHA ref={recaptchaRef} sitekey={process.env.NEXT_PUBLIC_RECAPTCHA_GOOGLE} />
<div className='flex items-center mt-4 '>
<input
type='checkbox'
id='sdk'
className='form-input flex items-start w-fit mr-2'
required
/>
<label className='inline'>
Dengan ini saya menyetujui{' '}
<span onClick={() => setTnd(true)} className='cursor-pointer text-danger-500'>
syarat dan ketentuan
</span>{' '}
yang berlaku
</label>
</div>
<button
type='submit'
className='btn-yellow w-full mt-2'
disabled={!isValid || isLoading}
>
{!isLoading ? 'Daftar' : 'Loading...'}
</button>
</form>
<div>
<BottomPopup active={tnd} close={() => setTnd(false)}>
<PageContent path='/register#tnd'></PageContent>
</BottomPopup>
</div>
<div className='flex items-center mt-3 mb-3'>
<hr className='flex-1' />
<p className='text-gray-400'>ATAU</p>
<hr className='flex-1' />
</div>
<button
type='submit'
className='border border-gray-500 p-2 rounded-md hover:bg-gray-100 w-full mt-2 flex items-center justify-center gap-x-2'
onClick={() => handleGoogle()}
>
<Image
src='/images/icons8-google.svg'
alt='google image'
className='h-7 w-7'
width={10}
height={10}
/>
<p>Daftar dengan Google</p>
</button>
<div className='text-gray_r-11 mt-10'>
Sudah punya akun Indoteknik?{' '}
<Link href='/login' className='inline'>
Masuk
</Link>
</div>
</div>
<div>
<PageContent path='/register' />
</div>
</div>
</div>
</DesktopView>
)
}
export default RegisterDesktop
|