soapbox/app/gabsocial/features/preferences/index.js

142 wiersze
4.1 KiB
JavaScript
Czysty Zwykły widok Historia

import React from 'react';
import { connect } from 'react-redux';
import { defineMessages, injectIntl } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
import PropTypes from 'prop-types';
2020-04-16 21:13:22 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import { changeSetting } from 'gabsocial/actions/settings';
import Column from '../ui/components/column';
2020-04-21 01:20:07 +00:00
import {
SimpleForm,
FieldsGroup,
RadioGroup,
RadioItem,
} from 'gabsocial/features/forms';
2020-04-21 00:33:19 +00:00
import SettingsCheckbox from './components/settings_checkbox';
const messages = defineMessages({
heading: { id: 'column.preferences', defaultMessage: 'Preferences' },
});
2020-04-16 21:13:22 +00:00
// TODO: Pull dynamically
const themes = {
cobalt: 'cobalt',
'gabsocial-light': 'Light',
default: 'Dark',
contrast: 'High contrast',
halloween: 'Halloween',
neenster: 'neenster',
glinner: 'glinner',
lime: 'lime',
};
const mapStateToProps = state => ({
settings: state.get('settings'),
});
export default @connect(mapStateToProps)
@injectIntl
class Preferences extends ImmutablePureComponent {
static propTypes = {
dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
2020-04-16 21:13:22 +00:00
settings: ImmutablePropTypes.map,
};
2020-04-16 21:13:22 +00:00
constructor(props) {
super(props);
this.state = { isLoading: false };
}
getFormData = (form) => {
return Object.fromEntries(
Array.from(form).map(i => [i.name, i.value])
);
}
onThemeChange = e => {
const { dispatch } = this.props;
dispatch(changeSetting(['theme'], e.target.value));
2020-04-16 21:13:22 +00:00
}
onDefaultPrivacyChange = e => {
const { dispatch } = this.props;
dispatch(changeSetting(['defaultPrivacy'], e.target.value));
}
render() {
2020-04-16 21:13:22 +00:00
const { settings, intl } = this.props;
return (
2020-04-16 21:13:22 +00:00
<Column icon='users' heading={intl.formatMessage(messages.heading)} backBtnSlim>
2020-04-21 01:20:07 +00:00
<SimpleForm>
2020-04-20 23:52:33 +00:00
2020-04-21 00:33:19 +00:00
<FieldsGroup>
<div className='input with_label select optional user_setting_theme'>
<div className='label_input'>
<label className='select optional' htmlFor='user_setting_theme'>Site theme</label>
<div className='label_input__wrapper'>
<select
className='select optional'
name='user[setting_theme]'
id='user_setting_theme'
onChange={this.onThemeChange}
defaultValue={settings.get('theme')}
>
{Object.keys(themes).map(theme => (
<option key={theme} value={theme}>
{themes[theme]}
</option>
))}
</select>
2020-04-16 21:13:22 +00:00
</div>
</div>
</div>
2020-04-21 00:33:19 +00:00
</FieldsGroup>
2020-04-20 23:52:33 +00:00
2020-04-21 00:33:19 +00:00
<FieldsGroup>
2020-04-21 01:20:07 +00:00
<RadioGroup label='Post privacy' onChange={this.onDefaultPrivacyChange}>
<RadioItem
label='Public'
hint='Everyone can see'
checked={settings.get('defaultPrivacy') === 'public'}
value='public'
/>
<RadioItem
label='Unlisted'
hint='Everyone can see, but not listed on public timelines'
checked={settings.get('defaultPrivacy') === 'unlisted'}
value='unlisted'
/>
<RadioItem
label='Followers-only'
hint='Only show to followers'
checked={settings.get('defaultPrivacy') === 'private'}
value='private'
/>
</RadioGroup>
2020-04-21 00:33:19 +00:00
</FieldsGroup>
<FieldsGroup>
<SettingsCheckbox
label='Show confirmation dialog before unfollowing someone'
path={['unfollowModal']}
/>
<SettingsCheckbox
label='Show confirmation dialog before reposting'
path={['boostModal']}
/>
<SettingsCheckbox
label='Show confirmation dialog before deleting a post'
path={['deleteModal']}
/>
</FieldsGroup>
</SimpleForm>
2020-04-16 21:13:22 +00:00
</Column>
);
}
}