Skip to content

Commit 564b6b8

Browse files
authored
Check response type if html to show html example of using dd() function (#383)
1 parent a475303 commit 564b6b8

File tree

2 files changed

+67
-42
lines changed

2 files changed

+67
-42
lines changed

ui/src/components/ApiAction.tsx

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
import React, { useEffect, useState } from 'react';
1+
// noinspection t
2+
3+
import React, {useEffect, useState} from 'react';
24

35
import useLocalStorage from 'react-use-localstorage';
4-
import {makeCurlCommand } from '../libs/strings'
5-
import type {IAPIInfo, LRDResponse, IConfig} from '../libs/types'
6+
import {makeCurlCommand} from '../libs/strings'
7+
import type {IAPIInfo, IConfig, LRDResponse} from '../libs/types'
68
import ApiActionResponse from './elements/ApiActionResponse'
79
import ApiActionRequest from './elements/ApiActionRequest'
810
import ApiActionTabs from './elements/ApiActionTabs'
911
import ApiActionInfo from './elements/ApiActionInfo'
1012
import ApiActionSQL from './elements/ApiActionSQL'
1113
import ApiActionLog from './elements/ApiActionLog'
1214
import ApiActionEvents from './elements/ApiActionEvents'
13-
import { objectToFormData } from '../libs/object';
15+
import {objectToFormData} from '../libs/object';
1416

1517
interface Props {
1618
lrdDocsItem: IAPIInfo,
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import React, { useEffect } from 'react';
1+
// noinspection t
2+
3+
import React, {useEffect, useState} from 'react';
24
import "ace-builds";
35
import jsonWorkerUrl from 'ace-builds/src-min-noconflict/worker-json?url';
4-
5-
ace.config.setModuleUrl('ace/mode/json_worker', jsonWorkerUrl);
6-
76
import AceEditor from 'react-ace';
87
import "ace-builds/src-noconflict/mode-json";
98
import "ace-builds/src-noconflict/theme-one_dark";
109
import "ace-builds/src-noconflict/ext-language_tools";
1110
import useLocalStorage from 'react-use-localstorage';
1211

12+
ace.config.setModuleUrl('ace/mode/json_worker', jsonWorkerUrl);
1313

1414
interface Props {
1515
responseData: string,
@@ -25,7 +25,12 @@ export default function ApiActionResponse(props: Props) {
2525
const { responseHeaders, responseData, timeTaken, responseStatus, serverMemory, requestUri, method } = props
2626
const [savePreviousResponse] = useLocalStorage('savePreviousResponse', 'false');
2727
const [previousResponse, setPreviousResponse] = useLocalStorage('previousResponse' + requestUri + method, '');
28+
const [isHtml, setIsHtml] = useState(false);
2829
useEffect(() => {
30+
if (JSON.parse(responseHeaders)['content-type'].split(';')[0] === 'text/html') {
31+
setIsHtml(true)
32+
}
33+
2934
if (responseData && savePreviousResponse === 'true') {
3035
setPreviousResponse(responseData)
3136
}
@@ -36,7 +41,7 @@ export default function ApiActionResponse(props: Props) {
3641
{responseHeaders && (
3742
<>
3843
<div className="collapse collapse-arrow">
39-
<input type="checkbox" />
44+
<input type="checkbox"/>
4045
<div className="collapse-title text-sm text-slate-500 pl-0">
4146
Show Response Headers
4247
</div>
@@ -49,14 +54,18 @@ export default function ApiActionResponse(props: Props) {
4954
wrapEnabled={true}
5055
value={responseHeaders}
5156
theme="one_dark"
52-
onLoad={function (editor) { editor.renderer.setPadding(0); editor.renderer.setScrollMargin(5, 5, 5, 5); editor.renderer.setShowPrintMargin(false); }}
57+
onLoad={function (editor) {
58+
editor.renderer.setPadding(0);
59+
editor.renderer.setScrollMargin(5, 5, 5, 5);
60+
editor.renderer.setShowPrintMargin(false);
61+
}}
5362
editorProps={{
5463
$blockScrolling: true
5564
}}
5665
/>
5766
</div>
5867
</div>
59-
<br />
68+
<br/>
6069
</>
6170
)}
6271
{(!responseData && !previousResponse) && (
@@ -67,41 +76,55 @@ export default function ApiActionResponse(props: Props) {
6776
{(!responseData && previousResponse) && (
6877
<div className="mockup-code mb-5">
6978
<span className='pl-5 text-sm text-warning'>Previous Response</span>
70-
<AceEditor
71-
maxLines={50}
72-
width='100%'
73-
mode="json"
74-
wrapEnabled={true}
75-
readOnly={true}
76-
value={previousResponse}
77-
theme="one_dark"
78-
onLoad={function (editor) { editor.renderer.setPadding(0); editor.renderer.setScrollMargin(5, 5, 5, 5); editor.renderer.setShowPrintMargin(false); }}
79-
editorProps={{
80-
$blockScrolling: true
81-
}}
82-
/>
79+
{! isHtml ? (
80+
<AceEditor
81+
maxLines={50}
82+
width='100%'
83+
mode="json"
84+
wrapEnabled={true}
85+
readOnly={true}
86+
value={previousResponse}
87+
theme="one_dark"
88+
onLoad={function (editor) {
89+
editor.renderer.setPadding(0);
90+
editor.renderer.setScrollMargin(5, 5, 5, 5);
91+
editor.renderer.setShowPrintMargin(false);
92+
}}
93+
editorProps={{
94+
$blockScrolling: true
95+
}}
96+
/>
97+
) : (<div dangerouslySetInnerHTML={{__html: responseData}} />)}
8398
</div>
8499
)}
85100
{responseData && (
86101
<div className="mockup-code">
87102
<span className='pl-5 text-sm text-slate-500'>RESPONSE</span>
88-
<br />
89-
<span className='pl-5 text-sm'>Time taken: <b>{timeTaken}ms</b>, Status Code: <b>{responseStatus}</b>, Server memory: <b>{serverMemory}</b></span>
90-
<AceEditor
91-
maxLines={50}
92-
width='100%'
93-
mode="json"
94-
wrapEnabled={true}
95-
readOnly={true}
96-
value={responseData}
97-
theme="one_dark"
98-
onLoad={function (editor) { editor.renderer.setPadding(0); editor.renderer.setScrollMargin(5, 5, 5, 5); editor.renderer.setShowPrintMargin(false); }}
99-
editorProps={{
100-
$blockScrolling: true
101-
}}
102-
/>
103-
</div>
104-
)}
105-
</>
103+
<br/>
104+
<span
105+
className='pl-5 text-sm'>Time taken: <b>{timeTaken}ms</b>, Status Code: <b>{responseStatus}</b>, Server memory: <b>{serverMemory}</b></span>
106+
{! isHtml ? (
107+
<AceEditor
108+
maxLines={50}
109+
width='100%'
110+
mode="json"
111+
wrapEnabled={true}
112+
readOnly={true}
113+
value={responseData}
114+
theme="one_dark"
115+
onLoad={function (editor) {
116+
editor.renderer.setPadding(0);
117+
editor.renderer.setScrollMargin(5, 5, 5, 5);
118+
editor.renderer.setShowPrintMargin(false);
119+
}}
120+
editorProps={{
121+
$blockScrolling: true
122+
}}
123+
/>
124+
) : (<div dangerouslySetInnerHTML={{__html: responseData}} />)}
125+
</div>
106126
)
107127
}
128+
</>
129+
)
130+
}

0 commit comments

Comments
 (0)