webapp/utils/utils.jsx got big and that caused a potential circular dependency with webapp/stores/team_store.jsx. This change solves the issue by introducing webapp/utils/url.jsx and moving URL-related functions, which is not likely to depend on actions and stores, from webapp/utils/utils.jsx.
41 строка
1.0 KiB
JavaScript
41 строка
1.0 KiB
JavaScript
// Copyright (c) 2015 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
|
|
};
|