33 lines
970 B
JavaScript
33 lines
970 B
JavaScript
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {bindActionCreators} from 'redux';
|
|
|
|
import {handleSendMessage} from 'app/actions/views/user_profile';
|
|
import navigationSceneConnect from 'app/scenes/navigationSceneConnect';
|
|
import {getTheme} from 'app/selectors/preferences';
|
|
|
|
import {getCurrentUserId} from 'mattermost-redux/selectors/entities/users';
|
|
|
|
import UserProfile from './user_profile';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const {config} = state.entities.general;
|
|
|
|
return {
|
|
config,
|
|
currentUserId: getCurrentUserId(state),
|
|
user: state.entities.users.profiles[ownProps.userId],
|
|
theme: getTheme(state)
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
handleSendMessage
|
|
}, dispatch)
|
|
};
|
|
}
|
|
|
|
export default navigationSceneConnect(mapStateToProps, mapDispatchToProps)(UserProfile);
|