~cytrogen/masto-fe

ref: 5c79cd6cf732c348b3cf63e9e6c79d189e42d08d masto-fe/app/javascript/mastodon/features/notifications/containers/column_settings_container.js -rw-r--r-- 3.2 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
75
76
77
78
import { defineMessages, injectIntl } from "react-intl";

import { connect } from "react-redux";

import { showAlert } from "../../../actions/alerts";
import { openModal } from "../../../actions/modal";
import { setFilter, clearNotifications, requestBrowserPermission } from "../../../actions/notifications";
import { changeAlerts as changePushNotifications } from "../../../actions/push_notifications";
import { changeSetting } from "../../../actions/settings";
import ColumnSettings from "../components/column_settings";

const messages = defineMessages({
  clearMessage: { id: "notifications.clear_confirmation", defaultMessage: "Are you sure you want to permanently clear all your notifications?" },
  clearConfirm: { id: "notifications.clear", defaultMessage: "Clear notifications" },
  permissionDenied: { id: "notifications.permission_denied_alert", defaultMessage: "Desktop notifications can't be enabled, as browser permission has been denied before" },
});

const mapStateToProps = state => ({
  settings: state.getIn(["settings", "notifications"]),
  pushSettings: state.get("push_notifications"),
  alertsEnabled: state.getIn(["settings", "notifications", "alerts"]).includes(true),
  browserSupport: state.getIn(["notifications", "browserSupport"]),
  browserPermission: state.getIn(["notifications", "browserPermission"]),
});

const mapDispatchToProps = (dispatch, { intl }) => ({

  onChange (path, checked) {
    if (path[0] === "push") {
      if (checked && typeof window.Notification !== "undefined" && Notification.permission !== "granted") {
        dispatch(requestBrowserPermission((permission) => {
          if (permission === "granted") {
            dispatch(changePushNotifications(path.slice(1), checked));
          } else {
            dispatch(showAlert({ message: messages.permissionDenied }));
          }
        }));
      } else {
        dispatch(changePushNotifications(path.slice(1), checked));
      }
    } else if (path[0] === "quickFilter") {
      dispatch(changeSetting(["notifications", ...path], checked));
      dispatch(setFilter("all"));
    } else if (path[0] === "alerts" && checked && typeof window.Notification !== "undefined" && Notification.permission !== "granted") {
      if (checked && typeof window.Notification !== "undefined" && Notification.permission !== "granted") {
        dispatch(requestBrowserPermission((permission) => {
          if (permission === "granted") {
            dispatch(changeSetting(["notifications", ...path], checked));
          } else {
            dispatch(showAlert({ message: messages.permissionDenied }));
          }
        }));
      } else {
        dispatch(changeSetting(["notifications", ...path], checked));
      }
    } else {
      dispatch(changeSetting(["notifications", ...path], checked));
    }
  },

  onClear () {
    dispatch(openModal({
      modalType: "CONFIRM",
      modalProps: {
        message: intl.formatMessage(messages.clearMessage),
        confirm: intl.formatMessage(messages.clearConfirm),
        onConfirm: () => dispatch(clearNotifications()),
      },
    }));
  },

  onRequestNotificationPermission () {
    dispatch(requestBrowserPermission());
  },

});

export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(ColumnSettings));