2015-11-27 18:02:32 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2017-12-10 15:50:41 +03:00
|
|
|
Copyright 2017 New Vector Ltd
|
2019-05-22 17:16:32 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-12-08 15:16:17 +03:00
|
|
|
import React, {createRef} from 'react';
|
2017-04-06 16:08:59 +03:00
|
|
|
import ReactDOM from 'react-dom';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-06 20:37:43 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2017-04-06 16:08:59 +03:00
|
|
|
import highlight from 'highlight.js';
|
|
|
|
import * as HtmlUtils from '../../../HtmlUtils';
|
2019-05-17 13:36:36 +03:00
|
|
|
import {formatDate} from '../../../DateUtils';
|
2019-12-20 04:19:56 +03:00
|
|
|
import * as sdk from '../../../index';
|
2017-04-06 16:08:59 +03:00
|
|
|
import Modal from '../../../Modal';
|
|
|
|
import dis from '../../../dispatcher';
|
2017-05-30 17:09:57 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2019-12-03 13:53:32 +03:00
|
|
|
import * as ContextMenu from '../../structures/ContextMenu';
|
2017-10-29 10:43:52 +03:00
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
2018-03-04 15:39:34 +03:00
|
|
|
import ReplyThread from "../elements/ReplyThread";
|
2020-02-23 02:51:30 +03:00
|
|
|
import {pillifyLinks, unmountPills} from '../../../utils/pillify';
|
2019-08-10 01:05:05 +03:00
|
|
|
import {IntegrationManagers} from "../../../integrations/IntegrationManagers";
|
2019-10-01 05:39:58 +03:00
|
|
|
import {isPermalinkHost} from "../../../utils/permalinks/Permalinks";
|
2019-12-03 02:21:59 +03:00
|
|
|
import {toRightOf} from "../../structures/ContextMenu";
|
2020-04-15 02:16:11 +03:00
|
|
|
import {copyPlaintext} from "../../../utils/strings";
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2019-12-20 03:45:24 +03:00
|
|
|
export default createReactClass({
|
2015-11-30 18:19:43 +03:00
|
|
|
displayName: 'TextualBody',
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-02-17 22:50:04 +03:00
|
|
|
propTypes: {
|
|
|
|
/* the MatrixEvent to show */
|
2017-12-26 04:03:18 +03:00
|
|
|
mxEvent: PropTypes.object.isRequired,
|
2016-02-17 22:50:04 +03:00
|
|
|
|
|
|
|
/* a list of words to highlight */
|
2017-12-26 04:03:18 +03:00
|
|
|
highlights: PropTypes.array,
|
2016-02-17 22:50:04 +03:00
|
|
|
|
|
|
|
/* link URL for the highlights */
|
2017-12-26 04:03:18 +03:00
|
|
|
highlightLink: PropTypes.string,
|
2016-04-02 02:36:19 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
/* should show URL previews for this event */
|
2017-12-26 04:03:18 +03:00
|
|
|
showUrlPreview: PropTypes.bool,
|
2016-07-18 03:35:42 +03:00
|
|
|
|
2016-04-02 02:36:19 +03:00
|
|
|
/* callback for when our widget has loaded */
|
2019-03-06 14:27:16 +03:00
|
|
|
onHeightChanged: PropTypes.func,
|
2017-12-10 15:50:41 +03:00
|
|
|
|
2018-01-10 14:51:48 +03:00
|
|
|
/* the shape of the tile, used */
|
2018-01-10 14:54:58 +03:00
|
|
|
tileShape: PropTypes.string,
|
2016-02-17 22:50:04 +03:00
|
|
|
},
|
|
|
|
|
2016-03-31 20:38:01 +03:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2016-05-24 02:54:20 +03:00
|
|
|
// the URLs (if any) to be previewed with a LinkPreviewWidget
|
2016-04-08 22:21:12 +03:00
|
|
|
// inside this TextualBody.
|
2016-05-31 21:42:00 +03:00
|
|
|
links: [],
|
2016-04-04 01:30:48 +03:00
|
|
|
|
|
|
|
// track whether the preview widget is hidden
|
|
|
|
widgetHidden: false,
|
2016-03-31 20:38:01 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-03-31 23:12:52 +03:00
|
|
|
// TODO: [REACT-WARNING] Replace component with real class, use constructor for refs
|
2019-12-08 15:16:17 +03:00
|
|
|
UNSAFE_componentWillMount: function() {
|
|
|
|
this._content = createRef();
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
componentDidMount: function() {
|
2016-10-26 20:41:28 +03:00
|
|
|
this._unmounted = false;
|
2020-02-23 02:51:30 +03:00
|
|
|
this._pills = [];
|
2019-06-12 19:52:34 +03:00
|
|
|
if (!this.props.editState) {
|
2019-05-17 18:01:30 +03:00
|
|
|
this._applyFormatting();
|
|
|
|
}
|
2019-05-15 17:55:03 +03:00
|
|
|
},
|
2016-10-26 20:41:28 +03:00
|
|
|
|
2019-05-15 17:55:03 +03:00
|
|
|
_applyFormatting() {
|
2019-12-08 04:01:19 +03:00
|
|
|
this.activateSpoilers([this._content.current]);
|
2019-05-22 21:41:27 +03:00
|
|
|
|
2017-07-17 16:50:45 +03:00
|
|
|
// 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.
|
2020-02-23 02:51:30 +03:00
|
|
|
pillifyLinks([this._content.current], this.props.mxEvent, this._pills);
|
2019-12-08 15:16:17 +03:00
|
|
|
HtmlUtils.linkifyElement(this._content.current);
|
2016-07-20 14:03:13 +03:00
|
|
|
this.calculateUrlPreview();
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-10-26 20:41:28 +03:00
|
|
|
if (this.props.mxEvent.getContent().format === "org.matrix.custom.html") {
|
|
|
|
const blocks = ReactDOM.findDOMNode(this).getElementsByTagName("code");
|
|
|
|
if (blocks.length > 0) {
|
|
|
|
// 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 < blocks.length; i++) {
|
2017-10-29 10:43:52 +03:00
|
|
|
if (SettingsStore.getValue("enableSyntaxHighlightLanguageDetection")) {
|
2017-10-11 19:56:17 +03:00
|
|
|
highlight.highlightBlock(blocks[i]);
|
2017-06-12 03:13:10 +03:00
|
|
|
} else {
|
|
|
|
// Only syntax highlight if there's a class starting with language-
|
2017-10-11 19:56:17 +03:00
|
|
|
const classes = blocks[i].className.split(/\s+/).filter(function(cl) {
|
2017-06-12 03:13:10 +03:00
|
|
|
return cl.startsWith('language-');
|
|
|
|
});
|
|
|
|
|
|
|
|
if (classes.length != 0) {
|
|
|
|
highlight.highlightBlock(blocks[i]);
|
|
|
|
}
|
|
|
|
}
|
2016-10-26 20:41:28 +03:00
|
|
|
}
|
|
|
|
}, 10);
|
|
|
|
}
|
2017-09-10 17:58:17 +03:00
|
|
|
this._addCodeCopyButton();
|
2016-10-26 20:41:28 +03:00
|
|
|
}
|
2016-07-20 14:03:13 +03:00
|
|
|
},
|
|
|
|
|
2019-05-15 17:55:03 +03:00
|
|
|
componentDidUpdate: function(prevProps) {
|
2019-06-12 19:52:34 +03:00
|
|
|
if (!this.props.editState) {
|
|
|
|
const stoppedEditing = prevProps.editState && !this.props.editState;
|
2019-05-17 18:01:30 +03:00
|
|
|
const messageWasEdited = prevProps.replacingEventId !== this.props.replacingEventId;
|
2019-05-20 11:19:29 +03:00
|
|
|
if (messageWasEdited || stoppedEditing) {
|
2019-05-17 18:01:30 +03:00
|
|
|
this._applyFormatting();
|
|
|
|
}
|
2019-05-15 17:55:03 +03:00
|
|
|
}
|
2016-07-20 14:03:13 +03:00
|
|
|
},
|
|
|
|
|
2016-10-26 20:41:28 +03:00
|
|
|
componentWillUnmount: function() {
|
|
|
|
this._unmounted = true;
|
2020-02-23 02:51:30 +03:00
|
|
|
unmountPills(this._pills);
|
2016-10-26 20:41:28 +03:00
|
|
|
},
|
|
|
|
|
2016-07-20 14:03:13 +03:00
|
|
|
shouldComponentUpdate: function(nextProps, nextState) {
|
2019-11-26 04:14:03 +03:00
|
|
|
//console.info("shouldComponentUpdate: ShowUrlPreview for %s is %s", this.props.mxEvent.getId(), this.props.showUrlPreview);
|
2016-07-20 14:03:13 +03:00
|
|
|
|
|
|
|
// exploit that events are immutable :)
|
|
|
|
return (nextProps.mxEvent.getId() !== this.props.mxEvent.getId() ||
|
|
|
|
nextProps.highlights !== this.props.highlights ||
|
2019-05-15 13:49:43 +03:00
|
|
|
nextProps.replacingEventId !== this.props.replacingEventId ||
|
2016-07-20 14:03:13 +03:00
|
|
|
nextProps.highlightLink !== this.props.highlightLink ||
|
|
|
|
nextProps.showUrlPreview !== this.props.showUrlPreview ||
|
2019-06-12 19:52:34 +03:00
|
|
|
nextProps.editState !== this.props.editState ||
|
2016-07-20 14:03:13 +03:00
|
|
|
nextState.links !== this.state.links ||
|
2019-05-17 13:36:36 +03:00
|
|
|
nextState.editedMarkerHovered !== this.state.editedMarkerHovered ||
|
2016-07-20 14:03:13 +03:00
|
|
|
nextState.widgetHidden !== this.state.widgetHidden);
|
|
|
|
},
|
|
|
|
|
|
|
|
calculateUrlPreview: function() {
|
2019-11-26 04:14:03 +03:00
|
|
|
//console.info("calculateUrlPreview: ShowUrlPreview for %s is %s", this.props.mxEvent.getId(), this.props.showUrlPreview);
|
2016-07-20 14:03:13 +03:00
|
|
|
|
2019-05-21 17:56:26 +03:00
|
|
|
if (this.props.showUrlPreview) {
|
2019-12-08 04:01:19 +03:00
|
|
|
// pass only the first child which is the event tile otherwise this recurses on edited events
|
|
|
|
let links = this.findLinks([this._content.current]);
|
2016-07-18 03:35:42 +03:00
|
|
|
if (links.length) {
|
2017-07-06 12:47:15 +03:00
|
|
|
// de-dup the links (but preserve ordering)
|
2017-07-06 12:02:25 +03:00
|
|
|
const seen = new Set();
|
|
|
|
links = links.filter((link) => {
|
|
|
|
if (seen.has(link)) return false;
|
|
|
|
seen.add(link);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
this.setState({ links: links });
|
2016-04-04 01:30:48 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
// lazy-load the hidden state of the preview widget from localstorage
|
|
|
|
if (global.localStorage) {
|
2017-10-11 19:56:17 +03:00
|
|
|
const hidden = global.localStorage.getItem("hide_preview_" + this.props.mxEvent.getId());
|
2016-07-18 03:35:42 +03:00
|
|
|
this.setState({ widgetHidden: hidden });
|
|
|
|
}
|
2016-04-04 01:30:48 +03:00
|
|
|
}
|
2016-03-31 20:38:01 +03:00
|
|
|
}
|
2016-04-04 01:30:48 +03:00
|
|
|
},
|
|
|
|
|
2019-05-22 21:41:27 +03:00
|
|
|
activateSpoilers: function(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 = <Spoiler
|
|
|
|
reason={reason}
|
|
|
|
contentHtml={node.outerHTML}
|
|
|
|
/>;
|
|
|
|
|
|
|
|
ReactDOM.render(spoiler, spoilerContainer);
|
|
|
|
node.parentNode.replaceChild(spoilerContainer, node);
|
|
|
|
|
|
|
|
node = spoilerContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node.childNodes && node.childNodes.length) {
|
|
|
|
this.activateSpoilers(node.childNodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
node = node.nextSibling;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-05-24 02:54:20 +03:00
|
|
|
findLinks: function(nodes) {
|
2017-10-11 19:56:17 +03:00
|
|
|
let links = [];
|
2017-07-06 12:02:25 +03:00
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
for (let i = 0; i < nodes.length; i++) {
|
|
|
|
const node = nodes[i];
|
|
|
|
if (node.tagName === "A" && node.getAttribute("href")) {
|
2016-05-24 02:54:20 +03:00
|
|
|
if (this.isLinkPreviewable(node)) {
|
2017-07-06 12:02:25 +03:00
|
|
|
links.push(node.getAttribute("href"));
|
2016-05-24 02:54:20 +03:00
|
|
|
}
|
2017-10-11 19:56:17 +03:00
|
|
|
} else if (node.tagName === "PRE" || node.tagName === "CODE" ||
|
2017-03-18 13:43:35 +03:00
|
|
|
node.tagName === "BLOCKQUOTE") {
|
2016-05-24 02:54:20 +03:00
|
|
|
continue;
|
2017-10-11 19:56:17 +03:00
|
|
|
} else if (node.children && node.children.length) {
|
2016-05-24 02:54:20 +03:00
|
|
|
links = links.concat(this.findLinks(node.children));
|
2016-04-07 20:58:50 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-24 02:54:20 +03:00
|
|
|
return links;
|
2016-04-07 20:58:50 +03:00
|
|
|
},
|
|
|
|
|
2016-04-21 20:00:39 +03:00
|
|
|
isLinkPreviewable: function(node) {
|
|
|
|
// don't try to preview relative links
|
|
|
|
if (!node.getAttribute("href").startsWith("http://") &&
|
2017-10-11 19:56:17 +03:00
|
|
|
!node.getAttribute("href").startsWith("https://")) {
|
2016-04-21 20:00:39 +03:00
|
|
|
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?
|
2017-10-11 19:56:17 +03:00
|
|
|
if (node.textContent.indexOf("/") > -1) {
|
2016-11-07 14:45:55 +03:00
|
|
|
return true;
|
2017-10-11 19:56:17 +03:00
|
|
|
} else {
|
|
|
|
const url = node.getAttribute("href");
|
|
|
|
const host = url.match(/^https?:\/\/(.*?)(\/|$)/)[1];
|
2016-11-07 13:57:08 +03:00
|
|
|
|
2019-10-01 05:38:03 +03:00
|
|
|
// never preview permalinks (if anything we should give a smart
|
2016-11-07 13:57:08 +03:00
|
|
|
// preview of the room/user they point to: nobody needs to be reminded
|
|
|
|
// what the matrix.to site looks like).
|
2019-09-30 21:53:45 +03:00
|
|
|
if (isPermalinkHost(host)) return false;
|
2016-11-07 13:57:08 +03:00
|
|
|
|
2016-05-27 12:09:07 +03:00
|
|
|
if (node.textContent.toLowerCase().trim().startsWith(host.toLowerCase())) {
|
2016-04-21 20:00:39 +03:00
|
|
|
// it's a "foo.pl" style link
|
2016-11-07 14:45:55 +03:00
|
|
|
return false;
|
2017-10-11 19:56:17 +03:00
|
|
|
} else {
|
2016-04-21 20:00:39 +03:00
|
|
|
// it's a [foo bar](http://foo.com) style link
|
2016-11-07 14:45:55 +03:00
|
|
|
return true;
|
2016-04-21 20:00:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-09-10 17:58:17 +03:00
|
|
|
_addCodeCopyButton() {
|
|
|
|
// Add 'copy' buttons to pre blocks
|
2018-02-22 15:59:37 +03:00
|
|
|
Array.from(ReactDOM.findDOMNode(this).querySelectorAll('.mx_EventTile_body pre')).forEach((p) => {
|
2017-09-10 17:58:17 +03:00
|
|
|
const button = document.createElement("span");
|
|
|
|
button.className = "mx_EventTile_copyButton";
|
2020-04-15 02:16:11 +03:00
|
|
|
button.onclick = async () => {
|
2020-04-07 13:17:19 +03:00
|
|
|
const copyCode = button.parentNode.getElementsByTagName("pre")[0];
|
2020-04-15 02:16:11 +03:00
|
|
|
const successful = await copyPlaintext(copyCode.textContent);
|
2017-10-11 19:56:17 +03:00
|
|
|
|
2020-04-15 02:16:11 +03:00
|
|
|
const buttonRect = button.getBoundingClientRect();
|
2019-11-28 23:26:09 +03:00
|
|
|
const GenericTextContextMenu = sdk.getComponent('context_menus.GenericTextContextMenu');
|
2019-12-03 13:53:32 +03:00
|
|
|
const {close} = ContextMenu.createMenu(GenericTextContextMenu, {
|
2019-12-10 02:58:09 +03:00
|
|
|
...toRightOf(buttonRect, 2),
|
2017-09-10 20:54:52 +03:00
|
|
|
message: successful ? _t('Copied!') : _t('Failed to copy'),
|
2019-11-28 23:26:09 +03:00
|
|
|
});
|
2020-04-15 02:16:11 +03:00
|
|
|
button.onmouseleave = close;
|
2017-09-10 17:58:17 +03:00
|
|
|
};
|
2018-06-27 13:31:55 +03:00
|
|
|
|
|
|
|
// Wrap a div around <pre> so that the copy button can be correctly positioned
|
|
|
|
// when the <pre> overflows and is scrolled horizontally.
|
|
|
|
const div = document.createElement("div");
|
|
|
|
div.className = "mx_EventTile_pre_container";
|
|
|
|
|
|
|
|
// Insert containing div in place of <pre> block
|
|
|
|
p.parentNode.replaceChild(div, p);
|
|
|
|
|
|
|
|
// Append <pre> block and copy button to container
|
|
|
|
div.appendChild(p);
|
|
|
|
div.appendChild(button);
|
2017-09-10 17:58:17 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-04-04 01:30:48 +03:00
|
|
|
onCancelClick: function(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();
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
|
2017-04-06 16:08:59 +03:00
|
|
|
onEmoteSenderClick: function(event) {
|
|
|
|
const mxEvent = this.props.mxEvent;
|
|
|
|
dis.dispatch({
|
2017-07-20 20:02:54 +03:00
|
|
|
action: 'insert_mention',
|
2017-07-20 17:46:36 +03:00
|
|
|
user_id: mxEvent.getSender(),
|
2017-04-06 16:08:59 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-04-08 23:42:29 +03:00
|
|
|
getEventTileOps: function() {
|
|
|
|
return {
|
2017-08-10 12:14:14 +03:00
|
|
|
isWidgetHidden: () => {
|
|
|
|
return this.state.widgetHidden;
|
2016-04-08 23:42:29 +03:00
|
|
|
},
|
|
|
|
|
2017-08-10 12:14:14 +03:00
|
|
|
unhideWidget: () => {
|
|
|
|
this.setState({ widgetHidden: false });
|
2016-04-12 01:53:36 +03:00
|
|
|
if (global.localStorage) {
|
2017-08-10 12:14:14 +03:00
|
|
|
global.localStorage.removeItem("hide_preview_" + this.props.mxEvent.getId());
|
2016-04-12 01:53:36 +03:00
|
|
|
}
|
2016-04-08 23:42:29 +03:00
|
|
|
},
|
2017-01-20 17:22:27 +03:00
|
|
|
};
|
2016-04-08 23:42:29 +03:00
|
|
|
},
|
|
|
|
|
2016-09-05 11:10:15 +03:00
|
|
|
onStarterLinkClick: function(starterLink, ev) {
|
|
|
|
ev.preventDefault();
|
2016-09-02 18:36:43 +03:00
|
|
|
// 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.
|
|
|
|
|
2019-08-10 01:05:05 +03:00
|
|
|
const managers = IntegrationManagers.sharedInstance();
|
|
|
|
if (!managers.hasManager()) {
|
|
|
|
managers.openNoManagerDialog();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-02 18:36:43 +03:00
|
|
|
// Go fetch a scalar token
|
2019-08-10 01:05:05 +03:00
|
|
|
const integrationManager = managers.getPrimaryManager();
|
|
|
|
const scalarClient = integrationManager.getScalarClient();
|
2016-09-02 18:36:43 +03:00
|
|
|
scalarClient.connect().then(() => {
|
2017-10-11 19:56:17 +03:00
|
|
|
const completeUrl = scalarClient.getStarterLink(starterLink);
|
|
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
2019-08-10 01:05:05 +03:00
|
|
|
const integrationsUrl = integrationManager.uiUrl;
|
2017-07-27 19:19:18 +03:00
|
|
|
Modal.createTrackedDialog('Add an integration', '', QuestionDialog, {
|
2017-05-30 17:09:57 +03:00
|
|
|
title: _t("Add an Integration"),
|
2016-09-02 18:36:43 +03:00
|
|
|
description:
|
|
|
|
<div>
|
2017-10-11 19:56:17 +03:00
|
|
|
{ _t("You are about to be taken to a third-party site so you can " +
|
2017-05-30 22:32:12 +03:00
|
|
|
"authenticate your account for use with %(integrationsUrl)s. " +
|
2017-10-11 19:56:17 +03:00
|
|
|
"Do you wish to continue?", { integrationsUrl: integrationsUrl }) }
|
2016-09-02 18:36:43 +03:00
|
|
|
</div>,
|
2017-05-30 17:09:57 +03:00
|
|
|
button: _t("Continue"),
|
2016-09-02 18:36:43 +03:00
|
|
|
onFinished: function(confirmed) {
|
|
|
|
if (!confirmed) {
|
|
|
|
return;
|
|
|
|
}
|
2017-10-11 19:56:17 +03:00
|
|
|
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;
|
2020-02-24 01:22:12 +03:00
|
|
|
const features = `height=${height}, width=${width}, top=${top}, left=${left},`;
|
|
|
|
const wnd = window.open(completeUrl, '_blank', features);
|
|
|
|
wnd.opener = null;
|
2016-09-02 18:36:43 +03:00
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
2016-09-02 18:03:24 +03:00
|
|
|
},
|
|
|
|
|
2019-05-17 13:36:36 +03:00
|
|
|
_onMouseEnterEditedMarker: function() {
|
|
|
|
this.setState({editedMarkerHovered: true});
|
|
|
|
},
|
|
|
|
|
|
|
|
_onMouseLeaveEditedMarker: function() {
|
|
|
|
this.setState({editedMarkerHovered: false});
|
|
|
|
},
|
|
|
|
|
2019-05-29 19:23:18 +03:00
|
|
|
_openHistoryDialog: async function() {
|
|
|
|
const MessageEditHistoryDialog = sdk.getComponent("views.dialogs.MessageEditHistoryDialog");
|
|
|
|
Modal.createDialog(MessageEditHistoryDialog, {mxEvent: this.props.mxEvent});
|
|
|
|
},
|
|
|
|
|
2019-05-17 13:36:36 +03:00
|
|
|
_renderEditedMarker: function() {
|
|
|
|
let editedTooltip;
|
|
|
|
if (this.state.editedMarkerHovered) {
|
|
|
|
const Tooltip = sdk.getComponent('elements.Tooltip');
|
2019-07-09 12:31:29 +03:00
|
|
|
const date = this.props.mxEvent.replacingEventDate();
|
|
|
|
const dateString = date && formatDate(date);
|
2019-05-17 14:19:02 +03:00
|
|
|
editedTooltip = <Tooltip
|
2019-05-17 17:04:27 +03:00
|
|
|
tooltipClassName="mx_Tooltip_timeline"
|
2019-07-09 12:31:29 +03:00
|
|
|
label={_t("Edited at %(date)s. Click to view edits.", {date: dateString})}
|
2019-05-17 14:19:02 +03:00
|
|
|
/>;
|
2019-05-17 13:36:36 +03:00
|
|
|
}
|
2019-12-08 00:01:21 +03:00
|
|
|
|
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
2019-05-17 13:36:36 +03:00
|
|
|
return (
|
2019-12-08 00:01:21 +03:00
|
|
|
<AccessibleButton
|
|
|
|
key="editedMarker"
|
|
|
|
className="mx_EventTile_edited"
|
2019-05-29 19:23:18 +03:00
|
|
|
onClick={this._openHistoryDialog}
|
2019-05-17 13:36:36 +03:00
|
|
|
onMouseEnter={this._onMouseEnterEditedMarker}
|
|
|
|
onMouseLeave={this._onMouseLeaveEditedMarker}
|
2019-12-08 00:01:21 +03:00
|
|
|
>
|
|
|
|
{ editedTooltip }<span>{`(${_t("edited")})`}</span>
|
|
|
|
</AccessibleButton>
|
2019-05-17 13:36:36 +03:00
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
render: function() {
|
2019-06-12 19:52:34 +03:00
|
|
|
if (this.props.editState) {
|
2019-08-05 16:27:40 +03:00
|
|
|
const EditMessageComposer = sdk.getComponent('rooms.EditMessageComposer');
|
|
|
|
return <EditMessageComposer editState={this.props.editState} className="mx_EventTile_content" />;
|
2019-05-17 17:30:07 +03:00
|
|
|
}
|
2017-10-11 19:56:17 +03:00
|
|
|
const mxEvent = this.props.mxEvent;
|
|
|
|
const content = mxEvent.getContent();
|
2016-09-02 18:03:24 +03:00
|
|
|
|
2018-06-20 11:57:11 +03:00
|
|
|
const stripReply = ReplyThread.getParentEventId(mxEvent);
|
2017-10-14 21:40:45 +03:00
|
|
|
let body = HtmlUtils.bodyToHtml(content, this.props.highlights, {
|
2019-03-19 02:25:11 +03:00
|
|
|
disableBigEmoji: content.msgtype === "m.emote" || !SettingsStore.getValue('TextualBody.enableBigEmoji'),
|
2018-03-04 15:39:34 +03:00
|
|
|
// Part of Replies fallback support
|
2018-03-10 02:12:13 +03:00
|
|
|
stripReplyFallback: stripReply,
|
2019-12-08 04:01:19 +03:00
|
|
|
ref: this._content,
|
2017-10-14 21:40:45 +03:00
|
|
|
});
|
2019-05-17 13:36:36 +03:00
|
|
|
if (this.props.replacingEventId) {
|
|
|
|
body = [body, this._renderEditedMarker()];
|
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
if (this.props.highlightLink) {
|
2017-10-11 19:56:17 +03:00
|
|
|
body = <a href={this.props.highlightLink}>{ body }</a>;
|
|
|
|
} else if (content.data && typeof content.data["org.matrix.neb.starter_link"] === "string") {
|
|
|
|
body = <a href="#" onClick={this.onStarterLinkClick.bind(this, content.data["org.matrix.neb.starter_link"])}>{ body }</a>;
|
2016-09-02 18:03:24 +03:00
|
|
|
}
|
2016-03-31 20:38:01 +03:00
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
let widgets;
|
2016-07-20 14:03:13 +03:00
|
|
|
if (this.state.links.length && !this.state.widgetHidden && this.props.showUrlPreview) {
|
2017-10-11 19:56:17 +03:00
|
|
|
const LinkPreviewWidget = sdk.getComponent('rooms.LinkPreviewWidget');
|
2016-05-24 02:54:20 +03:00
|
|
|
widgets = this.state.links.map((link)=>{
|
|
|
|
return <LinkPreviewWidget
|
2017-10-11 19:56:17 +03:00
|
|
|
key={link}
|
|
|
|
link={link}
|
|
|
|
mxEvent={this.props.mxEvent}
|
|
|
|
onCancelClick={this.onCancelClick}
|
2019-03-06 14:27:16 +03:00
|
|
|
onHeightChanged={this.props.onHeightChanged} />;
|
2016-05-24 02:54:20 +03:00
|
|
|
});
|
2016-03-31 20:38:01 +03:00
|
|
|
}
|
|
|
|
|
2015-11-29 00:12:02 +03:00
|
|
|
switch (content.msgtype) {
|
|
|
|
case "m.emote":
|
|
|
|
return (
|
2019-12-08 04:01:19 +03:00
|
|
|
<span className="mx_MEmoteBody mx_EventTile_content">
|
2017-04-06 16:08:59 +03:00
|
|
|
*
|
2019-05-19 17:23:43 +03:00
|
|
|
<span
|
2017-04-06 16:08:59 +03:00
|
|
|
className="mx_MEmoteBody_sender"
|
|
|
|
onClick={this.onEmoteSenderClick}
|
|
|
|
>
|
2019-12-08 04:01:19 +03:00
|
|
|
{ mxEvent.sender ? mxEvent.sender.name : mxEvent.getSender() }
|
2019-05-19 17:23:43 +03:00
|
|
|
</span>
|
2017-04-06 16:08:59 +03:00
|
|
|
|
|
|
|
{ body }
|
2016-05-24 02:54:20 +03:00
|
|
|
{ widgets }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
case "m.notice":
|
|
|
|
return (
|
2019-12-08 04:01:19 +03:00
|
|
|
<span className="mx_MNoticeBody mx_EventTile_content">
|
2015-11-29 00:12:02 +03:00
|
|
|
{ body }
|
2016-05-24 02:54:20 +03:00
|
|
|
{ widgets }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
default: // including "m.text"
|
|
|
|
return (
|
2019-12-08 04:01:19 +03:00
|
|
|
<span className="mx_MTextBody mx_EventTile_content">
|
2015-11-29 00:12:02 +03:00
|
|
|
{ body }
|
2016-05-24 02:54:20 +03:00
|
|
|
{ widgets }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
});
|