p5.js-web-editor/client/modules/User/pages/AccountView.jsx

121 lines
3.7 KiB
React
Raw Normal View History

import PropTypes from 'prop-types';
import React from 'react';
2019-07-22 23:52:19 +02:00
import { reduxForm } from 'redux-form';
import { bindActionCreators } from 'redux';
2019-05-15 16:25:58 +02:00
import { browserHistory } from 'react-router';
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
2019-07-22 23:52:19 +02:00
import axios from 'axios';
import { Helmet } from 'react-helmet';
2019-05-15 16:25:58 +02:00
import { updateSettings, initiateVerification, createApiKey, removeApiKey } from '../actions';
import AccountForm from '../components/AccountForm';
import { validateSettings } from '../../../utils/reduxFormUtils';
import GithubButton from '../components/GithubButton';
import APIKeyForm from '../components/APIKeyForm';
2019-05-24 11:59:56 +02:00
import NavBasic from '../../../components/NavBasic';
class AccountView extends React.Component {
constructor(props) {
super(props);
this.closeAccountPage = this.closeAccountPage.bind(this);
this.gotoHomePage = this.gotoHomePage.bind(this);
}
2018-10-13 22:14:46 +02:00
componentDidMount() {
2019-05-24 11:59:56 +02:00
document.body.className = this.props.theme;
2018-10-13 22:14:46 +02:00
}
closeAccountPage() {
2019-05-15 16:40:09 +02:00
browserHistory.push(this.props.previousPath);
}
gotoHomePage() {
browserHistory.push('/');
}
render() {
return (
<div className="user">
<Helmet>
<title>p5.js Web Editor | Account</title>
</Helmet>
2019-05-24 11:59:56 +02:00
<NavBasic onBack={this.closeAccountPage} />
2019-05-24 11:59:56 +02:00
<section className="modal">
2019-05-24 11:59:56 +02:00
<div className="modal-content">
<div className="modal__header">
<h2 className="modal__title">My Account</h2>
</div>
<Tabs className="account__tabs">
<TabList>
<div className="tabs__titles">
<Tab><h4 className="tabs__title">Account</h4></Tab>
<Tab><h4 className="tabs__title">Access Tokens</h4></Tab>
</div>
</TabList>
<TabPanel>
<AccountForm {...this.props} />
<h2 className="form-container__divider">Social Login</h2>
2019-05-24 11:59:56 +02:00
<p className="account__social-text">
Link this account with your GitHub account to allow login from both.
</p>
<GithubButton buttonText="Login with GitHub" />
2019-05-24 11:59:56 +02:00
</TabPanel>
<TabPanel>
<APIKeyForm {...this.props} />
</TabPanel>
</Tabs>
</div>
</section>
</div>
);
}
}
function mapStateToProps(state) {
return {
initialValues: state.user, // <- initialValues for reduxForm
2019-05-15 16:40:09 +02:00
previousPath: state.ide.previousPath,
user: state.user,
apiKeys: state.user.apiKeys,
2018-10-13 22:14:46 +02:00
theme: state.preferences.theme
};
}
function mapDispatchToProps(dispatch) {
return bindActionCreators({
updateSettings, initiateVerification, createApiKey, removeApiKey
}, dispatch);
}
function asyncValidate(formProps, dispatch, props) {
const fieldToValidate = props.form._active;
if (fieldToValidate) {
const queryParams = {};
queryParams[fieldToValidate] = formProps[fieldToValidate];
queryParams.check_type = fieldToValidate;
return axios.get('/api/signup/duplicate_check', { params: queryParams })
.then((response) => {
if (response.data.exists) {
const error = {};
error[fieldToValidate] = response.data.message;
throw error;
}
});
}
return Promise.resolve(true).then(() => {});
}
AccountView.propTypes = {
2019-05-15 16:40:09 +02:00
previousPath: PropTypes.string.isRequired,
2018-10-13 22:14:46 +02:00
theme: PropTypes.string.isRequired
};
2019-07-22 23:52:19 +02:00
export default reduxForm({
form: 'updateAllSettings',
fields: ['username', 'email', 'currentPassword', 'newPassword'],
validate: validateSettings,
asyncValidate,
asyncBlurFields: ['username', 'email', 'currentPassword']
}, mapStateToProps, mapDispatchToProps)(AccountView);