* Dismiss keyboard on edit post close * Don't use edit post request * Focus on error Co-authored-by: Miguel Alatzar <this.migbot@gmail.com>
31 lines
832 B
JavaScript
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);
|