PromucFlow_constructor/app/client/src/components/editorComponents/RequestView.tsx
Hetu Nandu 38aafb5027
Fix embedded datasource path (#2)
* Refactor CodeMirror component to be more configurable and testable (hints, markings)
* Update the existing datasource path component
* Better text highlighting for JSON fields
* Case insensitive hinting in autocomplete
2020-07-01 15:31:07 +05:30

189 lines
4.5 KiB
TypeScript

import { ITreeNode, Classes, Tree } from "@blueprintjs/core";
import React, { useState } from "react";
import styled from "styled-components";
import ReadOnlyEditor from "components/editorComponents/ReadOnlyEditor";
const StyledKey = styled.span`
font-family: DM Sans;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 16px;
color: black;
user-select: none;
`;
const StyledValue = styled.span`
font-family: monospace;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 16px;
color: #4d4d4d;
user-select: text;
`;
const KeyValuePair = function(props: { hKey: string; hValue: string }) {
return (
<StyledValue>
<StyledKey>{props.hKey}</StyledKey>
{props.hValue}
</StyledValue>
);
};
const StyledTreeContainer = styled.div`
font-family: DM Sans;
.bp3-tree-node-content {
height: auto;
}
.bp3-tree-node-label {
overflow: auto;
word-break: break-all;
white-space: break-spaces;
padding: 4px 0px;
}
.bp3-tree-node-content-0 {
background: #eeeeee;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 16px;
cursor: pointer;
}
.bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,
.bp3-tree-node.bp3-tree-node-selected > .bp3-icon {
background-color: #f0f0f0;
color: black;
}
.bp3-tree-node-caret-none {
display: none;
}
.bp3-tree-node-content-1 {
padding-left: 24px;
}
.bp3-tree-node-list {
padding-top: 5px;
padding-bottom: 8px;
.bp3-tree-root {
padding-top: 0px;
padding-bottom: 0px;
}
}
.bp3-tree-node-caret {
color: black;
}
.request-body {
.bp3-tree-node-content-1,
.bp3-tree-node-label,
.bp3-tree-node-list {
padding-left: 0;
}
}
`;
export function RequestView(props: {
requestURL: string;
requestMethod: string;
requestHeaders: Record<string, string[]>;
requestBody: string;
}) {
const [generalExpanded, setGeneralExpanded] = useState(true);
const [requestHeadersExpanded, setRequestHeadersExpanded] = useState(true);
const [requestBodyExpanded, setRequestBodyExpanded] = useState(true);
const headers = Object.keys(props.requestHeaders).map(
(hKey: string, index: number) => {
return {
id: index,
label: (
<KeyValuePair
hKey={`${hKey}: `}
hValue={props.requestHeaders[hKey].join(", ")}
/>
),
};
},
);
function setExpanded(id: number | string, expanded: boolean) {
id === 1 && setGeneralExpanded(expanded);
id === 2 && setRequestHeadersExpanded(expanded);
id === 3 && setRequestBodyExpanded(expanded);
}
function handleNodeClick(nodeData: ITreeNode) {
setExpanded(nodeData.id, !nodeData.isExpanded);
}
function handleNodeExpand(nodeData: ITreeNode) {
setExpanded(nodeData.id, true);
}
function handleNodeCollapse(nodeData: ITreeNode) {
setExpanded(nodeData.id, false);
}
return (
<StyledTreeContainer>
<Tree
contents={[
{
id: 1,
isExpanded: generalExpanded,
label: "General",
childNodes: [
{
id: 2,
label: (
<KeyValuePair
hKey="Request URL: "
hValue={props.requestURL}
/>
),
},
{
id: 3,
label: (
<KeyValuePair
hKey="Request Method: "
hValue={props.requestMethod}
/>
),
},
],
},
{
id: 2,
isExpanded: requestHeadersExpanded,
label: "Request Headers",
childNodes: headers,
},
{
id: 3,
isExpanded: requestBodyExpanded,
label: "Request Body",
className: "request-body",
childNodes: [
{
id: 1,
label: (
<ReadOnlyEditor
input={{
value: props.requestBody,
}}
height={"100%"}
/>
),
},
],
},
]}
onNodeClick={handleNodeClick}
onNodeCollapse={handleNodeCollapse}
onNodeExpand={handleNodeExpand}
className={Classes.ELEVATION_0}
/>
</StyledTreeContainer>
);
}