ragflow/client/src/pages/login/index.tsx
2024-01-16 19:18:48 +08:00

157 lines
5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { connect, Icon, Dispatch } from 'umi';
import { Input, Form, Button, Checkbox } from 'antd';
import styles from './index.less';
import { rsaPsw } from '@/utils'
import { useState, useEffect, FC } from 'react';
interface LoginProps {
dispatch: Dispatch;
}
const View: FC<LoginProps> = ({
dispatch,
}) => {
const [title, setTitle] = useState('login')
const changeTitle = () => {
setTitle((title) => title === 'login' ? 'register' : 'login')
}
const [form] = Form.useForm();
const [checkNick, setCheckNick] = useState(false);
useEffect(() => {
form.validateFields(['nickname']);
}, [checkNick, form]);
const onCheck = async () => {
try {
const params = await form.validateFields();
var rsaPassWord = rsaPsw(params.password)
if (title === 'login') {
dispatch({
type: 'loginModel/login',
payload: {
email: params.email,
password: rsaPassWord
}
});
} else {
dispatch({
type: 'loginModel/register',
payload: {
nickname: params.nickname,
email: params.email,
password: rsaPassWord,
},
callback() {
setTitle('login')
}
});
}
} catch (errorInfo) {
console.log('Failed:', errorInfo);
}
};
const formItemLayout = {
labelCol: { span: 6 },
// wrapperCol: { span: 8 },
};
const toGoogle = () => {
window.location.href = "https://github.com/login/oauth/authorize?scope=user:email&client_id=302129228f0d96055bee"
}
return (
<div className={styles.loginPage}>
<div className={styles.loginLeft}>
<div className={styles.modal}>
<div className={styles.loginTitle}>
<div>
{title === 'login' ? 'Sign in' : 'Create an account'}
</div>
<span >
{title === 'login' ? 'Were so excited to see you again!' : 'Glad to have you on board!'}
</span>
</div>
<Form form={form} layout="vertical" name="dynamic_rule" style={{ maxWidth: 600 }}>
<Form.Item
{...formItemLayout}
name="email"
label="Email"
rules={[{ required: true, message: 'Please input your name' }]}
>
<Input size='large' placeholder="Please input your name" />
</Form.Item>
{
title === 'register' && <Form.Item
{...formItemLayout}
name="nickname"
label="Nickname"
rules={[{ required: true, message: 'Please input your nickname' }]}
>
<Input size='large' placeholder="Please input your nickname" />
</Form.Item>
}
<Form.Item
{...formItemLayout}
name="password"
label="Password"
rules={[{ required: true, message: 'Please input your name' }]}
>
<Input size='large' placeholder="Please input your name" />
</Form.Item>
{
title === 'login' && <Form.Item
name="remember"
valuePropName="checked"
>
<Checkbox> Remember me</Checkbox>
</Form.Item>
}
<div> {
title === 'login' && (<div>
Dont have an account?
<Button type="link" onClick={changeTitle}>
Sign up
</Button>
</div>)
}
{
title === 'register' && (<div>
Already have an account?
<Button type="link" onClick={changeTitle}>
Sign in
</Button>
</div>)
}
</div>
<Button type="primary" block size='large' onClick={onCheck}>
{title === 'login' ? 'Sign in' : 'Continue'}
</Button>
{
title === 'login' && (<><Button block size='large' onClick={toGoogle} style={{ marginTop: 15 }}>
<div >
<Icon icon="local:google" style={{ verticalAlign: 'middle', marginRight: 5 }} />
Sign in with Google
</div>
</Button>
<Button block size='large' onClick={toGoogle} style={{ marginTop: 15 }}>
<div >
<Icon icon="local:github" style={{ verticalAlign: 'middle', marginRight: 5 }} />
Sign in with Github
</div>
</Button></>)
}
</Form>
</div>
</div>
<div className={styles.loginRight}>
</div>
</div>
);
};
export default connect(({ loginModel, loading }) => ({ loginModel, loading }))(View);