2016-11-29 20:19:21 +00:00
|
|
|
import React, {PureComponent, PropTypes} from 'react';
|
|
|
|
|
|
|
|
class ResponseWebview extends PureComponent {
|
|
|
|
_handleSetWebviewRef = n => this._webview = n;
|
2016-04-29 01:00:12 +00:00
|
|
|
|
|
|
|
_setBody () {
|
2016-06-19 07:21:43 +00:00
|
|
|
const {body, contentType, url} = this.props;
|
|
|
|
const newBody = body.replace('<head>', `<head><base href="${url}">`);
|
2016-08-15 17:04:36 +00:00
|
|
|
this._webview.loadURL(`data:${contentType},${encodeURIComponent(newBody)}`);
|
2016-04-29 01:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate () {
|
|
|
|
this._setBody();
|
|
|
|
}
|
2016-05-01 19:56:30 +00:00
|
|
|
|
2016-04-29 01:00:12 +00:00
|
|
|
componentDidMount () {
|
2016-11-29 20:19:21 +00:00
|
|
|
this._webview.addEventListener('dom-ready', () => {
|
2016-08-15 17:04:36 +00:00
|
|
|
this._webview.removeEventListener('dom-ready', cb);
|
2016-04-29 01:00:12 +00:00
|
|
|
this._setBody();
|
2016-11-29 20:19:21 +00:00
|
|
|
});
|
2016-04-29 01:00:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2016-11-29 20:19:21 +00:00
|
|
|
<webview ref={this._handleSetWebviewRef} src="about:blank"></webview>
|
2016-04-29 01:00:12 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-15 17:04:36 +00:00
|
|
|
ResponseWebview.propTypes = {
|
2016-04-30 05:01:57 +00:00
|
|
|
body: PropTypes.string.isRequired,
|
2016-06-19 07:21:43 +00:00
|
|
|
contentType: PropTypes.string.isRequired,
|
|
|
|
url: PropTypes.string.isRequired
|
2016-04-29 01:00:12 +00:00
|
|
|
};
|
|
|
|
|
2016-08-15 17:04:36 +00:00
|
|
|
export default ResponseWebview;
|