114 lines
2.6 KiB
JavaScript
114 lines
2.6 KiB
JavaScript
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { createSelector } from 'reselect';
|
|
import { bindActionCreators } from 'redux';
|
|
import { reduxForm } from 'redux-form';
|
|
|
|
import { FullWidthRow, Spacer } from '../../../helperComponents';
|
|
import { BlockSaveButton, BlockSaveWrapper, FormFields } from '../formHelpers';
|
|
import SectionHeader from './SectionHeader.jsx';
|
|
import { userSelector } from '../../../redux';
|
|
import { updateUserBackend } from '../redux';
|
|
|
|
const mapStateToProps = createSelector(
|
|
userSelector,
|
|
({
|
|
githubProfile = '',
|
|
linkedin = '',
|
|
twitter = '',
|
|
website = ''
|
|
}) => ({
|
|
initialValues: {
|
|
githubProfile,
|
|
linkedin,
|
|
twitter,
|
|
personalWebsite: website
|
|
}
|
|
})
|
|
);
|
|
|
|
const formFields = [
|
|
'githubProfile',
|
|
'linkedin',
|
|
'twitter',
|
|
'personalWebsite'
|
|
];
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return bindActionCreators({
|
|
updateUserBackend
|
|
}, dispatch);
|
|
}
|
|
|
|
const propTypes = {
|
|
fields: PropTypes.object,
|
|
githubProfile: PropTypes.string,
|
|
handleSubmit: PropTypes.func.isRequired,
|
|
linkedin: PropTypes.string,
|
|
personalWebsite: PropTypes.string,
|
|
twitter: PropTypes.string,
|
|
updateUserBackend: PropTypes.func.isRequired,
|
|
username: PropTypes.string
|
|
};
|
|
|
|
class InternetSettings extends PureComponent {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
}
|
|
|
|
handleSubmit({personalWebsite, ...others}) {
|
|
this.props.updateUserBackend({ ...others, website: personalWebsite });
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
fields,
|
|
fields: { _meta: { allPristine } },
|
|
handleSubmit
|
|
} = this.props;
|
|
const options = {
|
|
types: formFields.reduce(
|
|
(all, current) => ({ ...all, [current]: 'url' }),
|
|
{}
|
|
),
|
|
placeholder: false
|
|
};
|
|
return (
|
|
<div className='internet-settings'>
|
|
<SectionHeader>
|
|
Your Internet Presence
|
|
</SectionHeader>
|
|
<FullWidthRow>
|
|
<form
|
|
id='internet-handle-settings'
|
|
onSubmit={ handleSubmit(this.handleSubmit) }
|
|
>
|
|
<FormFields
|
|
fields={ fields }
|
|
options={ options }
|
|
/>
|
|
<Spacer />
|
|
<BlockSaveWrapper>
|
|
<BlockSaveButton disabled={ allPristine }/>
|
|
</BlockSaveWrapper>
|
|
</form>
|
|
</FullWidthRow>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
InternetSettings.displayName = 'InternetSettings';
|
|
InternetSettings.propTypes = propTypes;
|
|
|
|
export default reduxForm(
|
|
{
|
|
form: 'internet-settings',
|
|
fields: formFields
|
|
},
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(InternetSettings);
|