2015-11-27 18:02:32 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react');
|
2015-11-29 00:12:02 +03:00
|
|
|
var ReactDOM = require('react-dom');
|
2015-11-27 18:02:32 +03:00
|
|
|
var HtmlUtils = require('../../../HtmlUtils');
|
|
|
|
var linkify = require('linkifyjs');
|
|
|
|
var linkifyElement = require('linkifyjs/element');
|
|
|
|
var linkifyMatrix = require('../../../linkify-matrix');
|
2016-03-31 20:38:01 +03:00
|
|
|
var sdk = require('../../../index');
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
linkifyMatrix(linkify);
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
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 */
|
|
|
|
mxEvent: React.PropTypes.object.isRequired,
|
|
|
|
|
|
|
|
/* a list of words to highlight */
|
|
|
|
highlights: React.PropTypes.array,
|
|
|
|
|
|
|
|
/* link URL for the highlights */
|
|
|
|
highlightLink: React.PropTypes.string,
|
2016-04-02 02:36:19 +03:00
|
|
|
|
|
|
|
/* callback for when our widget has loaded */
|
|
|
|
onWidgetLoad: React.PropTypes.func,
|
2016-02-17 22:50:04 +03:00
|
|
|
},
|
|
|
|
|
2016-03-31 20:38:01 +03:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2016-04-08 22:21:12 +03:00
|
|
|
// the URL (if any) to be previewed with a LinkPreviewWidget
|
|
|
|
// inside this TextualBody.
|
2016-03-31 20:38:01 +03:00
|
|
|
link: null,
|
2016-04-04 01:30:48 +03:00
|
|
|
|
|
|
|
// track whether the preview widget is hidden
|
|
|
|
// we can't directly use mxEvent's widgetHidden property
|
|
|
|
// as shouldComponentUpdate needs to be able to do before & after
|
|
|
|
// comparisons of the property (and we don't pass it in as a top
|
|
|
|
// level prop to avoid bloating the number of props flying around)
|
|
|
|
widgetHidden: false,
|
2016-03-31 20:38:01 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
componentDidMount: function() {
|
|
|
|
linkifyElement(this.refs.content, linkifyMatrix.options);
|
|
|
|
|
2016-03-31 20:38:01 +03:00
|
|
|
var link = this.findLink(this.refs.content.children);
|
|
|
|
if (link) {
|
|
|
|
this.setState({ link: link.getAttribute("href") });
|
2016-04-04 01:30:48 +03:00
|
|
|
|
|
|
|
// lazy-load the hidden state of the preview widget from localstorage
|
|
|
|
if (global.localStorage) {
|
|
|
|
var hidden = global.localStorage.getItem("hide_preview_" + this.props.mxEvent.getId());
|
2016-04-07 20:58:50 +03:00
|
|
|
// XXX: we're gutwrenching mxEvent here by setting our own custom property on it
|
2016-04-04 01:30:48 +03:00
|
|
|
this.props.mxEvent.widgetHidden = hidden;
|
|
|
|
this.setState({ widgetHidden: hidden });
|
|
|
|
}
|
2016-03-31 20:38:01 +03:00
|
|
|
}
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
if (this.props.mxEvent.getContent().format === "org.matrix.custom.html")
|
2015-11-29 00:12:02 +03:00
|
|
|
HtmlUtils.highlightDom(ReactDOM.findDOMNode(this));
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
|
2016-03-31 20:38:01 +03:00
|
|
|
shouldComponentUpdate: function(nextProps, nextState) {
|
2015-11-27 18:02:32 +03:00
|
|
|
// exploit that events are immutable :)
|
|
|
|
return (nextProps.mxEvent.getId() !== this.props.mxEvent.getId() ||
|
2016-02-17 22:50:04 +03:00
|
|
|
nextProps.highlights !== this.props.highlights ||
|
2016-03-31 20:38:01 +03:00
|
|
|
nextProps.highlightLink !== this.props.highlightLink ||
|
2016-04-04 01:30:48 +03:00
|
|
|
nextState.link !== this.state.link ||
|
|
|
|
nextProps.mxEvent.widgetHidden !== this.state.widgetHidden);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUpdate: function(nextProps, nextState) {
|
|
|
|
this.setState({ widgetHidden: nextProps.mxEvent.widgetHidden });
|
|
|
|
},
|
|
|
|
|
2016-04-07 20:58:50 +03:00
|
|
|
findLink: function(nodes) {
|
|
|
|
for (var i = 0; i < nodes.length; i++) {
|
|
|
|
var node = nodes[i];
|
|
|
|
if (node.tagName === "A" && node.getAttribute("href")) {
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
else if (node.children && node.children.length) {
|
|
|
|
return this.findLink(node.children)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-04-04 01:30:48 +03:00
|
|
|
onCancelClick: function(event) {
|
2016-04-07 20:58:50 +03:00
|
|
|
// XXX: we're gutwrenching mxEvent here by setting our own custom property on it
|
2016-04-04 01:30:48 +03:00
|
|
|
this.props.mxEvent.widgetHidden = true;
|
|
|
|
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
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2015-11-29 00:12:02 +03:00
|
|
|
var mxEvent = this.props.mxEvent;
|
|
|
|
var content = mxEvent.getContent();
|
2015-12-24 03:12:37 +03:00
|
|
|
var body = HtmlUtils.bodyToHtml(content, this.props.highlights,
|
2016-02-17 22:50:04 +03:00
|
|
|
{highlightLink: this.props.highlightLink});
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-03-31 20:38:01 +03:00
|
|
|
|
|
|
|
var widget;
|
2016-04-04 01:30:48 +03:00
|
|
|
if (this.state.link && !this.state.widgetHidden) {
|
2016-03-31 20:38:01 +03:00
|
|
|
var LinkPreviewWidget = sdk.getComponent('rooms.LinkPreviewWidget');
|
2016-04-04 01:30:48 +03:00
|
|
|
widget = <LinkPreviewWidget
|
|
|
|
link={ this.state.link }
|
|
|
|
mxEvent={ this.props.mxEvent }
|
|
|
|
onCancelClick={ this.onCancelClick }
|
|
|
|
onWidgetLoad={ this.props.onWidgetLoad }/>;
|
2016-03-31 20:38:01 +03:00
|
|
|
}
|
|
|
|
|
2015-11-29 00:12:02 +03:00
|
|
|
switch (content.msgtype) {
|
|
|
|
case "m.emote":
|
|
|
|
var name = mxEvent.sender ? mxEvent.sender.name : mxEvent.getSender();
|
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span ref="content" className="mx_MEmoteBody mx_EventTile_content">
|
2015-11-29 01:34:45 +03:00
|
|
|
* { name } { body }
|
2016-03-31 20:38:01 +03:00
|
|
|
{ widget }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
case "m.notice":
|
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span ref="content" className="mx_MNoticeBody mx_EventTile_content">
|
2015-11-29 00:12:02 +03:00
|
|
|
{ body }
|
2016-03-31 20:38:01 +03:00
|
|
|
{ widget }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
default: // including "m.text"
|
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span ref="content" className="mx_MTextBody mx_EventTile_content">
|
2015-11-29 00:12:02 +03:00
|
|
|
{ body }
|
2016-03-31 20:38:01 +03:00
|
|
|
{ widget }
|
2015-11-29 00:12:02 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|