55 lines
2 KiB
JavaScript
55 lines
2 KiB
JavaScript
import { defineMessages, injectIntl } from 'react-intl';
|
|
import { connect } from 'react-redux';
|
|
|
|
import { openModal } from 'soapbox/actions/modals';
|
|
import { clearNotifications, setFilter } from 'soapbox/actions/notifications';
|
|
import { changeAlerts as changePushNotifications } from 'soapbox/actions/push_notifications';
|
|
import { getSettings, changeSetting } from 'soapbox/actions/settings';
|
|
import { getFeatures } from 'soapbox/utils/features';
|
|
|
|
import ColumnSettings from '../components/column_settings';
|
|
|
|
const messages = defineMessages({
|
|
clearHeading: { id: 'notifications.clear_heading', defaultMessage: 'Clear notifications' },
|
|
clearMessage: { id: 'notifications.clear_confirmation', defaultMessage: 'Are you sure you want to permanently clear all your notifications?' },
|
|
clearConfirm: { id: 'notifications.clear', defaultMessage: 'Clear notifications' },
|
|
});
|
|
|
|
const mapStateToProps = state => {
|
|
const instance = state.get('instance');
|
|
const features = getFeatures(instance);
|
|
|
|
return {
|
|
settings: getSettings(state).get('notifications'),
|
|
pushSettings: state.get('push_notifications'),
|
|
supportsEmojiReacts: features.emojiReacts,
|
|
supportsBirthdays: features.birthdays,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch, { intl }) => ({
|
|
|
|
onChange(path, checked) {
|
|
if (path[0] === 'push') {
|
|
dispatch(changePushNotifications(path.slice(1), checked));
|
|
} else if (path[0] === 'quickFilter') {
|
|
dispatch(changeSetting(['notifications', ...path], checked));
|
|
dispatch(setFilter('all'));
|
|
} else {
|
|
dispatch(changeSetting(['notifications', ...path], checked));
|
|
}
|
|
},
|
|
|
|
onClear() {
|
|
dispatch(openModal('CONFIRM', {
|
|
icon: require('@tabler/icons/icons/eraser.svg'),
|
|
heading: intl.formatMessage(messages.clearHeading),
|
|
message: intl.formatMessage(messages.clearMessage),
|
|
confirm: intl.formatMessage(messages.clearConfirm),
|
|
onConfirm: () => dispatch(clearNotifications()),
|
|
}));
|
|
},
|
|
|
|
});
|
|
|
|
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(ColumnSettings));
|