2022-01-23 23:23:09 +01:00
|
|
|
import localforage from "localforage";
|
|
|
|
import axios from 'axios';
|
|
|
|
import { FunctionComponent, useCallback, useState } from "react";
|
|
|
|
import { Button } from '@revoltchat/ui/lib/components/atoms/inputs/Button';
|
|
|
|
import { InputBox } from '@revoltchat/ui/lib/components/atoms/inputs/InputBox';
|
|
|
|
import { H1 } from '@revoltchat/ui/lib/components/atoms/heading/H1';
|
|
|
|
import { H2 } from '@revoltchat/ui/lib/components/atoms/heading/H2';
|
2022-02-05 20:17:00 +01:00
|
|
|
import { API_URL, BOT_PREFIX } from "../App";
|
2022-01-23 23:23:09 +01:00
|
|
|
|
|
|
|
const Login: FunctionComponent = () => {
|
|
|
|
const [username, setUsername] = useState('');
|
|
|
|
const [showInitial, setShowInitial] = useState(true);
|
|
|
|
const [showSecond, setShowSecond] = useState(false);
|
|
|
|
const [statusMsg, setStatusMsg] = useState('');
|
|
|
|
const [code, setCode] = useState('');
|
|
|
|
const [nonce, setNonce] = useState('');
|
|
|
|
|
|
|
|
const getCode = useCallback(async () => {
|
|
|
|
if (!username) return;
|
|
|
|
setShowInitial(false);
|
|
|
|
|
|
|
|
try {
|
|
|
|
const res = await axios.post(`${API_URL}/login/begin`, { user: username });
|
|
|
|
setShowSecond(true);
|
|
|
|
setCode(res.data.code);
|
|
|
|
setNonce(res.data.nonce);
|
|
|
|
setUsername(res.data.uid);
|
|
|
|
} catch(e: any) {
|
|
|
|
setStatusMsg(e?.message || e);
|
|
|
|
setShowInitial(true);
|
|
|
|
setShowSecond(false);
|
|
|
|
}
|
|
|
|
}, [ username ]);
|
|
|
|
|
|
|
|
const getSession = useCallback(async () => {
|
|
|
|
try {
|
|
|
|
const res = await axios.post(`${API_URL}/login/complete`, {
|
|
|
|
nonce, code, user: username
|
|
|
|
});
|
|
|
|
|
|
|
|
await localforage.setItem('auth', { user: res.data.user, token: res.data.token });
|
|
|
|
|
|
|
|
setShowSecond(false);
|
|
|
|
window.location.reload();
|
|
|
|
} catch(e: any) {
|
|
|
|
setStatusMsg(e?.message || e);
|
|
|
|
}
|
|
|
|
}, [ nonce, code, username ]);
|
|
|
|
|
|
|
|
return (
|
2022-05-03 22:14:20 +02:00
|
|
|
<div style={{ marginLeft: '12px', padding: '16px 0' }}>
|
|
|
|
<H1>Log in</H1>
|
2022-01-23 23:23:09 +01:00
|
|
|
{statusMsg.length ? <a>{statusMsg}</a> : <br/>}
|
|
|
|
<div hidden={!showInitial}>
|
|
|
|
<InputBox
|
|
|
|
onChange={e => {
|
|
|
|
setUsername(e.target.value);
|
|
|
|
setStatusMsg('');
|
|
|
|
}}
|
|
|
|
placeholder="Enter your user ID..."
|
|
|
|
style={{ width: "200px", float: "left" }}
|
|
|
|
/>
|
|
|
|
<Button onClick={getCode} disabled={username.length == 0}>Continue</Button>
|
|
|
|
</div>
|
|
|
|
<div hidden={!showSecond}>
|
|
|
|
<H2>Your code: <a>{code}</a></H2>
|
|
|
|
<p style={{ color: "var(--foreground)" }}>
|
|
|
|
Run <code style={{ userSelect: 'all' }}>
|
2022-02-05 20:17:00 +01:00
|
|
|
{BOT_PREFIX}login {code}
|
2022-01-23 23:23:09 +01:00
|
|
|
</code> in any server using AutoMod, then <a
|
|
|
|
onClick={getSession}
|
|
|
|
style={{ cursor: 'pointer' }}
|
|
|
|
>click here</a>.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Login;
|