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