* Add react-navigator dependency * Add react-native-navigation dependency * react-native-navigation, ios and android config * update react-native-navigation * New navigation and code cleanup * Set ScreenBackgroundColor * Fix channel drawer event issue * Applied RNPN non-working popInitial notification * Android navbar and back button * packages and notices * MM-redux update * Fix draft on team switch * Remove custom NavBar
28 lines
743 B
JavaScript
28 lines
743 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getCurrentChannelId} from 'mattermost-redux/selectors/entities/channels';
|
|
|
|
import Config from 'assets/config.json';
|
|
|
|
import Root from './root';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const users = state.entities.users;
|
|
const {currentUserId} = users;
|
|
|
|
let locale = Config.DefaultLocale;
|
|
if (currentUserId && users.profiles[currentUserId]) {
|
|
locale = users.profiles[currentUserId].locale;
|
|
}
|
|
|
|
return {
|
|
...ownProps,
|
|
currentChannelId: getCurrentChannelId(state),
|
|
locale
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Root);
|