computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.1 KiB
102 lines
3.1 KiB
import Cookies from 'js-cookie'; |
|
import type { FormEvent } from 'react'; |
|
import { useState } from 'react'; |
|
import { httpPost } from '../../lib/http'; |
|
import { TOKEN_COOKIE_NAME } from '../../lib/jwt'; |
|
|
|
export function EmailLoginForm() { |
|
const [email, setEmail] = useState<string>(''); |
|
const [password, setPassword] = useState<string>(''); |
|
const [error, setError] = useState(''); |
|
|
|
const [isLoading, setIsLoading] = useState<boolean>(false); |
|
|
|
const handleFormSubmit = async (e: FormEvent<HTMLFormElement>) => { |
|
e.preventDefault(); |
|
setIsLoading(true); |
|
setError(''); |
|
|
|
const { response, error } = await httpPost<{ token: string }>( |
|
`${import.meta.env.PUBLIC_API_URL}/v1-login`, |
|
{ |
|
email, |
|
password, |
|
}, |
|
); |
|
|
|
// Log the user in and reload the page |
|
if (response?.token) { |
|
Cookies.set(TOKEN_COOKIE_NAME, response.token, { |
|
path: '/', |
|
expires: 30, |
|
domain: import.meta.env.DEV ? 'localhost' : '.roadmap.sh', |
|
}); |
|
window.location.reload(); |
|
|
|
return; |
|
} |
|
|
|
// @todo use proper types |
|
if ((error as any).type === 'user_not_verified') { |
|
window.location.href = `/verification-pending?email=${encodeURIComponent( |
|
email, |
|
)}`; |
|
return; |
|
} |
|
|
|
setIsLoading(false); |
|
setError(error?.message || 'Something went wrong. Please try again later.'); |
|
}; |
|
|
|
return ( |
|
<form className="w-full" onSubmit={handleFormSubmit}> |
|
<label htmlFor="email" className="sr-only"> |
|
Email address |
|
</label> |
|
<input |
|
name="email" |
|
type="email" |
|
autoComplete="email" |
|
required |
|
className="block w-full rounded-lg border border-gray-300 px-3 py-2 shadow-sm outline-none placeholder:text-gray-400 focus:ring-2 focus:ring-black focus:ring-offset-1" |
|
placeholder="Email Address" |
|
value={email} |
|
onInput={(e) => setEmail(String((e.target as any).value))} |
|
/> |
|
<label htmlFor="password" className="sr-only"> |
|
Password |
|
</label> |
|
<input |
|
name="password" |
|
type="password" |
|
autoComplete="current-password" |
|
required |
|
className="mt-2 block w-full rounded-lg border border-gray-300 px-3 py-2 shadow-sm outline-none placeholder:text-gray-400 focus:ring-2 focus:ring-black focus:ring-offset-1" |
|
placeholder="Password" |
|
value={password} |
|
onInput={(e) => setPassword(String((e.target as any).value))} |
|
/> |
|
|
|
<p className="mb-3 mt-2 text-sm text-gray-500"> |
|
<a |
|
href="/forgot-password" |
|
className="text-blue-800 hover:text-blue-600" |
|
> |
|
Reset your password? |
|
</a> |
|
</p> |
|
|
|
{error && ( |
|
<p className="mb-2 rounded-md bg-red-100 p-2 text-red-800">{error}</p> |
|
)} |
|
|
|
<button |
|
type="submit" |
|
disabled={isLoading} |
|
className="inline-flex w-full items-center justify-center rounded-lg bg-black p-2 py-3 text-sm font-medium text-white outline-none focus:ring-2 focus:ring-black focus:ring-offset-1 disabled:bg-gray-400" |
|
> |
|
{isLoading ? 'Please wait...' : 'Continue'} |
|
</button> |
|
</form> |
|
); |
|
}
|
|
|