18 lines
516 B
JavaScript
18 lines
516 B
JavaScript
import { connect } from 'react-redux';
|
|
import { changeSetting, getSettings } from 'soapbox/actions/settings';
|
|
import { injectIntl } from 'react-intl';
|
|
import ThemeToggle from './theme_toggle';
|
|
|
|
const mapStateToProps = state => {
|
|
return {
|
|
themeMode: getSettings(state).get('themeMode'),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
onToggle(setting) {
|
|
dispatch(changeSetting(['themeMode'], setting));
|
|
},
|
|
});
|
|
|
|
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(ThemeToggle));
|