* Sidebars improvement * Explicitly handle Android back button in code screen * return null on getDerivedStateFromProps when no state changes needed
18 lines
560 B
JavaScript
18 lines
560 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
|
|
import {getStatusForUserId} from 'mattermost-redux/selectors/entities/users';
|
|
|
|
import StatusLabel from './status_label';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
status: getStatusForUserId(state, ownProps.userId),
|
|
theme: getTheme(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(StatusLabel);
|