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
|
import React, { useEffect } from 'react';
import { withRouter } from 'react-router-dom';
import Icon from './Icon';
import Button from './Button';
import Input from './Input';
import { useFormState } from 'react-use-form-state';
import { me, facebookLink, vkLink } from '../api';
import './Login.css';
/**
* @typedef {Object} LoginProps
* @property {import('../api').SecureUser} visitor
* @property {import('history').History} history
* @property {import('history').Location} location
* @property {any} onAuth
*/
/**
* Login page
* @param {LoginProps} props
*/
function Login({ visitor, history, location, onAuth }) {
useEffect(() => {
if (visitor.hash) {
const {retpath } = location.state;
console.log(retpath);
history.push(retpath || '/');
}
}, [history, location.state, visitor]);
const [formState, { text, password }] = useFormState();
/**
* @param {React.SyntheticEvent} event
*/
let onSubmit = (event) => {
event.preventDefault();
me(formState.values.username, formState.values.password)
.then(response => {
onAuth(response);
}
).catch(ex => {
console.log(ex);
});
};
return (
<div className="msg-cont">
<div className="dialoglogin">
<p>Please, introduce yourself:</p>
<div style={socialButtonsStyle}>
<a href={facebookLink()} style={facebookButtonStyle}>
<Icon name="ei-sc-facebook" size="s" noFill={true} />Log in
</a>
<a href={vkLink()} style={vkButtonStyle}>
<Icon name="ei-sc-vk" size="s" noFill={true} />
Log in
</a>
</div>
<p>Already registered?</p>
<form onSubmit={onSubmit}>
<Input name="username"
placeholder="Username..."
value={formState.values.username} {...text('username')} /><br />
<Input name="password"
placeholder="Password..."
value={formState.values.password} {...password('password')} /><br />
<Button onClick={onSubmit}>OK</Button>
</form>
</div>
</div>
);
}
export default withRouter(Login);
const socialButtonsStyle = {
display: 'flex',
justifyContent: 'space-evenly',
padding: '4px'
};
const facebookButtonStyle = {
color: '#fff',
padding: '2px 14px',
background: '#3b5998'
};
const vkButtonStyle = {
color: '#fff',
padding: '2px 14px',
background: '#4c75a3'
};
|