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');
|
|
|
|
var sdk = require('../../../index');
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-11-30 18:19:43 +03:00
|
|
|
displayName: 'MessageEvent',
|
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-02-22 20:19:04 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
/* should show URL previews for this event */
|
|
|
|
showUrlPreview: React.PropTypes.bool,
|
|
|
|
|
2016-04-07 20:58:50 +03:00
|
|
|
/* callback called when dynamic content in events are loaded */
|
2016-04-02 02:36:19 +03:00
|
|
|
onWidgetLoad: React.PropTypes.func,
|
2016-02-17 22:50:04 +03:00
|
|
|
},
|
|
|
|
|
2016-04-08 23:42:29 +03:00
|
|
|
getEventTileOps: function() {
|
2016-04-12 20:32:46 +03:00
|
|
|
return this.refs.body && this.refs.body.getEventTileOps ? this.refs.body.getEventTileOps() : null;
|
2016-04-08 23:42:29 +03:00
|
|
|
},
|
2016-02-17 22:50:04 +03:00
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
render: function() {
|
2016-04-08 23:42:29 +03:00
|
|
|
var UnknownBody = sdk.getComponent('messages.UnknownBody');
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-04-08 23:42:29 +03:00
|
|
|
var bodyTypes = {
|
2015-11-30 18:19:43 +03:00
|
|
|
'm.text': sdk.getComponent('messages.TextualBody'),
|
|
|
|
'm.notice': sdk.getComponent('messages.TextualBody'),
|
|
|
|
'm.emote': sdk.getComponent('messages.TextualBody'),
|
|
|
|
'm.image': sdk.getComponent('messages.MImageBody'),
|
|
|
|
'm.file': sdk.getComponent('messages.MFileBody'),
|
2016-04-13 02:00:24 +03:00
|
|
|
'm.audio': sdk.getComponent('messages.MAudioBody'),
|
2015-11-30 18:19:43 +03:00
|
|
|
'm.video': sdk.getComponent('messages.MVideoBody')
|
2015-11-27 18:02:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
var content = this.props.mxEvent.getContent();
|
|
|
|
var msgtype = content.msgtype;
|
2016-04-08 23:42:29 +03:00
|
|
|
var BodyType = UnknownBody;
|
|
|
|
if (msgtype && bodyTypes[msgtype]) {
|
|
|
|
BodyType = bodyTypes[msgtype];
|
2016-04-13 02:00:24 +03:00
|
|
|
} else if (content.url) {
|
|
|
|
// Fallback to MFileBody if there's a content URL
|
|
|
|
BodyType = bodyTypes['m.file'];
|
2015-11-27 18:02:32 +03:00
|
|
|
}
|
|
|
|
|
2016-04-08 23:42:29 +03:00
|
|
|
return <BodyType ref="body" mxEvent={this.props.mxEvent} highlights={this.props.highlights}
|
2016-02-22 20:19:04 +03:00
|
|
|
highlightLink={this.props.highlightLink}
|
2016-07-18 03:35:42 +03:00
|
|
|
showUrlPreview={this.props.showUrlPreview}
|
2016-04-02 02:36:19 +03:00
|
|
|
onWidgetLoad={this.props.onWidgetLoad} />;
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
});
|