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
|
|
|
|
|
|
|
statics: {
|
|
|
|
needsSenderProfile: function() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
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
|
|
|
|
|
|
|
/* callback called when images in events are loaded */
|
2016-04-02 02:36:19 +03:00
|
|
|
onWidgetLoad: React.PropTypes.func,
|
2016-02-17 22:50:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
render: function() {
|
2015-11-30 18:19:43 +03:00
|
|
|
var UnknownMessageTile = sdk.getComponent('messages.UnknownBody');
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
var tileTypes = {
|
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'),
|
|
|
|
'm.video': sdk.getComponent('messages.MVideoBody')
|
2015-11-27 18:02:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
var content = this.props.mxEvent.getContent();
|
|
|
|
var msgtype = content.msgtype;
|
|
|
|
var TileType = UnknownMessageTile;
|
|
|
|
if (msgtype && tileTypes[msgtype]) {
|
|
|
|
TileType = tileTypes[msgtype];
|
|
|
|
}
|
|
|
|
|
2015-12-24 03:12:37 +03:00
|
|
|
return <TileType mxEvent={this.props.mxEvent} highlights={this.props.highlights}
|
2016-02-22 20:19:04 +03:00
|
|
|
highlightLink={this.props.highlightLink}
|
2016-04-02 02:36:19 +03:00
|
|
|
onWidgetLoad={this.props.onWidgetLoad} />;
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
});
|