bruno/packages/grafnode-components/src/components/RequestTabPanel/index.js

158 lines
4.4 KiB
JavaScript
Raw Normal View History

import React, { useState, useEffect } from 'react';
import find from 'lodash/find';
import QueryUrl from '../QueryUrl';
2022-01-20 17:04:44 +01:00
import GraphQLRequestPane from '../GraphQLRequestPane';
import HttpRequestPane from '../HttpRequestPane';
import ResponsePane from '../ResponsePane';
2022-01-04 18:00:15 +01:00
import Welcome from '../Welcome';
import {
flattenItems,
findItem
} from '../../utils';
import useGraphqlSchema from '../../hooks/useGraphqlSchema';
import StyledWrapper from './StyledWrapper';
const RequestTabPanel = ({dispatch, actions, collections, activeRequestTabId, requestTabs}) => {
if(typeof window == 'undefined') {
return <div></div>;
}
let asideWidth = 200;
let {
schema
} = useGraphqlSchema('https://api.spacex.land/graphql');
const [leftPaneWidth, setLeftPaneWidth] = useState(500);
const [rightPaneWidth, setRightPaneWidth] = useState(window.innerWidth - 700 - asideWidth);
const [dragging, setDragging] = useState(false);
const handleMouseMove = (e) => {
e.preventDefault();
if(dragging) {
setLeftPaneWidth(e.clientX - asideWidth );
setRightPaneWidth(window.innerWidth - (e.clientX));
}
};
const handleMouseUp = (e) => {
e.preventDefault();
setDragging(false);
};
const handleMouseDown = (e) => {
e.preventDefault();
setDragging(true);
};
// useEffect(() => {
// document.addEventListener('mouseup', handleMouseUp);
// document.addEventListener('mousemove', handleMouseMove);
// return () => {
// document.removeEventListener('mouseup', handleMouseUp);
// document.removeEventListener('mousemove', handleMouseMove);
// };
// }, [dragging, leftPaneWidth]);
const onUrlChange = (value) => {
dispatch({
type: actions.REQUEST_URL_CHANGED,
url: value,
requestTab: focusedTab,
collectionId: collection ? collection.id : null
});
};
const onGraphqlQueryChange = (value) => {
console.log(value);
dispatch({
type: actions.REQUEST_GQL_QUERY_CHANGED,
query: value,
requestTab: focusedTab,
collectionId: collection ? collection.id : null
});
};
if(!activeRequestTabId) {
return (
2022-01-04 18:00:15 +01:00
<Welcome dispatch={dispatch} actions={actions}/>
);
}
const focusedTab = find(requestTabs, (rt) => rt.id === activeRequestTabId);
if(!focusedTab || !focusedTab.id) {
return (
<div className="pb-4 px-4">An error occured!</div>
);
}
2022-01-04 18:00:15 +01:00
let collection;
let item;
if(focusedTab.collectionId) {
collection = find(collections, (c) => c.id === focusedTab.collectionId);
let flattenedItems = flattenItems(collection.items);
item = findItem(flattenedItems, activeRequestTabId);
} else {
item = focusedTab;
}
const runQuery = async () => {
dispatch({
type: actions.SEND_REQUEST,
requestTab: focusedTab,
collectionId: collection ? collection.id : null
});
};
return (
2022-01-07 20:26:10 +01:00
<StyledWrapper className="flex flex-col flex-grow">
<div
className="pb-4 px-4"
style={{
2022-01-24 23:11:35 +01:00
borderBottom: 'solid 1px var(--color-layout-border)'
}}
>
<div className="pt-2 text-gray-600">{item.name}</div>
<QueryUrl
value = {item.request.url}
onChange={onUrlChange}
handleRun={runQuery}
collections={collections}
/>
</div>
2022-01-07 20:26:10 +01:00
<section className="main flex flex-grow">
<section className="request-pane px-4">
2022-01-07 20:26:10 +01:00
<div style={{width: `${leftPaneWidth}px`, height: 'calc(100% - 5px)'}}>
2022-01-20 17:04:44 +01:00
{item.request.type === 'graphql' ? (
<GraphQLRequestPane
onRunQuery={runQuery}
schema={schema}
leftPaneWidth={leftPaneWidth}
value={item.request.body.graphql.query}
onQueryChange={onGraphqlQueryChange}
/>
) : null}
{item.request.type === 'http' ? (
<HttpRequestPane
leftPaneWidth={leftPaneWidth}
/>
) : null}
</div>
</section>
<div className="drag-request" onMouseDown={handleMouseDown}>
</div>
<section className="response-pane px-4 flex-grow">
<ResponsePane
rightPaneWidth={rightPaneWidth}
2022-01-01 19:42:38 +01:00
response={item.response}
isLoading={item.response && item.response.state === 'sending' ? true : false}
/>
</section>
</section>
</StyledWrapper>
)
};
export default RequestTabPanel;