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