mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-04-27 13:53:01 +02:00
Create LoginForm for displaying on AccountManager
This commit is contained in:
parent
3d329c8a87
commit
7aa8848fe8
2 changed files with 271 additions and 6 deletions
269
src/components/management/AccountManager/LoginForm.jsx
Normal file
269
src/components/management/AccountManager/LoginForm.jsx
Normal file
|
@ -0,0 +1,269 @@
|
|||
import Inferno from 'inferno';
|
||||
import Component from 'inferno-component';
|
||||
import PropTypes from 'prop-types';
|
||||
import marked from 'marked';
|
||||
import store from 'store';
|
||||
|
||||
import { Modal } from '../../structure/Modal';
|
||||
import { SearchBox } from '../../management/SearchBox';
|
||||
|
||||
import helpMarkdown from '../../../assets/text/help.md';
|
||||
|
||||
export class LoginForm extends Component {
|
||||
constructor (props) {
|
||||
super(props);
|
||||
|
||||
PropTypes.checkPropTypes({
|
||||
logIn: PropTypes.func.isRequired,
|
||||
signUp: PropTypes.func.isRequired,
|
||||
}, props, 'prop', 'LoginForm');
|
||||
|
||||
this.state = {
|
||||
visibleTab: 'login',
|
||||
loginEmail: '',
|
||||
loginPassword: '',
|
||||
loginEmailError: '',
|
||||
loginPasswordError: '',
|
||||
signupEmail: '',
|
||||
signupUsername: '',
|
||||
signupPublicName: '',
|
||||
signupPassword: '',
|
||||
signupConfirm: '',
|
||||
signupAllowEmail: true,
|
||||
signupEmailError: '',
|
||||
signupUsernameError: '',
|
||||
signupPasswordError: '',
|
||||
signupConfirmError: '',
|
||||
signupEmailChecking: false,
|
||||
signupUsernameChecking: false,
|
||||
takenUsernames: [],
|
||||
};
|
||||
}
|
||||
|
||||
changeTab (tab) {
|
||||
this.setState({ visibleTab: tab });
|
||||
}
|
||||
|
||||
updateField (field, event) {
|
||||
const requiredFields = ['loginEmail', 'loginPassword', 'signupEmail', 'signupPassword', 'signupConfirm'];
|
||||
const {value, checked} = event.target;
|
||||
const fieldUpdate = {};
|
||||
let isValid = true;
|
||||
if (requiredFields.includes(field)) {
|
||||
const errorFieldName = `${field}Error`;
|
||||
if (value === '') {
|
||||
isValid = false;
|
||||
fieldUpdate[errorFieldName] = 'This field must not be blank';
|
||||
} else if (field.includes('Email') && !/.+@.+/g.test(value)) {
|
||||
isValid = false;
|
||||
fieldUpdate[errorFieldName] = 'The email address you entered looks wrong';
|
||||
} else if (field === 'signupPassword' && value.length < 6) {
|
||||
isValid = false;
|
||||
fieldUpdate[errorFieldName] = 'Please make your password at least 6 characters long';
|
||||
} else if ((field === 'signupPassword' && value !== this.state.signupConfirm)
|
||||
|| (field === 'signupConfirm' && value !== this.state.signupPassword)) {
|
||||
isValid = false;
|
||||
fieldUpdate[errorFieldName] = 'Your passwords must match';
|
||||
}
|
||||
}
|
||||
|
||||
if (isValid) {
|
||||
fieldUpdate[field] = (field === 'signupAllowEmail') ? checked : value;
|
||||
}
|
||||
this.setState(fieldUpdate);
|
||||
}
|
||||
|
||||
checkFieldUnique (field, event) {
|
||||
const uniqueFields = ['signupEmail', 'signupUsername'];
|
||||
const {value} = event.target;
|
||||
const fieldUpdate = {};
|
||||
let isUnique = true;
|
||||
if (uniqueFields.includes(field)) {
|
||||
const errorFieldName = `${field}Error`;
|
||||
|
||||
const request = new Request('./api/', {
|
||||
method: 'POST',
|
||||
mode: 'cors',
|
||||
redirect: 'follow',
|
||||
headers: new Headers({
|
||||
'Content-Type': 'application/json'
|
||||
}),
|
||||
body: JSON.stringify({
|
||||
action: 'login',
|
||||
email,
|
||||
password,
|
||||
}),
|
||||
});
|
||||
return fetch(request).then(response => response.json()).then(responseJSON => {
|
||||
const { data, error } = responseJSON;
|
||||
if (error) {
|
||||
console.error(data);
|
||||
} else {
|
||||
store.set('LexicongaToken', data);
|
||||
this.setState({ isLoggedIn: true }, () => {
|
||||
this.props.updater.sync();
|
||||
});
|
||||
}
|
||||
});
|
||||
if (value === '') {
|
||||
isUnique = false;
|
||||
fieldUpdate[errorFieldName] = 'This field must not be blank';
|
||||
} else if (field.includes('Email') && !/.+@.+/g.test(value)) {
|
||||
isUnique = false;
|
||||
fieldUpdate[errorFieldName] = 'The email address you entered looks wrong';
|
||||
} else if (field === 'signupPassword' && value.length < 6) {
|
||||
isUnique = false;
|
||||
fieldUpdate[errorFieldName] = 'Please make your password at least 6 characters long';
|
||||
} else if ((field === 'signupPassword' && value !== this.state.signupConfirm)
|
||||
|| (field === 'signupConfirm' && value !== this.state.signupPassword)) {
|
||||
isUnique = false;
|
||||
fieldUpdate[errorFieldName] = 'Your passwords must match';
|
||||
}
|
||||
}
|
||||
|
||||
if (field === 'signupUsername' && value !== '') {
|
||||
if (this.state.takenUsernames.length < 1) {
|
||||
fetch()
|
||||
}
|
||||
}
|
||||
|
||||
this.setState(fieldUpdate);
|
||||
}
|
||||
|
||||
render () {
|
||||
return (
|
||||
<div className='columns'>
|
||||
<div className='column'>
|
||||
<div className='tabs is-boxed'>
|
||||
<ul>
|
||||
<li className={this.state.visibleTab === 'login' ? 'is-active' : null}>
|
||||
<a onClick={() => this.changeTab('login')}>
|
||||
Log In
|
||||
</a>
|
||||
</li>
|
||||
<li className={this.state.visibleTab === 'signup' ? 'is-active' : null}>
|
||||
<a onClick={() => this.changeTab('signup')}>
|
||||
Sign Up
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
{this.state.visibleTab === 'login'
|
||||
? (
|
||||
<div>
|
||||
<h3 className='title is-3'>
|
||||
Log In
|
||||
</h3>
|
||||
<div className='field'>
|
||||
<label className='label'>
|
||||
Email/Username
|
||||
</label>
|
||||
<div className='control'>
|
||||
<input className='input' type='email' />
|
||||
</div>
|
||||
</div>
|
||||
<div className='field'>
|
||||
<label className='label'>
|
||||
Password
|
||||
</label>
|
||||
<div className='control'>
|
||||
<input className='input' type='password' />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
<div>
|
||||
<h3 className='title is-3'>
|
||||
Create a New Account
|
||||
</h3>
|
||||
<div className='columns'>
|
||||
<div className='column'>
|
||||
<div className='content is-small'>
|
||||
<p>
|
||||
Creating an account allows you to save and switch between as many dictionaries as you need
|
||||
and access them from any device for free! If you have a dictionary you've been working on
|
||||
loaded already, it will automatically be uploaded to your account when you log in for the
|
||||
first time.
|
||||
</p>
|
||||
<p>
|
||||
Plus if you allow us to send you emails, we'll make sure that you're the first to hear
|
||||
about any new features that get added or if any of our policies change for any reason.
|
||||
We'll never spam you or sell your information.
|
||||
</p>
|
||||
<p>
|
||||
By creating an account, you are indicating that you agree to the <a>Terms of Service</a> and
|
||||
that you understand Lexiconga's <a>Privacy Policy</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className='column'>
|
||||
<div className='field'>
|
||||
<label className='label'>
|
||||
Email Address<sup>*</sup>
|
||||
</label>
|
||||
<div className='control'>
|
||||
<input className='input' type='email' value={this.state.signupEmail}
|
||||
onInput={(event) => this.updateField('signupEmail', event)} />
|
||||
</div>
|
||||
</div>
|
||||
<div className='field'>
|
||||
<label className='label'>
|
||||
Username
|
||||
</label>
|
||||
<div className='help'>
|
||||
This is your unique identifier that appears in the URL if you ever decide to share your dictionaries publicly.
|
||||
</div>
|
||||
<div className='control'>
|
||||
<input className='input' type='text' value={this.state.signupUsername}
|
||||
onInput={(event) => this.updateField('signupUsername', event)} />
|
||||
</div>
|
||||
</div>
|
||||
<div className='field'>
|
||||
<label className='label'>
|
||||
Public Name
|
||||
</label>
|
||||
<div className='help'>
|
||||
This is the name we greet you with and what we display if you ever decide to share your dictionaries publicly.
|
||||
</div>
|
||||
<div className='control'>
|
||||
<input className='input' type='text' value={this.state.signupPublicName}
|
||||
onInput={(event) => this.updateField('signupPublicName', event)} />
|
||||
</div>
|
||||
</div>
|
||||
<div className='field'>
|
||||
<label className='label'>
|
||||
Password<sup>*</sup>
|
||||
</label>
|
||||
<div className='control'>
|
||||
<input className='input' type='password' value={this.state.signupPassword}
|
||||
onInput={(event) => this.updateField('signupPassword', event)} />
|
||||
</div>
|
||||
</div>
|
||||
<div className='field'>
|
||||
<label className='label'>
|
||||
Confirm Password<sup>*</sup>
|
||||
</label>
|
||||
<div className='control'>
|
||||
<input className='input' type='password' value={this.state.signupConfirm}
|
||||
onInput={(event) => this.updateField('signupConfirm', event)} />
|
||||
</div>
|
||||
</div>
|
||||
<div className='field'>
|
||||
<div className='control'>
|
||||
<label className='checkbox'>
|
||||
<input type='checkbox' checked={this.state.signupAllowEmail}
|
||||
onClick={(event) => this.updateField('signupAllowEmail', event)} />
|
||||
Allow Emails
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
|
@ -5,7 +5,7 @@ import marked from 'marked';
|
|||
import store from 'store';
|
||||
|
||||
import { Modal } from '../../structure/Modal';
|
||||
import { SearchBox } from '../../management/SearchBox';
|
||||
import { LoginForm } from './LoginForm';
|
||||
|
||||
import helpMarkdown from '../../../assets/text/help.md';
|
||||
|
||||
|
@ -73,11 +73,7 @@ export class AccountManager extends Component {
|
|||
}
|
||||
return (
|
||||
<Modal buttonText='Log In/Sign Up' title='Log In/Sign Up'>
|
||||
<div className='content has-text-left'>
|
||||
<a className='button' onClick={() => this.logIn('test1@robbie.com', 'password')}>
|
||||
Test that login!
|
||||
</a>
|
||||
</div>
|
||||
<LoginForm logIn={this.logIn.bind(this)} signUp={() => {}} />
|
||||
</Modal>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue