70 lines
1.5 KiB
JavaScript
70 lines
1.5 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import { observer } from 'mobx-react';
|
|
import moment from 'moment';
|
|
|
|
import { Link } from 'react-router';
|
|
import PublishingInfo from 'components/PublishingInfo';
|
|
|
|
import styles from './Document.scss';
|
|
|
|
@observer
|
|
class DocumentHtml extends React.Component {
|
|
static propTypes = {
|
|
html: PropTypes.string.isRequired,
|
|
}
|
|
|
|
componentDidMount = () => {
|
|
this.setExternalLinks();
|
|
}
|
|
|
|
componentDidUpdate = () => {
|
|
this.setExternalLinks();
|
|
}
|
|
|
|
setExternalLinks = () => {
|
|
const links = this.refs.content.querySelectorAll('a');
|
|
links.forEach(link => {
|
|
if (link.hostname !== window.location.hostname) {
|
|
link.target = '_blank'; // eslint-disable-line no-param-reassign
|
|
}
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div
|
|
ref="content"
|
|
className={ styles.document }
|
|
dangerouslySetInnerHTML={ { __html: this.props.html } }
|
|
{ ...this.props }
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
@observer
|
|
class Document extends React.Component {
|
|
static propTypes = {
|
|
document: React.PropTypes.object.isRequired,
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className={ styles.container }>
|
|
<PublishingInfo
|
|
name={ this.props.document.user.name }
|
|
avatarUrl={ this.props.document.user.avatarUrl }
|
|
createdAt={ this.props.document.createdAt }
|
|
updatedAt={ this.props.document.updatedAt }
|
|
/>
|
|
<DocumentHtml html={ this.props.document.html } />
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
export default Document;
|
|
export {
|
|
DocumentHtml
|
|
};
|