Files
mattermost/webapp/components/message_wrapper.jsx
Harrison Healey fb6f2a123c PLT-5860 Updated copyright date (#6058)
* PLT-5860 Updated copyright date in about modal

* PLT-5860 Updated copyright notice in JSX files

* PLT-5860 Updated copyright notice in go files

* Fixed misc copyright dates

* Fixed component snapshots
2017-04-12 08:27:57 -04:00

41 lines
1.0 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import * as TextFormatting from 'utils/text_formatting.jsx';
import * as Utils from 'utils/utils.jsx';
import {getSiteURL} from 'utils/url.jsx';
import React from 'react';
export default class MessageWrapper extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
if (this.props.message) {
const options = Object.assign({}, this.props.options, {
siteURL: getSiteURL()
});
return (
<div
onClick={Utils.handleFormattedTextClick}
dangerouslySetInnerHTML={{__html: TextFormatting.formatText(this.props.message, options)}}
/>
);
}
return <div/>;
}
}
MessageWrapper.defaultProps = {
message: ''
};
MessageWrapper.propTypes = {
message: React.PropTypes.string,
options: React.PropTypes.object
};