import * as React from 'react'; const Fragment = (React as any).Fragment; import RaisedButton from 'material-ui/RaisedButton'; import TextField from 'material-ui/TextField'; import Toggle from 'material-ui/Toggle'; import { getPalette } from './App'; import * as C from './Constants'; interface FormErrors { errorEmail?: string; errorPassword?: string; errorEncryptionPassword?: string; errorServer?: string; } class LoginForm extends React.Component { state: { showAdvanced?: boolean; errors: FormErrors; server: string; username: string; password: string; encryptionPassword: string; }; props: { onSubmit: (username: string, password: string, encryptionPassword: string, serviceApiUrl: string) => void; error?: Error; }; constructor(props: any) { super(props); this.state = { errors: {}, server: '', username: '', password: '', encryptionPassword: '', }; this.generateEncryption = this.generateEncryption.bind(this); this.toggleAdvancedSettings = this.toggleAdvancedSettings.bind(this); this.handleInputChange = this.handleInputChange.bind(this); } handleInputChange(event: any) { const name = event.target.name; const value = event.target.value; this.setState({ [name]: value }); } generateEncryption(e: any) { e.preventDefault(); const server = this.state.showAdvanced ? this.state.server : C.serviceApiBase; const username = this.state.username; const password = this.state.password; const encryptionPassword = this.state.encryptionPassword; let errors: FormErrors = {}; const fieldRequired = 'This field is required!'; if (!username) { errors.errorEmail = fieldRequired; } if (!password) { errors.errorPassword = fieldRequired; } if (!encryptionPassword) { errors.errorEncryptionPassword = fieldRequired; } if (Object.keys(errors).length) { this.setState({errors: errors}); return; } this.setState({password: '', encryptionPassword: ''}); this.props.onSubmit(username, password, encryptionPassword, server); } toggleAdvancedSettings() { this.setState({showAdvanced: !this.state.showAdvanced}); } render() { let advancedSettings = null; if (this.state.showAdvanced) { advancedSettings = (
); } const styles = { form: { }, forgotPassword: { color: getPalette('accent1Color'), paddingTop: 20, }, advancedSettings: { marginTop: 20, }, submit: { marginTop: 40, textAlign: 'right', }, }; return ( {(this.props.error) && (
Error! {this.props.error.message}
)}

Please Log In

Forgot password?
{advancedSettings}
); } } export default LoginForm;