2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-10 16:25:10 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2018-06-29 13:34:36 +00:00
|
|
|
import { injectIntl, FormattedMessage } from 'react-intl';
|
2017-01-10 16:25:10 +00:00
|
|
|
import SettingToggle from '../../notifications/components/setting_toggle';
|
|
|
|
|
2018-09-14 15:59:48 +00:00
|
|
|
export default @injectIntl
|
|
|
|
class ColumnSettings extends React.PureComponent {
|
2017-01-10 16:25:10 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
settings: ImmutablePropTypes.map.isRequired,
|
|
|
|
onChange: PropTypes.func.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-01-10 16:25:10 +00:00
|
|
|
render () {
|
2018-06-29 13:34:36 +00:00
|
|
|
const { settings, onChange } = this.props;
|
2017-01-10 16:25:10 +00:00
|
|
|
|
|
|
|
return (
|
2017-06-03 23:39:38 +00:00
|
|
|
<div>
|
|
|
|
<span className='column-settings__section'><FormattedMessage id='home.column_settings.basic' defaultMessage='Basic' /></span>
|
2017-01-10 16:25:10 +00:00
|
|
|
|
2017-06-03 23:39:38 +00:00
|
|
|
<div className='column-settings__row'>
|
2017-12-25 15:14:06 +00:00
|
|
|
<SettingToggle prefix='home_timeline' settings={settings} settingPath={['shows', 'reblog']} onChange={onChange} label={<FormattedMessage id='home.column_settings.show_reblogs' defaultMessage='Show boosts' />} />
|
2017-06-03 23:39:38 +00:00
|
|
|
</div>
|
2017-01-10 16:25:10 +00:00
|
|
|
|
2017-06-03 23:39:38 +00:00
|
|
|
<div className='column-settings__row'>
|
2017-12-25 15:14:06 +00:00
|
|
|
<SettingToggle prefix='home_timeline' settings={settings} settingPath={['shows', 'reply']} onChange={onChange} label={<FormattedMessage id='home.column_settings.show_replies' defaultMessage='Show replies' />} />
|
2017-06-03 23:39:38 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-01-10 16:25:10 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|