* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
51 lines
1.8 KiB
JavaScript
51 lines
1.8 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getCustomEmojisByName} from '@mm-redux/selectors/entities/emojis';
|
|
import {getCurrentUserId} from '@mm-redux/selectors/entities/users';
|
|
import {getConfig} from '@mm-redux/selectors/entities/general';
|
|
import {Client4} from '@mm-redux/client';
|
|
import {isMinimumServerVersion} from '@mm-redux/utils/helpers';
|
|
|
|
import {BuiltInEmojis, EmojiIndicesByAlias, Emojis} from 'app/utils/emojis';
|
|
|
|
import Emoji from './emoji';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const config = getConfig(state);
|
|
const emojiName = ownProps.emojiName;
|
|
const customEmojis = getCustomEmojisByName(state);
|
|
|
|
let imageUrl = '';
|
|
let unicode;
|
|
let isCustomEmoji = false;
|
|
let displayTextOnly = false;
|
|
if (EmojiIndicesByAlias.has(emojiName) || BuiltInEmojis.includes(emojiName)) {
|
|
const emoji = Emojis[EmojiIndicesByAlias.get(emojiName)];
|
|
unicode = emoji.filename;
|
|
if (BuiltInEmojis.includes(emojiName)) {
|
|
imageUrl = Client4.getSystemEmojiImageUrl(emoji.filename);
|
|
}
|
|
} else if (customEmojis.has(emojiName)) {
|
|
const emoji = customEmojis.get(emojiName);
|
|
imageUrl = Client4.getCustomEmojiImageUrl(emoji.id);
|
|
isCustomEmoji = true;
|
|
} else {
|
|
displayTextOnly = state.entities.emojis.nonExistentEmoji.has(emojiName) ||
|
|
config.EnableCustomEmoji !== 'true' ||
|
|
config.ExperimentalEnablePostMetadata === 'true' ||
|
|
getCurrentUserId(state) === '' ||
|
|
isMinimumServerVersion(Client4.getServerVersion(), 5, 12);
|
|
}
|
|
|
|
return {
|
|
imageUrl,
|
|
isCustomEmoji,
|
|
displayTextOnly,
|
|
unicode,
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Emoji);
|