import * as React from 'react'; import { Switch, Route, Redirect } from 'react-router'; import RaisedButton from 'material-ui/RaisedButton'; import TextField from 'material-ui/TextField'; import Toggle from 'material-ui/Toggle'; import { JournalList } from './JournalList'; import { JournalView } from './JournalView'; import * as EteSync from './api/EteSync'; import { routeResolver } from './App'; import * as C from './Constants'; const CONTEXT_SESSION_KEY = 'EteSyncContext'; enum LoadState { Initial = 'INIT', Working = 'WORKING', Done = 'DONE', } export interface EteSyncContextType { serviceApiUrl: string; credentials: EteSync.Credentials; encryptionKey: string; } export class EteSyncContext extends React.Component { server: TextField; username: TextField; password: TextField; encryptionPassword: TextField; state: { context?: EteSyncContextType; loadState: LoadState; showAdvanced?: boolean; error?: Error; }; constructor(props: any) { super(props); this.state = {loadState: LoadState.Initial}; this.generateEncryption = this.generateEncryption.bind(this); this.toggleAdvancedSettings = this.toggleAdvancedSettings.bind(this); const contextStr = sessionStorage.getItem(CONTEXT_SESSION_KEY); if (contextStr !== null) { const context: EteSyncContextType = JSON.parse(contextStr); this.state = { loadState: LoadState.Done, context }; } } generateEncryption(e: any) { e.preventDefault(); const server = this.state.showAdvanced ? this.server.getValue() : C.serviceApiBase; let authenticator = new EteSync.Authenticator(server); this.setState({ loadState: LoadState.Working }); const username = this.username.getValue(); const password = this.password.getValue(); const encryptionPassword = this.encryptionPassword.getValue(); authenticator.getAuthToken(username, password).then((authToken) => { const credentials = new EteSync.Credentials(username, authToken); const derived = EteSync.deriveKey(username, encryptionPassword); const context = { serviceApiUrl: server, credentials, encryptionKey: derived, }; sessionStorage.setItem(CONTEXT_SESSION_KEY, JSON.stringify(context)); this.setState({ loadState: LoadState.Done, context }); }).catch((error) => { this.setState({ loadState: LoadState.Initial, error }); }); } toggleAdvancedSettings() { this.setState(Object.assign( {}, this.state, {showAdvanced: !this.state.showAdvanced})); } render() { if (this.state.loadState === LoadState.Initial) { let advancedSettings = null; if (this.state.showAdvanced) { advancedSettings = (