forked from Ivasoft/mattermost-mobile
* MM-19834 Fixed direct mentions highlight color Updated the AtMention to check if it will be highlighted before applying it's color. The highlight function was applying it's color before the AtMention color, so it was being overwritten. * MM-19834 Start Unit Test * MM-19834 Added Unit Tests Added unit tests for the rendering of highlighted/non-highlighted displayname.
22 lines
717 B
JavaScript
22 lines
717 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getUsersByUsername, getCurrentUserMentionKeys} from 'mattermost-redux/selectors/entities/users';
|
|
|
|
import {getTeammateNameDisplaySetting, getTheme} from 'mattermost-redux/selectors/entities/preferences';
|
|
|
|
import AtMention from './at_mention';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
theme: getTheme(state),
|
|
usersByUsername: getUsersByUsername(state),
|
|
mentionKeys: getCurrentUserMentionKeys(state),
|
|
teammateNameDisplay: getTeammateNameDisplaySetting(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(AtMention);
|