mattermost-mobile/app/screens/edit_channel/index.js
Elias Nahum dcaaaee44c
MM-30164 fix safe area insets (#4979)
* MM-30164 fix safe area insets

* Fix unit test setup mock for react-native-device-info

* Add insets for edit profile screen

* Fix about screen

* Fix theme screen

* Lock phone screen to portrait

* fix unit tests

* Fix autocomplete layout
2020-11-23 20:10:09 -03:00

38 lines
1.1 KiB
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 {getCurrentChannel} from '@mm-redux/selectors/entities/channels';
import {getCurrentTeamUrl} from '@mm-redux/selectors/entities/teams';
import {patchChannel, getChannel} from '@mm-redux/actions/channels';
import {getTheme} from '@mm-redux/selectors/entities/preferences';
import {setChannelDisplayName} from 'app/actions/views/channel';
import EditChannel from './edit_channel';
function mapStateToProps(state) {
const {updateChannel: updateChannelRequest} = state.requests.channels;
const channel = getCurrentChannel(state);
return {
channel,
currentTeamUrl: getCurrentTeamUrl(state),
updateChannelRequest,
theme: getTheme(state),
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
patchChannel,
getChannel,
setChannelDisplayName,
}, dispatch),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(EditChannel);