Files
mattermost-mobile/app/components/profile_picture/index.js
enahum 031876fb77 RN-382 Refactor at_mention & channel_mention autocomplete (#988)
* RN-382 Refactor at_mention & channel_mention autocomplete

* Feedback review

* If the term changes always trigger a request
2017-10-04 13:36:51 -07:00

37 lines
1.1 KiB
JavaScript

// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {getTheme} from 'app/selectors/preferences';
import {getStatusesByIdsBatchedDebounced} from 'mattermost-redux/actions/users';
import {getStatusForUserId, getUser} from 'mattermost-redux/selectors/entities/users';
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);
}
return {
theme: ownProps.theme || getTheme(state),
status,
user,
...ownProps
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators({
getStatusForId: getStatusesByIdsBatchedDebounced
}, dispatch)
};
}
export default connect(mapStateToProps, mapDispatchToProps)(ProfilePicture);