/* Copyright 2019 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React from 'react'; import PropTypes from 'prop-types'; import { _t } from '../../../languageHandler'; 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 { static propTypes = { mxEvent: PropTypes.object.isRequired, // The Relations model from the JS SDK for reactions to `mxEvent` reactions: PropTypes.object, permalinkCreator: PropTypes.object, getTile: PropTypes.func, getReplyThread: PropTypes.func, onFocusChange: PropTypes.func, }; componentDidMount() { this.props.mxEvent.on("Event.decrypted", this.onDecrypted); } componentWillUnmount() { this.props.mxEvent.removeListener("Event.decrypted", this.onDecrypted); } onDecrypted = () => { // When an event decrypts, it is likely to change the set of available // actions, so we force an update to check again. this.forceUpdate(); } onFocusChange = (focused) => { if (!this.props.onFocusChange) { return; } this.props.onFocusChange(focused); } onCryptoClick = () => { const event = this.props.mxEvent; Modal.createTrackedDialogAsync('Encrypted Event Dialog', '', import('../../../async-components/views/dialogs/EncryptedEventDialog'), {event}, ); } onReplyClick = (ev) => { dis.dispatch({ action: 'reply_to_event', event: this.props.mxEvent, }); } onEditClick = (ev) => { dis.dispatch({ action: 'edit_event', event: this.props.mxEvent, }); } onOptionsClick = (ev) => { const MessageContextMenu = sdk.getComponent('context_menus.MessageContextMenu'); const buttonRect = ev.target.getBoundingClientRect(); const { getTile, getReplyThread } = this.props; const tile = getTile && getTile(); const replyThread = getReplyThread && getReplyThread(); let e2eInfoCallback = null; if (this.props.mxEvent.isEncrypted()) { e2eInfoCallback = () => this.onCryptoClick(); } const menuOptions = { mxEvent: this.props.mxEvent, chevronFace: "none", permalinkCreator: this.props.permalinkCreator, eventTileOps: tile && tile.getEventTileOps ? tile.getEventTileOps() : undefined, collapseReplyThread: replyThread && replyThread.canCollapse() ? replyThread.collapse : undefined, e2eInfoCallback: e2eInfoCallback, onFinished: () => { this.onFocusChange(false); }, }; // The window X and Y offsets are to adjust position when zoomed in to page const buttonRight = buttonRect.right + window.pageXOffset; const buttonBottom = buttonRect.bottom + window.pageYOffset; const buttonTop = buttonRect.top + window.pageYOffset; // Align the right edge of the menu to the right edge of the button menuOptions.right = window.innerWidth - buttonRight; // Align the menu vertically on whichever side of the button has more // space available. if (buttonBottom < window.innerHeight / 2) { menuOptions.top = buttonBottom; } else { menuOptions.bottom = window.innerHeight - buttonTop; } createMenu(MessageContextMenu, menuOptions); this.onFocusChange(true); } isReactionsEnabled() { return SettingsStore.isFeatureEnabled("feature_reactions"); } isEditingEnabled() { return SettingsStore.isFeatureEnabled("feature_message_editing"); } renderReactButton() { if (!this.isReactionsEnabled()) { return null; } return ; } renderAgreeDimension() { if (!this.isReactionsEnabled()) { return null; } const ReactionDimension = sdk.getComponent('messages.ReactionDimension'); return ; } renderLikeDimension() { if (!this.isReactionsEnabled()) { return null; } const ReactionDimension = sdk.getComponent('messages.ReactionDimension'); return ; } render() { let reactButton; let agreeDimensionReactionButtons; let likeDimensionReactionButtons; let replyButton; let editButton; if (isContentActionable(this.props.mxEvent)) { reactButton = this.renderReactButton(); agreeDimensionReactionButtons = this.renderAgreeDimension(); likeDimensionReactionButtons = this.renderLikeDimension(); replyButton = ; } if (this.isEditingEnabled() && canEditContent(this.props.mxEvent)) { editButton = ; } return
{reactButton} {agreeDimensionReactionButtons} {likeDimensionReactionButtons} {replyButton} {editButton}
; } }