2016-11-21 05:39:18 +11:00
|
|
|
import { connect } from 'react-redux';
|
2022-06-27 17:30:15 +10:00
|
|
|
import { makeGetNotification, makeGetStatus, makeGetReport } from '../../../selectors';
|
2016-11-21 05:39:18 +11:00
|
|
|
import Notification from '../components/notification';
|
2021-02-11 10:53:12 +11:00
|
|
|
import { initBoostModal } from '../../../actions/boosts';
|
2017-10-06 10:07:59 +11:00
|
|
|
import { mentionCompose } from '../../../actions/compose';
|
2019-01-28 03:54:54 +11:00
|
|
|
import {
|
|
|
|
reblog,
|
|
|
|
favourite,
|
|
|
|
unreblog,
|
|
|
|
unfavourite,
|
|
|
|
} from '../../../actions/interactions';
|
|
|
|
import {
|
|
|
|
hideStatus,
|
|
|
|
revealStatus,
|
|
|
|
} from '../../../actions/statuses';
|
|
|
|
import { boostModal } from '../../../initial_state';
|
2016-11-21 05:39:18 +11:00
|
|
|
|
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getNotification = makeGetNotification();
|
2019-01-28 03:54:54 +11:00
|
|
|
const getStatus = makeGetStatus();
|
2022-06-27 17:30:15 +10:00
|
|
|
const getReport = makeGetReport();
|
2016-11-21 05:39:18 +11:00
|
|
|
|
2019-01-28 03:54:54 +11:00
|
|
|
const mapStateToProps = (state, props) => {
|
|
|
|
const notification = getNotification(state, props.notification, props.accountId);
|
|
|
|
return {
|
|
|
|
notification: notification,
|
|
|
|
status: notification.get('status') ? getStatus(state, { id: notification.get('status') }) : null,
|
2022-06-27 17:30:15 +10:00
|
|
|
report: notification.get('report') ? getReport(state, notification.get('report'), notification.getIn(['report', 'target_account', 'id'])) : null,
|
2019-01-28 03:54:54 +11:00
|
|
|
};
|
|
|
|
};
|
2016-11-21 05:39:18 +11:00
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
2017-10-06 10:07:59 +11:00
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onMention: (account, router) => {
|
|
|
|
dispatch(mentionCompose(account, router));
|
|
|
|
},
|
2019-01-28 03:54:54 +11:00
|
|
|
|
2021-02-11 10:53:12 +11:00
|
|
|
onModalReblog (status, privacy) {
|
|
|
|
dispatch(reblog(status, privacy));
|
2019-01-28 03:54:54 +11:00
|
|
|
},
|
|
|
|
|
|
|
|
onReblog (status, e) {
|
|
|
|
if (status.get('reblogged')) {
|
|
|
|
dispatch(unreblog(status));
|
|
|
|
} else {
|
|
|
|
if (e.shiftKey || !boostModal) {
|
|
|
|
this.onModalReblog(status);
|
|
|
|
} else {
|
2021-02-11 10:53:12 +11:00
|
|
|
dispatch(initBoostModal({ status, onReblog: this.onModalReblog }));
|
2019-01-28 03:54:54 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onFavourite (status) {
|
|
|
|
if (status.get('favourited')) {
|
|
|
|
dispatch(unfavourite(status));
|
|
|
|
} else {
|
|
|
|
dispatch(favourite(status));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onToggleHidden (status) {
|
|
|
|
if (status.get('hidden')) {
|
|
|
|
dispatch(revealStatus(status.get('id')));
|
|
|
|
} else {
|
|
|
|
dispatch(hideStatus(status.get('id')));
|
|
|
|
}
|
|
|
|
},
|
2017-10-06 10:07:59 +11:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Notification);
|