mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
82 lines
2.0 KiB
JavaScript
82 lines
2.0 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import autobind from 'autobind-decorator';
|
|
import ResponseTimelineViewer from '../../components/viewers/response-timeline-viewer';
|
|
import Modal from '../base/modal';
|
|
import ModalBody from '../base/modal-body';
|
|
import ModalHeader from '../base/modal-header';
|
|
import * as models from '../../../models/index';
|
|
import type { Response } from '../../../models/response';
|
|
import type { Settings } from '../../../models/settings';
|
|
|
|
type Props = {|
|
|
settings: Settings,
|
|
|};
|
|
|
|
type State = {|
|
|
response: Response | null,
|
|
title: string | null,
|
|
|};
|
|
|
|
@autobind
|
|
class ResponseDebugModal extends React.PureComponent<Props, State> {
|
|
modal: ?Modal;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
response: null,
|
|
title: '',
|
|
};
|
|
}
|
|
|
|
_setModalRef(n: ?Modal) {
|
|
this.modal = n;
|
|
}
|
|
|
|
hide() {
|
|
this.modal && this.modal.hide();
|
|
}
|
|
|
|
async show(options: { responseId?: string, response?: Response, title?: string }) {
|
|
const response = options.response
|
|
? options.response
|
|
: await models.response.getById(options.responseId || 'n/a');
|
|
|
|
this.setState({
|
|
response,
|
|
title: options.title || null,
|
|
});
|
|
|
|
this.modal && this.modal.show();
|
|
}
|
|
|
|
render() {
|
|
const { settings } = this.props;
|
|
const { response, title } = this.state;
|
|
|
|
return (
|
|
<Modal ref={this._setModalRef} tall>
|
|
<ModalHeader>{title || 'Response Timeline'}</ModalHeader>
|
|
<ModalBody>
|
|
<div style={{ display: 'grid' }} className="tall">
|
|
{response ? (
|
|
<ResponseTimelineViewer
|
|
editorFontSize={settings.editorFontSize}
|
|
editorIndentSize={settings.editorIndentSize}
|
|
editorLineWrapping={settings.editorLineWrapping}
|
|
response={response}
|
|
/>
|
|
) : (
|
|
<div>No response found</div>
|
|
)}
|
|
</div>
|
|
</ModalBody>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ResponseDebugModal;
|