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');
|
|
|
|
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
componentDidMount: function() {
|
|
|
|
linkifyElement(this.refs.content, linkifyMatrix.options);
|
|
|
|
|
|
|
|
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
|
|
|
},
|
|
|
|
|
|
|
|
componentDidUpdate: function() {
|
2016-01-13 16:15:13 +03:00
|
|
|
// XXX: why don't we linkify here?
|
|
|
|
// XXX: why do we bother doing this on update at all, given events are immutable?
|
|
|
|
|
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
|
|
|
},
|
|
|
|
|
|
|
|
shouldComponentUpdate: function(nextProps) {
|
|
|
|
// 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 ||
|
|
|
|
nextProps.highlightLink !== this.props.highlightLink);
|
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
|
|
|
|
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 }
|
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 }
|
|
|
|
</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 }
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|