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>
28 lines
796 B
JavaScript
28 lines
796 B
JavaScript
// Package imports.
|
|
import { connect } from "react-redux";
|
|
|
|
// Our imports.
|
|
import { mentionCompose } from "flavours/glitch/actions/compose";
|
|
import { makeGetNotification } from "flavours/glitch/selectors";
|
|
|
|
import Notification from "../components/notification";
|
|
|
|
const makeMapStateToProps = () => {
|
|
const getNotification = makeGetNotification();
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
notification: getNotification(state, props.notification, props.accountId),
|
|
notifCleaning: state.getIn(["notifications", "cleaningMode"]),
|
|
});
|
|
|
|
return mapStateToProps;
|
|
};
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
onMention: (account, router) => {
|
|
dispatch(mentionCompose(account, router));
|
|
},
|
|
});
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Notification);
|