mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-03-12 17:51:53 +08:00
* Ignore editor file * Integrate Readonly Editor * Remove logs * Implement minimum height * Implement Custom Roadmap Modal * Implement Custom Roadmap progress modal * Implement Readonly Editor * Implement utils * Update `gitignore` * Fix generate renderer script * Refactor UI * Add Empty Roadmap state * Upgrade dependencies and editor update * Update deployment workflow * Update roadmap header * Update dependencies * Refactor Readonly editor * Add Readonly Dummy Editor * Add editor to gitignore * Add Assume Unchanged * Add editor in the tailwind * Fix tailwind issue * Fix URL for add friends * Add share with friends functionality * Update workflow --------- Co-authored-by: Arik Chakma <arikchangma@gmail.com>
103 lines
3.1 KiB
TypeScript
103 lines
3.1 KiB
TypeScript
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>
|
|
);
|
|
}
|