insomnia/packages/insomnia-app/app/ui/components/modals/login-modal.js
2018-12-12 12:36:11 -05:00

141 lines
3.8 KiB
JavaScript

import React, { PureComponent } from 'react';
import autobind from 'autobind-decorator';
import Link from '../base/link';
import Modal from '../base/modal';
import ModalBody from '../base/modal-body';
import ModalHeader from '../base/modal-header';
import ModalFooter from '../base/modal-footer';
import * as session from '../../../sync/session';
import * as sync from '../../../sync';
@autobind
class LoginModal extends PureComponent {
constructor(props) {
super(props);
this.state = {
step: 1,
loading: false,
error: '',
title: '',
message: '',
};
}
_setModalRef(n) {
this.modal = n;
}
_setPasswordInputRef(n) {
this._passwordInput = n;
}
_setEmailInputRef(n) {
this._emailInput = n;
}
async _handleLogin(e) {
e.preventDefault();
this.setState({ error: '', loading: true });
const email = this._emailInput.value;
const password = this._passwordInput.value;
try {
await session.login(email, password);
// Clear all existing sync data that might be there and enable sync
process.nextTick(async () => {
await sync.resetLocalData();
await sync.doInitialSync();
});
this.setState({ step: 2, loading: false });
} catch (e) {
this.setState({ error: e.message, loading: false });
}
}
show(options = {}) {
const { title, message } = options;
this.setState({ step: 1, error: '', loading: false, title, message });
this.modal.show();
setTimeout(() => this._emailInput.focus(), 100);
}
hide() {
this.modal.hide();
}
render() {
const { step, title, message, loading, error } = this.state;
let inner;
if (step === 1) {
inner = [
<ModalHeader key="header">{title || 'Login to Your Account'}</ModalHeader>,
<ModalBody key="body" className="pad">
{message ? <p className="notice info">{message}</p> : null}
<div className="form-control form-control--outlined no-pad-top">
<label>
Email
<input
type="email"
required="required"
placeholder="me@mydomain.com"
ref={this._setEmailInputRef}
/>
</label>
</div>
<div className="form-control form-control--outlined">
<label>
Password
<input
type="password"
required="required"
placeholder="•••••••••••••••••"
ref={this._setPasswordInputRef}
/>
</label>
</div>
{error ? <div className="danger pad-top">** {error}</div> : null}
</ModalBody>,
<ModalFooter key="footer">
<div className="margin-left">
Don't have an account yet? <Link href="https://insomnia.rest/app/">Signup</Link>
</div>
<button type="submit" className="btn">
{loading ? <i className="fa fa-spin fa-refresh margin-right-sm" /> : null}
Login
</button>
</ModalFooter>,
];
} else {
inner = [
<ModalHeader key="header">Login Success</ModalHeader>,
<ModalBody key="body" className="pad no-pad-top">
<h1>Enjoy your stay!</h1>
<p>
If you have any questions or concerns, send you email to{' '}
<Link href="https://insomnia.rest/support/">support@insomnia.rest</Link>
</p>
</ModalBody>,
<ModalFooter key="footer">
<button type="button" className="btn" onClick={this.hide}>
Close
</button>
</ModalFooter>,
];
}
return (
<form onSubmit={this._handleLogin}>
<Modal ref={this._setModalRef} {...this.props}>
{inner}
</Modal>
</form>
);
}
}
export default LoginModal;