324 lines
8.8 KiB
JavaScript
324 lines
8.8 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
|
|
import { Button, Row, Col } from 'react-bootstrap';
|
|
import FA from 'react-fontawesome';
|
|
|
|
import LockedSettings from './Locked-Settings.jsx';
|
|
import JobSettings from './Job-Settings.jsx';
|
|
import SocialSettings from './Social-Settings.jsx';
|
|
import EmailSettings from './Email-Setting.jsx';
|
|
import LanguageSettings from './Language-Settings.jsx';
|
|
import SettingsSkeleton from './Settings-Skeleton.jsx';
|
|
import UpdateEmail from './routes/update-email';
|
|
|
|
import { toggleUserFlag, showUpdateEmailViewSelector } from './redux';
|
|
import {
|
|
toggleNightMode,
|
|
updateTitle,
|
|
|
|
signInLoadingSelector,
|
|
userSelector
|
|
} from '../../redux';
|
|
import ChildContainer from '../../Child-Container.jsx';
|
|
|
|
const mapStateToProps = createSelector(
|
|
userSelector,
|
|
signInLoadingSelector,
|
|
showUpdateEmailViewSelector,
|
|
(
|
|
{
|
|
username,
|
|
email,
|
|
isAvailableForHire,
|
|
isLocked,
|
|
isGithubCool,
|
|
isTwitter,
|
|
isLinkedIn,
|
|
sendMonthlyEmail,
|
|
sendNotificationEmail,
|
|
sendQuincyEmail
|
|
},
|
|
showLoading,
|
|
showUpdateEmailView
|
|
) => ({
|
|
email,
|
|
isAvailableForHire,
|
|
isGithubCool,
|
|
isLinkedIn,
|
|
isLocked,
|
|
isTwitter,
|
|
sendMonthlyEmail,
|
|
sendNotificationEmail,
|
|
sendQuincyEmail,
|
|
showLoading,
|
|
showUpdateEmailView,
|
|
username
|
|
})
|
|
);
|
|
|
|
const mapDispatchToProps = {
|
|
toggleIsAvailableForHire: () => toggleUserFlag('isAvailableForHire'),
|
|
toggleIsLocked: () => toggleUserFlag('isLocked'),
|
|
toggleMonthlyEmail: () => toggleUserFlag('sendMonthlyEmail'),
|
|
toggleNightMode,
|
|
toggleNotificationEmail: () => toggleUserFlag('sendNotificationEmail'),
|
|
toggleQuincyEmail: () => toggleUserFlag('sendQuincyEmail'),
|
|
updateTitle
|
|
};
|
|
|
|
const propTypes = {
|
|
children: PropTypes.element,
|
|
email: PropTypes.string,
|
|
initialLang: PropTypes.string,
|
|
isAvailableForHire: PropTypes.bool,
|
|
isGithubCool: PropTypes.bool,
|
|
isLinkedIn: PropTypes.bool,
|
|
isLocked: PropTypes.bool,
|
|
isTwitter: PropTypes.bool,
|
|
lang: PropTypes.string,
|
|
sendMonthlyEmail: PropTypes.bool,
|
|
sendNotificationEmail: PropTypes.bool,
|
|
sendQuincyEmail: PropTypes.bool,
|
|
showLoading: PropTypes.bool,
|
|
showUpdateEmailView: PropTypes.bool,
|
|
toggleIsAvailableForHire: PropTypes.func.isRequired,
|
|
toggleIsLocked: PropTypes.func.isRequired,
|
|
toggleMonthlyEmail: PropTypes.func.isRequired,
|
|
toggleNightMode: PropTypes.func.isRequired,
|
|
toggleNotificationEmail: PropTypes.func.isRequired,
|
|
toggleQuincyEmail: PropTypes.func.isRequired,
|
|
updateMyLang: PropTypes.func,
|
|
updateTitle: PropTypes.func.isRequired,
|
|
username: PropTypes.string
|
|
};
|
|
|
|
export class Settings extends React.Component {
|
|
constructor(...props) {
|
|
super(...props);
|
|
this.updateMyLang = this.updateMyLang.bind(this);
|
|
}
|
|
|
|
updateMyLang(e) {
|
|
e.preventDefault();
|
|
const lang = e.target.value;
|
|
this.props.updateMyLang(lang);
|
|
}
|
|
|
|
componentWillMount() {
|
|
this.props.updateTitle('Settings');
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
email,
|
|
isAvailableForHire,
|
|
isGithubCool,
|
|
isLinkedIn,
|
|
isLocked,
|
|
isTwitter,
|
|
sendMonthlyEmail,
|
|
sendNotificationEmail,
|
|
sendQuincyEmail,
|
|
showLoading,
|
|
showUpdateEmailView,
|
|
toggleIsAvailableForHire,
|
|
toggleIsLocked,
|
|
toggleMonthlyEmail,
|
|
toggleNightMode,
|
|
toggleNotificationEmail,
|
|
toggleQuincyEmail,
|
|
username
|
|
} = this.props;
|
|
if (!username && !showLoading) {
|
|
return <SettingsSkeleton />;
|
|
}
|
|
if (showUpdateEmailView) {
|
|
return <UpdateEmail />;
|
|
}
|
|
return (
|
|
<ChildContainer>
|
|
<div className='container'>
|
|
<Row>
|
|
<Col xs={ 12 }>
|
|
<Button
|
|
block={ true }
|
|
bsSize='lg'
|
|
bsStyle='primary'
|
|
className='btn-link-social'
|
|
href={ `/${username}` }
|
|
>
|
|
<FA name='user' />
|
|
Show me my public profile
|
|
</Button>
|
|
<Button
|
|
block={ true }
|
|
bsSize='lg'
|
|
bsStyle='primary'
|
|
className='btn-link-social'
|
|
href={ '/signout' }
|
|
>
|
|
Sign me out of freeCodeCamp
|
|
</Button>
|
|
<Button
|
|
block={ true }
|
|
bsSize='lg'
|
|
bsStyle='primary'
|
|
className='btn-link-social'
|
|
href={ 'mail:team@freecodecamp.com' }
|
|
>
|
|
Email us at team@freecodecamp.com
|
|
</Button>
|
|
</Col>
|
|
</Row>
|
|
<h1 className='text-center'>Settings for your Account</h1>
|
|
<h2 className='text-center'>Actions</h2>
|
|
<Row>
|
|
<Col xs={ 12 }>
|
|
<Button
|
|
block={ true }
|
|
bsSize='lg'
|
|
bsStyle='primary'
|
|
className='btn-link-social'
|
|
onClick={ toggleNightMode }
|
|
>
|
|
Toggle Night Mode
|
|
</Button>
|
|
</Col>
|
|
</Row>
|
|
<Row>
|
|
<Col xs={ 12 }>
|
|
<SocialSettings
|
|
isGithubCool={ isGithubCool }
|
|
isLinkedIn={ isLinkedIn }
|
|
isTwitter={ isTwitter }
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
<div className='spacer' />
|
|
<h2 className='text-center'>Account Settings</h2>
|
|
<Row>
|
|
<Col xs={ 12 }>
|
|
<Button
|
|
block={ true }
|
|
bsSize='lg'
|
|
bsStyle='primary'
|
|
className='btn-link-social'
|
|
href='/commit'
|
|
>
|
|
Edit my pledge
|
|
</Button>
|
|
</Col>
|
|
</Row>
|
|
<div className='spacer' />
|
|
<h2 className='text-center'>Privacy Settings</h2>
|
|
<Row>
|
|
<Col
|
|
md={ 6 }
|
|
mdOffset={ 3 }
|
|
sm={ 8 }
|
|
smOffset={ 2 }
|
|
xs={ 12 }
|
|
>
|
|
<LockedSettings
|
|
isLocked={ isLocked }
|
|
toggle={ toggleIsLocked }
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
<div className='spacer' />
|
|
<h2 className='text-center'>Job Search Settings</h2>
|
|
<Row>
|
|
<Col
|
|
md={ 6 }
|
|
mdOffset={ 3 }
|
|
sm={ 8 }
|
|
smOffset={ 2 }
|
|
xs={ 12 }
|
|
>
|
|
<JobSettings
|
|
isAvailableForHire={ isAvailableForHire }
|
|
toggle={ toggleIsAvailableForHire }
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
<div className='spacer' />
|
|
<h2 className='text-center'>Email Settings</h2>
|
|
<Row>
|
|
<Col
|
|
md={ 6 }
|
|
mdOffset={ 3 }
|
|
sm={ 8 }
|
|
smOffset={ 2 }
|
|
xs={ 12 }
|
|
>
|
|
<EmailSettings
|
|
email={ email }
|
|
sendMonthlyEmail={ sendMonthlyEmail }
|
|
sendNotificationEmail={ sendNotificationEmail }
|
|
sendQuincyEmail={ sendQuincyEmail }
|
|
toggleMonthlyEmail={ toggleMonthlyEmail }
|
|
toggleNotificationEmail={ toggleNotificationEmail }
|
|
toggleQuincyEmail={ toggleQuincyEmail }
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
<div className='spacer' />
|
|
<h2 className='text-center'>Display challenges in:</h2>
|
|
<Row>
|
|
<Col
|
|
md={ 6 }
|
|
mdOffset={ 3 }
|
|
sm={ 8 }
|
|
smOffset={ 2 }
|
|
xs={ 12 }
|
|
>
|
|
<LanguageSettings />
|
|
</Col>
|
|
</Row>
|
|
<div className='spacer' />
|
|
<h2 className='text-center'>Danger Zone</h2>
|
|
<Row>
|
|
<Col
|
|
md={ 6 }
|
|
mdOffset={ 3 }
|
|
sm={ 8 }
|
|
smOffset={ 2 }
|
|
xs={ 12 }
|
|
>
|
|
<Button
|
|
block={ true }
|
|
bsSize='lg'
|
|
bsStyle='danger'
|
|
className='btn-link-social'
|
|
href='/delete-my-account'
|
|
>
|
|
Delete my freeCodeCamp account
|
|
</Button>
|
|
<Button
|
|
block={ true }
|
|
bsSize='lg'
|
|
bsStyle='danger'
|
|
className='btn-link-social'
|
|
href='/reset-my-progress'
|
|
>
|
|
Reset all of my progress and brownie points
|
|
</Button>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
</ChildContainer>
|
|
);
|
|
}
|
|
}
|
|
|
|
Settings.displayName = 'Settings';
|
|
Settings.propTypes = propTypes;
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(Settings);
|