/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2017 New Vector Ltd Copyright 2019 The Matrix.org Foundation C.I.C. 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, {createRef} from 'react'; import ReactDOM from 'react-dom'; import PropTypes from 'prop-types'; import highlight from 'highlight.js'; import * as HtmlUtils from '../../../HtmlUtils'; import {formatDate} from '../../../DateUtils'; import * as sdk from '../../../index'; import Modal from '../../../Modal'; import dis from '../../../dispatcher/dispatcher'; import { _t } from '../../../languageHandler'; import * as ContextMenu from '../../structures/ContextMenu'; import SettingsStore from "../../../settings/SettingsStore"; import ReplyThread from "../elements/ReplyThread"; import {pillifyLinks, unmountPills} from '../../../utils/pillify'; import {IntegrationManagers} from "../../../integrations/IntegrationManagers"; import {isPermalinkHost} from "../../../utils/permalinks/Permalinks"; import {toRightOf} from "../../structures/ContextMenu"; import {copyPlaintext} from "../../../utils/strings"; import AccessibleTooltipButton from "../elements/AccessibleTooltipButton"; export default class TextualBody extends React.Component { static propTypes = { /* the MatrixEvent to show */ mxEvent: PropTypes.object.isRequired, /* a list of words to highlight */ highlights: PropTypes.array, /* link URL for the highlights */ highlightLink: PropTypes.string, /* should show URL previews for this event */ showUrlPreview: PropTypes.bool, /* callback for when our widget has loaded */ onHeightChanged: PropTypes.func, /* the shape of the tile, used */ tileShape: PropTypes.string, }; constructor(props) { super(props); this._content = createRef(); this.state = { // the URLs (if any) to be previewed with a LinkPreviewWidget // inside this TextualBody. links: [], // track whether the preview widget is hidden widgetHidden: false, }; } componentDidMount() { this._unmounted = false; this._pills = []; if (!this.props.editState) { this._applyFormatting(); } } _applyFormatting() { const showLineNumbers = SettingsStore.getValue("showCodeLineNumbers"); this.activateSpoilers([this._content.current]); // pillifyLinks BEFORE linkifyElement because plain room/user URLs in the composer // are still sent as plaintext URLs. If these are ever pillified in the composer, // we should be pillify them here by doing the linkifying BEFORE the pillifying. pillifyLinks([this._content.current], this.props.mxEvent, this._pills); HtmlUtils.linkifyElement(this._content.current); this.calculateUrlPreview(); if (this.props.mxEvent.getContent().format === "org.matrix.custom.html") { // Handle expansion and add buttons const pres = ReactDOM.findDOMNode(this).getElementsByTagName("pre"); if (pres.length > 0) { for (let i = 0; i < pres.length; i++) { // Wrap a div around
so that the copy button can be correctly positioned // when theoverflows and is scrolled horizontally. const div = this._wrapInDiv(pres[i]); this._handleCodeBlockExpansion(pres[i]); this._addCodeExpansionButton(div, pres[i]); this._addCodeCopyButton(div); if (showLineNumbers) { this._addLineNumbers(pres[i]); } } } // Highlight code const codes = ReactDOM.findDOMNode(this).getElementsByTagName("code"); if (codes.length > 0) { for (let i = 0; i < codes.length; i++) { // Do this asynchronously: parsing code takes time and we don't // need to block the DOM update on it. setTimeout(() => { if (this._unmounted) return; for (let i = 0; i < pres.length; i++) { this._highlightCode(codes[i]); } }, 10); } } } } _addCodeExpansionButton(div, pre) { // Calculate how many percent does the pre element take up. // If it's less than 30% we don't add the expansion button. const percentageOfViewport = pre.offsetHeight / window.innerHeight * 100; if (percentageOfViewport < 30) return; const button = document.createElement("span"); button.className = "mx_EventTile_button "; if (pre.className == "mx_EventTile_collapsedCodeBlock") { button.className += "mx_EventTile_expandButton"; } else { button.className += "mx_EventTile_collapseButton"; } button.onclick = async () => { button.className = "mx_EventTile_button "; if (pre.className == "mx_EventTile_collapsedCodeBlock") { pre.className = ""; button.className += "mx_EventTile_collapseButton"; } else { pre.className = "mx_EventTile_collapsedCodeBlock"; button.className += "mx_EventTile_expandButton"; } // By expanding/collapsing we changed // the height, therefore we call this this.props.onHeightChanged(); }; div.appendChild(button); } _addCodeCopyButton(div) { const button = document.createElement("span"); button.className = "mx_EventTile_button mx_EventTile_copyButton "; // Check if expansion button exists. If so // we put the copy button to the bottom const expansionButtonExists = div.getElementsByClassName("mx_EventTile_button"); if (expansionButtonExists.length > 0) button.className += "mx_EventTile_buttonBottom"; button.onclick = async () => { const copyCode = button.parentNode.getElementsByTagName("code")[0]; const successful = await copyPlaintext(copyCode.textContent); const buttonRect = button.getBoundingClientRect(); const GenericTextContextMenu = sdk.getComponent('context_menus.GenericTextContextMenu'); const {close} = ContextMenu.createMenu(GenericTextContextMenu, { ...toRightOf(buttonRect, 2), message: successful ? _t('Copied!') : _t('Failed to copy'), }); button.onmouseleave = close; }; div.appendChild(button); } _wrapInDiv(pre) { const div = document.createElement("div"); div.className = "mx_EventTile_pre_container"; // Insert containing div in place ofblock pre.parentNode.replaceChild(div, pre); // Appendblock and copy button to container div.appendChild(pre); return div; } _handleCodeBlockExpansion(pre) { if (!SettingsStore.getValue("expandCodeByDefault")) { pre.className = "mx_EventTile_collapsedCodeBlock"; } } _addLineNumbers(pre) { pre.innerHTML = '' + pre.innerHTML + ''; const lineNumbers = pre.getElementsByClassName("mx_EventTile_lineNumbers")[0]; // Calculate number of lines in pre const number = pre.innerHTML.split(/\n/).length; // Iterate through lines starting with 1 (number of the first line is 1) for (let i = 1; i < number; i++) { lineNumbers.innerHTML += '' + i + ''; } } _highlightCode(code) { if (SettingsStore.getValue("enableSyntaxHighlightLanguageDetection")) { highlight.highlightBlock(code); } else { // Only syntax highlight if there's a class starting with language- const classes = code.className.split(/\s+/).filter(function(cl) { return cl.startsWith('language-') && !cl.startsWith('language-_'); }); if (classes.length != 0) { highlight.highlightBlock(code); } } } componentDidUpdate(prevProps) { if (!this.props.editState) { const stoppedEditing = prevProps.editState && !this.props.editState; const messageWasEdited = prevProps.replacingEventId !== this.props.replacingEventId; if (messageWasEdited || stoppedEditing) { this._applyFormatting(); } } } componentWillUnmount() { this._unmounted = true; unmountPills(this._pills); } shouldComponentUpdate(nextProps, nextState) { //console.info("shouldComponentUpdate: ShowUrlPreview for %s is %s", this.props.mxEvent.getId(), this.props.showUrlPreview); // exploit that events are immutable :) return (nextProps.mxEvent.getId() !== this.props.mxEvent.getId() || nextProps.highlights !== this.props.highlights || nextProps.replacingEventId !== this.props.replacingEventId || nextProps.highlightLink !== this.props.highlightLink || nextProps.showUrlPreview !== this.props.showUrlPreview || nextProps.editState !== this.props.editState || nextState.links !== this.state.links || nextState.widgetHidden !== this.state.widgetHidden); } calculateUrlPreview() { //console.info("calculateUrlPreview: ShowUrlPreview for %s is %s", this.props.mxEvent.getId(), this.props.showUrlPreview); if (this.props.showUrlPreview) { // pass only the first child which is the event tile otherwise this recurses on edited events let links = this.findLinks([this._content.current]); if (links.length) { // de-dup the links (but preserve ordering) const seen = new Set(); links = links.filter((link) => { if (seen.has(link)) return false; seen.add(link); return true; }); this.setState({ links: links }); // lazy-load the hidden state of the preview widget from localstorage if (global.localStorage) { const hidden = global.localStorage.getItem("hide_preview_" + this.props.mxEvent.getId()); this.setState({ widgetHidden: hidden }); } } else if (this.state.links.length) { this.setState({ links: [] }); } } } activateSpoilers(nodes) { let node = nodes[0]; while (node) { if (node.tagName === "SPAN" && typeof node.getAttribute("data-mx-spoiler") === "string") { const spoilerContainer = document.createElement('span'); const reason = node.getAttribute("data-mx-spoiler"); const Spoiler = sdk.getComponent('elements.Spoiler'); node.removeAttribute("data-mx-spoiler"); // we don't want to recurse const spoiler =; ReactDOM.render(spoiler, spoilerContainer); node.parentNode.replaceChild(spoilerContainer, node); node = spoilerContainer; } if (node.childNodes && node.childNodes.length) { this.activateSpoilers(node.childNodes); } node = node.nextSibling; } } findLinks(nodes) { let links = []; for (let i = 0; i < nodes.length; i++) { const node = nodes[i]; if (node.tagName === "A" && node.getAttribute("href")) { if (this.isLinkPreviewable(node)) { links.push(node.getAttribute("href")); } } else if (node.tagName === "PRE" || node.tagName === "CODE" || node.tagName === "BLOCKQUOTE") { continue; } else if (node.children && node.children.length) { links = links.concat(this.findLinks(node.children)); } } return links; } isLinkPreviewable(node) { // don't try to preview relative links if (!node.getAttribute("href").startsWith("http://") && !node.getAttribute("href").startsWith("https://")) { return false; } // as a random heuristic to avoid highlighting things like "foo.pl" // we require the linked text to either include a / (either from http:// // or from a full foo.bar/baz style schemeless URL) - or be a markdown-style // link, in which case we check the target text differs from the link value. // TODO: make this configurable? if (node.textContent.indexOf("/") > -1) { return true; } else { const url = node.getAttribute("href"); const host = url.match(/^https?:\/\/(.*?)(\/|$)/)[1]; // never preview permalinks (if anything we should give a smart // preview of the room/user they point to: nobody needs to be reminded // what the matrix.to site looks like). if (isPermalinkHost(host)) return false; if (node.textContent.toLowerCase().trim().startsWith(host.toLowerCase())) { // it's a "foo.pl" style link return false; } else { // it's a [foo bar](http://foo.com) style link return true; } } } onCancelClick = event => { this.setState({ widgetHidden: true }); // FIXME: persist this somewhere smarter than local storage if (global.localStorage) { global.localStorage.setItem("hide_preview_" + this.props.mxEvent.getId(), "1"); } this.forceUpdate(); }; onEmoteSenderClick = event => { const mxEvent = this.props.mxEvent; dis.dispatch({ action: 'insert_mention', user_id: mxEvent.getSender(), }); }; getEventTileOps = () => ({ isWidgetHidden: () => { return this.state.widgetHidden; }, unhideWidget: () => { this.setState({widgetHidden: false}); if (global.localStorage) { global.localStorage.removeItem("hide_preview_" + this.props.mxEvent.getId()); } }, }); onStarterLinkClick = (starterLink, ev) => { ev.preventDefault(); // We need to add on our scalar token to the starter link, but we may not have one! // In addition, we can't fetch one on click and then go to it immediately as that // is then treated as a popup! // We can get around this by fetching one now and showing a "confirmation dialog" (hurr hurr) // which requires the user to click through and THEN we can open the link in a new tab because // the window.open command occurs in the same stack frame as the onClick callback. const managers = IntegrationManagers.sharedInstance(); if (!managers.hasManager()) { managers.openNoManagerDialog(); return; } // Go fetch a scalar token const integrationManager = managers.getPrimaryManager(); const scalarClient = integrationManager.getScalarClient(); scalarClient.connect().then(() => { const completeUrl = scalarClient.getStarterLink(starterLink); const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog"); const integrationsUrl = integrationManager.uiUrl; Modal.createTrackedDialog('Add an integration', '', QuestionDialog, { title: _t("Add an Integration"), description: { _t("You are about to be taken to a third-party site so you can " + "authenticate your account for use with %(integrationsUrl)s. " + "Do you wish to continue?", { integrationsUrl: integrationsUrl }) }, button: _t("Continue"), onFinished(confirmed) { if (!confirmed) { return; } const width = window.screen.width > 1024 ? 1024 : window.screen.width; const height = window.screen.height > 800 ? 800 : window.screen.height; const left = (window.screen.width - width) / 2; const top = (window.screen.height - height) / 2; const features = `height=${height}, width=${width}, top=${top}, left=${left},`; const wnd = window.open(completeUrl, '_blank', features); wnd.opener = null; }, }); }); }; _openHistoryDialog = async () => { const MessageEditHistoryDialog = sdk.getComponent("views.dialogs.MessageEditHistoryDialog"); Modal.createDialog(MessageEditHistoryDialog, {mxEvent: this.props.mxEvent}); }; _renderEditedMarker() { const date = this.props.mxEvent.replacingEventDate(); const dateString = date && formatDate(date); const tooltip =; return ({_t("Edited at %(date)s", {date: dateString})}{_t("Click to view edits")}{`(${_t("edited")})`} ); } render() { if (this.props.editState) { const EditMessageComposer = sdk.getComponent('rooms.EditMessageComposer'); return; } const mxEvent = this.props.mxEvent; const content = mxEvent.getContent(); // only strip reply if this is the original replying event, edits thereafter do not have the fallback const stripReply = !mxEvent.replacingEvent() && ReplyThread.getParentEventId(mxEvent); let body = HtmlUtils.bodyToHtml(content, this.props.highlights, { disableBigEmoji: content.msgtype === "m.emote" || !SettingsStore.getValue('TextualBody.enableBigEmoji'), // Part of Replies fallback support stripReplyFallback: stripReply, ref: this._content, }); if (this.props.replacingEventId) { body = <> {body} {this._renderEditedMarker()} >; } if (this.props.highlightLink) { body = { body }; } else if (content.data && typeof content.data["org.matrix.neb.starter_link"] === "string") { body = { body }; } let widgets; if (this.state.links.length && !this.state.widgetHidden && this.props.showUrlPreview) { const LinkPreviewWidget = sdk.getComponent('rooms.LinkPreviewWidget'); widgets = this.state.links.map((link)=>{ return ; }); } switch (content.msgtype) { case "m.emote": return ( * { mxEvent.sender ? mxEvent.sender.name : mxEvent.getSender() } { body } { widgets } ); case "m.notice": return ( { body } { widgets } ); default: // including "m.text" return ( { body } { widgets } ); } } }