~cytrogen/masto-fe

ref: f8dc013b0d81d5d463c086e291ce99ab1d796a9d masto-fe/app/javascript/mastodon/features/compose/containers/privacy_dropdown_container.js -rw-r--r-- 795 bytes
f8dc013b — Cytrogen [feature] Add language selector to local settings 13 days 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
import { connect } from "react-redux";

import { changeComposeVisibility } from "../../../actions/compose";
import { openModal, closeModal } from "../../../actions/modal";
import { isUserTouching } from "../../../is_mobile";
import PrivacyDropdown from "../components/privacy_dropdown";

const mapStateToProps = state => ({
  value: state.getIn(["compose", "privacy"]),
});

const mapDispatchToProps = dispatch => ({

  onChange (value) {
    dispatch(changeComposeVisibility(value));
  },

  isUserTouching,
  onModalOpen: props => dispatch(openModal({
    modalType: "ACTIONS",
    modalProps: props,
  })),
  onModalClose: () => dispatch(closeModal({
    modalType: undefined,
    ignoreFocus: false,
  })),

});

export default connect(mapStateToProps, mapDispatchToProps)(PrivacyDropdown);