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>
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import { connect } from "react-redux";
|
|
|
|
import { fetchRelationships } from "mastodon/actions/accounts";
|
|
|
|
import { openDropdownMenu, closeDropdownMenu } from "../actions/dropdown_menu";
|
|
import { openModal, closeModal } from "../actions/modal";
|
|
import DropdownMenu from "../components/dropdown_menu";
|
|
import { isUserTouching } from "../is_mobile";
|
|
|
|
/**
|
|
* @param {import('mastodon/store').RootState} state
|
|
*/
|
|
const mapStateToProps = state => ({
|
|
openDropdownId: state.dropdownMenu.openId,
|
|
openedViaKeyboard: state.dropdownMenu.keyboard,
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch, { status, items, scrollKey }) => ({
|
|
onOpen(id, onItemClick, keyboard) {
|
|
if (status) {
|
|
dispatch(fetchRelationships([status.getIn(["account", "id"])]));
|
|
}
|
|
|
|
dispatch(isUserTouching() ? openModal({
|
|
modalType: "ACTIONS",
|
|
modalProps: {
|
|
status,
|
|
actions: items,
|
|
onClick: onItemClick,
|
|
},
|
|
}) : openDropdownMenu({ id, keyboard, scrollKey }));
|
|
},
|
|
|
|
onClose(id) {
|
|
dispatch(closeModal({
|
|
modalType: "ACTIONS",
|
|
ignoreFocus: false,
|
|
}));
|
|
dispatch(closeDropdownMenu({ id }));
|
|
},
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(DropdownMenu);
|