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 * as sync from '../../../sync';
class LoginModal extends Component {
state = {
step: 1,
loading: false,
error: '',
title: '',
message: '',
};
_setModalRef = m => this.modal = m;
_hide = () => this.hide();
_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});
}
};
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 = [
{message}
If you have any questions or concerns, send you email to
{" "}
support@insomnia.rest
Enjoy your stay!