Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
75 lines
2.1 KiB
JavaScript
75 lines
2.1 KiB
JavaScript
import { connect } from "react-redux";
|
|
|
|
import { initBoostModal } from "../../../actions/boosts";
|
|
import { mentionCompose } from "../../../actions/compose";
|
|
import {
|
|
reblog,
|
|
favourite,
|
|
unreblog,
|
|
unfavourite,
|
|
} from "../../../actions/interactions";
|
|
import {
|
|
hideStatus,
|
|
revealStatus,
|
|
} from "../../../actions/statuses";
|
|
import { boostModal } from "../../../initial_state";
|
|
import { makeGetNotification, makeGetStatus, makeGetReport } from "../../../selectors";
|
|
import Notification from "../components/notification";
|
|
|
|
const makeMapStateToProps = () => {
|
|
const getNotification = makeGetNotification();
|
|
const getStatus = makeGetStatus();
|
|
const getReport = makeGetReport();
|
|
|
|
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"), contextType: "notifications" }) : null,
|
|
report: notification.get("report") ? getReport(state, notification.get("report"), notification.getIn(["report", "target_account", "id"])) : null,
|
|
};
|
|
};
|
|
|
|
return mapStateToProps;
|
|
};
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
onMention: (account, router) => {
|
|
dispatch(mentionCompose(account, router));
|
|
},
|
|
|
|
onModalReblog (status, privacy) {
|
|
dispatch(reblog(status, privacy));
|
|
},
|
|
|
|
onReblog (status, e) {
|
|
if (status.get("reblogged")) {
|
|
dispatch(unreblog(status));
|
|
} else {
|
|
if (e.shiftKey || !boostModal) {
|
|
this.onModalReblog(status);
|
|
} else {
|
|
dispatch(initBoostModal({ status, onReblog: this.onModalReblog }));
|
|
}
|
|
}
|
|
},
|
|
|
|
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")));
|
|
}
|
|
},
|
|
});
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Notification);
|