~cytrogen/masto-fe

ref: 5c79cd6cf732c348b3cf63e9e6c79d189e42d08d masto-fe/app/javascript/mastodon/features/notifications/containers/notification_container.js -rw-r--r-- 2.1 KiB
5c79cd6c — Cytrogen [chore] Add .gstack/ to gitignore a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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);