From 599c49613f94b7f4ac34505688e85158f71b67a9 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Wed, 17 Jul 2019 17:00:36 +0100 Subject: [PATCH] Remove reactions feature flag Fixes https://github.com/vector-im/riot-web/issues/10282 --- src/components/views/messages/MessageActionBar.js | 9 --------- src/components/views/rooms/EventTile.js | 9 ++++----- src/i18n/strings/en_EN.json | 1 - src/settings/Settings.js | 6 ------ 4 files changed, 4 insertions(+), 21 deletions(-) diff --git a/src/components/views/messages/MessageActionBar.js b/src/components/views/messages/MessageActionBar.js index 4a0d4d5b074..6f58dd7befb 100644 --- a/src/components/views/messages/MessageActionBar.js +++ b/src/components/views/messages/MessageActionBar.js @@ -22,7 +22,6 @@ import sdk from '../../../index'; import dis from '../../../dispatcher'; import Modal from '../../../Modal'; import { createMenu } from '../../structures/ContextualMenu'; -import SettingsStore from '../../../settings/SettingsStore'; import { isContentActionable, canEditContent } from '../../../utils/EventUtils'; export default class MessageActionBar extends React.PureComponent { @@ -123,15 +122,7 @@ export default class MessageActionBar extends React.PureComponent { this.onFocusChange(true); } - isReactionsEnabled() { - return SettingsStore.isFeatureEnabled("feature_reactions"); - } - renderReactButton() { - if (!this.isReactionsEnabled()) { - return null; - } - const ReactMessageAction = sdk.getComponent('messages.ReactMessageAction'); const { mxEvent, reactions } = this.props; diff --git a/src/components/views/rooms/EventTile.js b/src/components/views/rooms/EventTile.js index ee1147c0620..ae8b1ee5d3e 100644 --- a/src/components/views/rooms/EventTile.js +++ b/src/components/views/rooms/EventTile.js @@ -202,7 +202,7 @@ module.exports = withMatrixClient(React.createClass({ const client = this.props.matrixClient; client.on("deviceVerificationChanged", this.onDeviceVerificationChanged); this.props.mxEvent.on("Event.decrypted", this._onDecrypted); - if (this.props.showReactions && SettingsStore.isFeatureEnabled("feature_reactions")) { + if (this.props.showReactions) { this.props.mxEvent.on("Event.relationsCreated", this._onReactionsCreated); } }, @@ -227,7 +227,7 @@ module.exports = withMatrixClient(React.createClass({ const client = this.props.matrixClient; client.removeListener("deviceVerificationChanged", this.onDeviceVerificationChanged); this.props.mxEvent.removeListener("Event.decrypted", this._onDecrypted); - if (this.props.showReactions && SettingsStore.isFeatureEnabled("feature_reactions")) { + if (this.props.showReactions) { this.props.mxEvent.removeListener("Event.relationsCreated", this._onReactionsCreated); } }, @@ -490,8 +490,7 @@ module.exports = withMatrixClient(React.createClass({ getReactions() { if ( !this.props.showReactions || - !this.props.getRelationsForEvent || - !SettingsStore.isFeatureEnabled("feature_reactions") + !this.props.getRelationsForEvent ) { return null; } @@ -681,7 +680,7 @@ module.exports = withMatrixClient(React.createClass({ : null; let reactionsRow; - if (SettingsStore.isFeatureEnabled("feature_reactions") && !isRedacted) { + if (!isRedacted) { const ReactionsRow = sdk.getComponent('messages.ReactionsRow'); reactionsRow =