2015-06-23 18:41:25 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 18:41:25 +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';
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
var React = require('react');
|
|
|
|
|
|
|
|
var TextForEvent = require('../../../TextForEvent');
|
2016-08-11 05:25:12 +03:00
|
|
|
import sdk from '../../../index';
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'TextualEvent',
|
|
|
|
|
|
|
|
render: function() {
|
2016-08-11 05:25:12 +03:00
|
|
|
const EmojiText = sdk.getComponent('elements.EmojiText');
|
2015-11-27 18:02:32 +03:00
|
|
|
var text = TextForEvent.textForEvent(this.props.mxEvent);
|
2016-07-05 07:46:17 +03:00
|
|
|
if (text == null || text.length === 0) return null;
|
2015-11-27 18:02:32 +03:00
|
|
|
return (
|
2016-08-09 22:01:51 +03:00
|
|
|
<EmojiText element="div" className="mx_TextualEvent">{text}</EmojiText>
|
2015-11-27 18:02:32 +03:00
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|