mattermost-mobile/app/components/message_attachments/action_menu/index.js
Joram Wilander 10a1e93e7d MM-12348 Persist interactive menu choices past channel switch and share with thread view (#2207)
* Persist interactive menu choices past channel switch and share with thread view

* Remove unneeded async
2018-10-03 15:08:05 -03:00

29 lines
844 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
import {setMenuActionSelector, selectAttachmentMenuAction} from 'app/actions/views/post';
import ActionMenu from './action_menu';
function mapStateToProps(state, ownProps) {
return {
theme: getTheme(state),
selected: state.views.post.submittedMenuActions[ownProps.postId],
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
selectAttachmentMenuAction,
setMenuActionSelector,
}, dispatch),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(ActionMenu);