insomnia/app/ui/components/modals/LoginModal.js
2016-11-30 19:54:26 -08:00

141 lines
4.0 KiB
JavaScript

import React, {Component} from 'react';
import Link from '../base/Link';
import Modal from '../base/Modal';
import ModalBody from '../base/ModalBody';
import ModalHeader from '../base/ModalHeader';
import ModalFooter from '../base/ModalFooter';
import * as session from '../../../sync/session';
import {showModal} from './index';
import SignupModal from './SignupModal';
import * as sync from '../../../sync';
import {trackEvent} from '../../../analytics';
class LoginModal extends Component {
state = {
step: 1,
loading: false,
error: '',
title: '',
message: '',
};
_handleLogin = async 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});
}
};
_handleSignup = e => {
e.preventDefault();
this.modal.hide();
showModal(SignupModal);
trackEvent('Login', 'Switch to Signup');
};
show (options = {}) {
const {title, message} = options;
this.setState({step: 1, error: '', loading: false, title, message});
this.modal.show();
setTimeout(() => this._emailInput.focus(), 100);
}
render () {
const {step, title, message} = 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={n => this._emailInput = n}
/>
</label>
</div>
<div className="form-control form-control--outlined">
<label>Password
<input type="password"
required="required"
placeholder="•••••••••••••••••"
ref={n => this._passwordInput = n}/>
</label>
</div>
{this.state.error ? (
<div className="danger pad-top">** {this.state.error}</div>
) : null}
</ModalBody>,
<ModalFooter key="footer">
<div className="margin-left">
Don't have an account yet?
{" "}
<a href="#" onClick={this._handleSignup}>Signup</a>
</div>
<button type="submit" className="btn">
{this.state.loading ? (
<i className="fa fa-spin fa-refresh margin-right-sm"></i>
) : 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/documentation/support-and-feedback/">
support@insomnia.rest
</Link>
</p>
</ModalBody>,
<ModalFooter key="footer">
<button type="submit"
className="btn"
onClick={e => this.modal.hide()}>
Close
</button>
</ModalFooter>
]
}
return (
<form onSubmit={this._handleLogin}>
<Modal ref={m => this.modal = m} {...this.props}>
{inner}
</Modal>
</form>
)
}
}
LoginModal.propTypes = {};
export default LoginModal;