mattermost-mobile/app/screens/edit_post/index.js
Miguel Alatzar 4e3e557519
Dismiss keyboard on edit post close (#4110)
* Dismiss keyboard on edit post close

* Don't use edit post request

* Focus on error
2020-04-07 09:50:35 -07:00

31 lines
832 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 {editPost} from '@mm-redux/actions/posts';
import {getTheme} from '@mm-redux/selectors/entities/preferences';
import {getDimensions, isLandscape} from 'app/selectors/device';
import EditPost from './edit_post';
function mapStateToProps(state, ownProps) {
return {
...getDimensions(state),
post: ownProps.post,
theme: getTheme(state),
isLandscape: isLandscape(state),
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
editPost,
}, dispatch),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(EditPost);