* Add linter rules for import order and type member delimiters * Remove unneeded group * Group all app/* imports before the internal imports * Move app/ imports before parent imports * Separate @node_modules imports into a different group * Substitute app paths by aliases * Fix @node_modules import order and add test related modules * Add aliases for types and test, and group import types
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
import {bindActionCreators} from 'redux';
|
|
|
|
import {setProfileImageUri} from '@actions/views/edit_profile';
|
|
import {getStatusesByIdsBatchedDebounced} from '@mm-redux/actions/users';
|
|
import {getTheme} from '@mm-redux/selectors/entities/preferences';
|
|
import {getCurrentUserId, getStatusForUserId, getUser} from '@mm-redux/selectors/entities/users';
|
|
import {getProfileImageUri} from '@selectors/views';
|
|
|
|
import ProfilePicture from './profile_picture';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
let status = ownProps.status;
|
|
const user = getUser(state, ownProps.userId);
|
|
if (!status && ownProps.userId) {
|
|
status = getStatusForUserId(state, ownProps.userId);
|
|
}
|
|
|
|
const isCurrentUser = getCurrentUserId(state) === ownProps.userId;
|
|
let profileImageUri = '';
|
|
if (isCurrentUser) {
|
|
profileImageUri = getProfileImageUri(state);
|
|
}
|
|
|
|
return {
|
|
isCurrentUser,
|
|
theme: getTheme(state),
|
|
profileImageUri,
|
|
status,
|
|
user,
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
setProfileImageUri,
|
|
getStatusForId: getStatusesByIdsBatchedDebounced,
|
|
}, dispatch),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ProfilePicture);
|