2022-03-21 11:09:01 -07:00
|
|
|
import * as React from 'react';
|
|
|
|
import { defineMessages, useIntl } from 'react-intl';
|
2022-05-01 14:21:43 -07:00
|
|
|
import { useDispatch } from 'react-redux';
|
2022-03-22 05:42:26 -07:00
|
|
|
import { useHistory } from 'react-router-dom';
|
2022-03-21 11:09:01 -07:00
|
|
|
|
|
|
|
import { fetchMfa } from 'soapbox/actions/mfa';
|
2022-05-01 14:21:43 -07:00
|
|
|
import { useAppSelector, useOwnAccount } from 'soapbox/hooks';
|
2022-03-21 11:09:01 -07:00
|
|
|
|
|
|
|
import List, { ListItem } from '../../components/list';
|
|
|
|
import { Button, Card, CardBody, CardHeader, CardTitle, Column } from '../../components/ui';
|
|
|
|
import Preferences from '../preferences';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
settings: { id: 'settings.settings', defaultMessage: 'Settings' },
|
|
|
|
profile: { id: 'settings.profile', defaultMessage: 'Profile' },
|
|
|
|
security: { id: 'settings.security', defaultMessage: 'Security' },
|
|
|
|
preferences: { id: 'settings.preferences', defaultMessage: 'Preferences' },
|
|
|
|
editProfile: { id: 'settings.edit_profile', defaultMessage: 'Edit Profile' },
|
|
|
|
changeEmail: { id: 'settings.change_email', defaultMessage: 'Change Email' },
|
|
|
|
changePassword: { id: 'settings.change_password', defaultMessage: 'Change Password' },
|
|
|
|
configureMfa: { id: 'settings.configure_mfa', defaultMessage: 'Configure MFA' },
|
|
|
|
deleteAccount: { id: 'settings.delete_account', defaultMessage: 'Delete Account' },
|
|
|
|
});
|
|
|
|
|
2022-05-01 14:21:43 -07:00
|
|
|
/** User settings page. */
|
2022-03-22 05:42:26 -07:00
|
|
|
const Settings = () => {
|
2022-03-21 11:09:01 -07:00
|
|
|
const dispatch = useDispatch();
|
2022-03-22 05:42:26 -07:00
|
|
|
const history = useHistory();
|
|
|
|
const intl = useIntl();
|
|
|
|
|
2022-05-01 14:21:43 -07:00
|
|
|
const mfa = useAppSelector((state) => state.security.get('mfa'));
|
|
|
|
const account = useOwnAccount();
|
2022-03-21 11:09:01 -07:00
|
|
|
|
|
|
|
const navigateToChangeEmail = React.useCallback(() => history.push('/settings/email'), [history]);
|
|
|
|
const navigateToChangePassword = React.useCallback(() => history.push('/settings/password'), [history]);
|
2022-04-19 12:37:48 -07:00
|
|
|
const navigateToMfa = React.useCallback(() => history.push('/settings/mfa'), [history]);
|
2022-03-21 11:09:01 -07:00
|
|
|
const navigateToEditProfile = React.useCallback(() => history.push('/settings/profile'), [history]);
|
|
|
|
|
|
|
|
const isMfaEnabled = mfa.getIn(['settings', 'totp']);
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
dispatch(fetchMfa());
|
|
|
|
}, [dispatch]);
|
|
|
|
|
2022-05-01 14:21:43 -07:00
|
|
|
if (!account) return null;
|
|
|
|
|
|
|
|
const displayName = account.display_name || account.username;
|
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
return (
|
|
|
|
<Column label={intl.formatMessage(messages.settings)} transparent withHeader={false}>
|
|
|
|
<Card variant='rounded'>
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle title={intl.formatMessage(messages.profile)} />
|
|
|
|
</CardHeader>
|
|
|
|
|
|
|
|
<CardBody>
|
|
|
|
<List>
|
|
|
|
<ListItem label={intl.formatMessage(messages.editProfile)} onClick={navigateToEditProfile}>
|
|
|
|
<span>{displayName}</span>
|
|
|
|
</ListItem>
|
|
|
|
</List>
|
|
|
|
</CardBody>
|
|
|
|
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle title={intl.formatMessage(messages.security)} />
|
|
|
|
</CardHeader>
|
|
|
|
|
|
|
|
<CardBody>
|
|
|
|
<List>
|
|
|
|
<ListItem label={intl.formatMessage(messages.changeEmail)} onClick={navigateToChangeEmail} />
|
|
|
|
<ListItem label={intl.formatMessage(messages.changePassword)} onClick={navigateToChangePassword} />
|
|
|
|
<ListItem label={intl.formatMessage(messages.configureMfa)} onClick={navigateToMfa}>
|
|
|
|
{isMfaEnabled ?
|
|
|
|
intl.formatMessage({ id: 'mfa.enabled', defaultMessage: 'Enabled' }) :
|
|
|
|
intl.formatMessage({ id: 'mfa.disabled', defaultMessage: 'Disabled' })}
|
|
|
|
</ListItem>
|
|
|
|
</List>
|
|
|
|
</CardBody>
|
|
|
|
|
2022-05-01 14:21:43 -07:00
|
|
|
<CardHeader>
|
2022-03-21 11:09:01 -07:00
|
|
|
<CardTitle title={intl.formatMessage(messages.preferences)} />
|
|
|
|
</CardHeader>
|
|
|
|
|
|
|
|
<CardBody>
|
|
|
|
<Preferences />
|
|
|
|
</CardBody>
|
|
|
|
|
|
|
|
<CardBody>
|
|
|
|
<div className='mt-4 w-full flex justify-center'>
|
|
|
|
<Button theme='danger' to='/settings/account'>
|
|
|
|
{intl.formatMessage(messages.deleteAccount)}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</CardBody>
|
|
|
|
</Card>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-03-22 05:42:26 -07:00
|
|
|
export default Settings;
|