* Adding bot tags. * Snapshot update. * Moving bot tag to own component. * Snapshots. * Adding missing bot tags, fixing bot profile, allowing tap of bot username to open profile. * Snapshots and tests.
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {General} from 'mattermost-redux/constants';
|
|
|
|
import {getChannel} from 'mattermost-redux/selectors/entities/channels';
|
|
|
|
import {getTheme} from 'mattermost-redux/selectors/entities/preferences';
|
|
|
|
import {getChannelNameForSearchAutocomplete} from 'app/selectors/channel';
|
|
|
|
import ChannelMentionItem from './channel_mention_item';
|
|
|
|
import {getUser} from 'mattermost-redux/selectors/entities/users';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const channel = getChannel(state, ownProps.channelId);
|
|
const displayName = getChannelNameForSearchAutocomplete(state, ownProps.channelId);
|
|
|
|
let isBot = false;
|
|
if (channel.type === General.DM_CHANNEL) {
|
|
const teammate = getUser(state, channel.teammate_id);
|
|
if (teammate && teammate.is_bot) {
|
|
isBot = true;
|
|
}
|
|
}
|
|
|
|
return {
|
|
displayName,
|
|
name: channel.name,
|
|
type: channel.type,
|
|
isBot,
|
|
theme: getTheme(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(ChannelMentionItem);
|