You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import * as React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router';
|
|
import Paper from 'material-ui/Paper';
|
|
|
|
import JournalFetcher from './JournalFetcher';
|
|
import LoginForm from './LoginForm';
|
|
import LoadingIndicator from './LoadingIndicator';
|
|
|
|
import { store, StoreState, CredentialsType, fetchCredentials } from './store';
|
|
|
|
class EteSyncContext extends React.Component {
|
|
props: {
|
|
credentials: CredentialsType;
|
|
};
|
|
|
|
constructor(props: any) {
|
|
super(props);
|
|
this.onFormSubmit = this.onFormSubmit.bind(this);
|
|
}
|
|
|
|
onFormSubmit(username: string, password: string, encryptionPassword: string, serviceApiUrl: string) {
|
|
store.dispatch(fetchCredentials(username, password, encryptionPassword, serviceApiUrl));
|
|
}
|
|
|
|
render() {
|
|
if (this.props.credentials.fetching) {
|
|
return (<LoadingIndicator />);
|
|
} else if (this.props.credentials.value === null) {
|
|
const style = {
|
|
holder: {
|
|
margin: 'auto',
|
|
maxWidth: 400,
|
|
padding: 20,
|
|
},
|
|
};
|
|
|
|
return (
|
|
<Paper zDepth={2} style={style.holder}>
|
|
<LoginForm onSubmit={this.onFormSubmit} error={this.props.credentials.error} />
|
|
</Paper>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<JournalFetcher etesync={this.props.credentials.value} />
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state: StoreState) => {
|
|
return {
|
|
credentials: state.credentials,
|
|
};
|
|
};
|
|
|
|
export default withRouter(connect(
|
|
mapStateToProps
|
|
)(EteSyncContext));
|