workaround for notif clearing

master
Ondřej Hruška 7 years ago
parent b1217242fc
commit f82e90bf11
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
  1. 34
      app/javascript/glitch/components/notification/container.js

@ -19,38 +19,30 @@ Imports:
// Package imports // // Package imports //
import { connect } from 'react-redux'; import { connect } from 'react-redux';
// Mastodon imports //
import { makeGetNotification } from '../../../mastodon/selectors';
// Our imports // // Our imports //
import Notification from '.'; import Notification from '.';
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
/* const mapStateToProps = (state, props) => {
// replace account id with object
State mapping: let leNotif = props.notification.set('account', state.getIn(['accounts', props.notification.get('account')]));
--------------
The `mapStateToProps()` function maps various state properties to the // populate markedForDelete from state - is mysteriously lost somewhere
props of our component. We wrap this in `makeMapStateToProps()` so that for (let n of state.getIn(['notifications', 'items'])) {
we only have to call `makeGetNotification()` once instead of every if (n.get('id') === props.notification.get('id')) {
time. leNotif = leNotif.set('markedForDelete', n.get('markedForDelete'));
break;
}
}
*/ return ({
notification: leNotif,
const makeMapStateToProps = () => {
const getNotification = makeGetNotification();
const mapStateToProps = (state, props) => ({
notification: getNotification(state, props.notification, props.accountId),
settings: state.get('local_settings'), settings: state.get('local_settings'),
notifCleaning: state.getIn(['notifications', 'cleaningMode']), notifCleaning: state.getIn(['notifications', 'cleaningMode']),
}); });
return mapStateToProps;
}; };
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
export default connect(makeMapStateToProps)(Notification); export default connect(mapStateToProps)(Notification);

Loading…
Cancel
Save