120 lines
4 KiB
JavaScript
120 lines
4 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { reduxForm } from 'redux-form';
|
|
import { bindActionCreators } from 'redux';
|
|
import { Link, browserHistory } from 'react-router';
|
|
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
|
import InlineSVG from 'react-inlinesvg';
|
|
import axios from 'axios';
|
|
import { Helmet } from 'react-helmet';
|
|
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';
|
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
|
const logoUrl = require('../../../images/p5js-logo.svg');
|
|
|
|
class AccountView extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.closeAccountPage = this.closeAccountPage.bind(this);
|
|
this.gotoHomePage = this.gotoHomePage.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
document.body.className = this.props.theme;
|
|
}
|
|
|
|
closeAccountPage() {
|
|
browserHistory.goBack();
|
|
}
|
|
|
|
gotoHomePage() {
|
|
browserHistory.push('/');
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<section className="form-container form-container--align-top form-container--align-left account-container">
|
|
<Helmet>
|
|
<title>p5.js Web Editor | Account</title>
|
|
</Helmet>
|
|
<div className="form-container__header">
|
|
<button className="form-container__logo-button" onClick={this.gotoHomePage}>
|
|
<InlineSVG src={logoUrl} alt="p5js Logo" />
|
|
</button>
|
|
<button className="form-container__exit-button" onClick={this.closeAccountPage}>
|
|
<InlineSVG src={exitUrl} alt="Close Account Page" />
|
|
</button>
|
|
</div>
|
|
<div className="form-container__content">
|
|
<h2 className="form-container__title">My Account</h2>
|
|
<Tabs className="account__tabs">
|
|
<TabList>
|
|
<div className="preference__subheadings">
|
|
<Tab><h4 className="preference__subheading">Account</h4></Tab>
|
|
<Tab><h4 className="preference__subheading">Access Tokens</h4></Tab>
|
|
</div>
|
|
</TabList>
|
|
<TabPanel>
|
|
<AccountForm {...this.props} />
|
|
<h2 className="form-container__divider">Social Login</h2>
|
|
<p className="form-container__context">Link this account with your GitHub account to allow login from both.</p>
|
|
<GithubButton buttonText="Login with GitHub" />
|
|
</TabPanel>
|
|
<TabPanel>
|
|
<APIKeyForm {...this.props} />
|
|
</TabPanel>
|
|
</Tabs>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
}
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
initialValues: state.user, // <- initialValues for reduxForm
|
|
user: state.user,
|
|
apiKeys: state.user.apiKeys,
|
|
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 = {
|
|
theme: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default reduxForm({
|
|
form: 'updateAllSettings',
|
|
fields: ['username', 'email', 'currentPassword', 'newPassword'],
|
|
validate: validateSettings,
|
|
asyncValidate,
|
|
asyncBlurFields: ['username', 'email', 'currentPassword']
|
|
}, mapStateToProps, mapDispatchToProps)(AccountView);
|