mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-01 00:24:08 +00:00
* Allow rearrangement of table items in params, body, vars, headers, and assert * updated drag function name
249 lines
7.6 KiB
JavaScript
249 lines
7.6 KiB
JavaScript
import React from 'react';
|
|
import get from 'lodash/get';
|
|
import cloneDeep from 'lodash/cloneDeep';
|
|
import InfoTip from 'components/InfoTip';
|
|
import { IconTrash } from '@tabler/icons';
|
|
import { useDispatch } from 'react-redux';
|
|
import { useTheme } from 'providers/Theme';
|
|
import {
|
|
addQueryParam,
|
|
updateQueryParam,
|
|
deleteQueryParam,
|
|
moveQueryParam,
|
|
updatePathParam
|
|
} from 'providers/ReduxStore/slices/collections';
|
|
import SingleLineEditor from 'components/SingleLineEditor';
|
|
import { saveRequest, sendRequest } from 'providers/ReduxStore/slices/collections/actions';
|
|
|
|
import StyledWrapper from './StyledWrapper';
|
|
import Table from 'components/Table/index';
|
|
import ReorderTable from 'components/ReorderTable';
|
|
|
|
const QueryParams = ({ item, collection }) => {
|
|
const dispatch = useDispatch();
|
|
const { storedTheme } = useTheme();
|
|
const params = item.draft ? get(item, 'draft.request.params') : get(item, 'request.params');
|
|
const queryParams = params.filter((param) => param.type === 'query');
|
|
const pathParams = params.filter((param) => param.type === 'path');
|
|
|
|
const handleAddQueryParam = () => {
|
|
dispatch(
|
|
addQueryParam({
|
|
itemUid: item.uid,
|
|
collectionUid: collection.uid
|
|
})
|
|
);
|
|
};
|
|
|
|
const onSave = () => dispatch(saveRequest(item.uid, collection.uid));
|
|
const handleRun = () => dispatch(sendRequest(item, collection.uid));
|
|
|
|
const handleQueryParamChange = (e, data, key) => {
|
|
let value;
|
|
|
|
switch (key) {
|
|
case 'name': {
|
|
value = e.target.value;
|
|
break;
|
|
}
|
|
case 'value': {
|
|
value = e.target.value;
|
|
break;
|
|
}
|
|
case 'enabled': {
|
|
value = e.target.checked;
|
|
break;
|
|
}
|
|
}
|
|
|
|
let queryParam = cloneDeep(data);
|
|
|
|
if (queryParam[key] === value) {
|
|
return;
|
|
}
|
|
|
|
queryParam[key] = value;
|
|
|
|
dispatch(
|
|
updateQueryParam({
|
|
queryParam,
|
|
itemUid: item.uid,
|
|
collectionUid: collection.uid
|
|
})
|
|
);
|
|
};
|
|
|
|
const handlePathParamChange = (e, data) => {
|
|
let value = e.target.value;
|
|
|
|
let pathParam = cloneDeep(data);
|
|
|
|
if (pathParam['value'] === value) {
|
|
return;
|
|
}
|
|
|
|
pathParam['value'] = value;
|
|
|
|
dispatch(
|
|
updatePathParam({
|
|
pathParam,
|
|
itemUid: item.uid,
|
|
collectionUid: collection.uid
|
|
})
|
|
);
|
|
};
|
|
|
|
const handleRemoveQueryParam = (param) => {
|
|
dispatch(
|
|
deleteQueryParam({
|
|
paramUid: param.uid,
|
|
itemUid: item.uid,
|
|
collectionUid: collection.uid
|
|
})
|
|
);
|
|
};
|
|
|
|
const handleQueryParamDrag = ({ updateReorderedItem }) => {
|
|
dispatch(
|
|
moveQueryParam({
|
|
collectionUid: collection.uid,
|
|
itemUid: item.uid,
|
|
updateReorderedItem
|
|
})
|
|
);
|
|
};
|
|
|
|
return (
|
|
<StyledWrapper className="w-full flex flex-col absolute">
|
|
<div className="flex-1 mt-2">
|
|
<div className="mb-1 title text-xs">Query</div>
|
|
<Table
|
|
headers={[
|
|
{ name: 'Name', accessor: 'name', width: '31%' },
|
|
{ name: 'Path', accessor: 'path', width: '56%' },
|
|
{ name: '', accessor: '', width: '13%' }
|
|
]}
|
|
>
|
|
<ReorderTable updateReorderedItem={handleQueryParamDrag}>
|
|
{queryParams && queryParams.length
|
|
? queryParams.map((param, index) => (
|
|
<tr key={param.uid} data-uid={param.uid}>
|
|
<td className="flex relative">
|
|
<input
|
|
type="text"
|
|
autoComplete="off"
|
|
autoCorrect="off"
|
|
autoCapitalize="off"
|
|
spellCheck="false"
|
|
value={param.name}
|
|
className="mousetrap"
|
|
onChange={(e) => handleQueryParamChange(e, param, 'name')}
|
|
/>
|
|
</td>
|
|
<td>
|
|
<SingleLineEditor
|
|
value={param.value}
|
|
theme={storedTheme}
|
|
onSave={onSave}
|
|
onChange={(newValue) => handleQueryParamChange({ target: { value: newValue } }, param, 'value')}
|
|
onRun={handleRun}
|
|
collection={collection}
|
|
variablesAutocomplete={true}
|
|
/>
|
|
</td>
|
|
<td>
|
|
<div className="flex items-center justify-center">
|
|
<input
|
|
type="checkbox"
|
|
checked={param.enabled}
|
|
tabIndex="-1"
|
|
className="mr-3 mousetrap"
|
|
onChange={(e) => handleQueryParamChange(e, param, 'enabled')}
|
|
/>
|
|
<button tabIndex="-1" onClick={() => handleRemoveQueryParam(param)}>
|
|
<IconTrash strokeWidth={1.5} size={20} />
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
))
|
|
: null}
|
|
</ReorderTable>
|
|
</Table>
|
|
|
|
<button className="btn-add-param text-link pr-2 py-3 mt-2 select-none" onClick={handleAddQueryParam}>
|
|
+ <span>Add Param</span>
|
|
</button>
|
|
<div className="mb-2 title text-xs flex items-stretch">
|
|
<span>Path</span>
|
|
<InfoTip
|
|
text={`
|
|
<div>
|
|
Path variables are automatically added whenever the
|
|
<code className="font-mono mx-2">:name</code>
|
|
template is used in the URL. <br/> For example:
|
|
<code className="font-mono mx-2">
|
|
https://example.com/v1/users/<span>:id</span>
|
|
</code>
|
|
</div>
|
|
`}
|
|
infotipId="path-param-InfoTip"
|
|
/>
|
|
</div>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td>Name</td>
|
|
<td>Value</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{pathParams && pathParams.length
|
|
? pathParams.map((path, index) => {
|
|
return (
|
|
<tr key={path.uid}>
|
|
<td>
|
|
<input
|
|
type="text"
|
|
autoComplete="off"
|
|
autoCorrect="off"
|
|
autoCapitalize="off"
|
|
spellCheck="false"
|
|
value={path.name}
|
|
className="mousetrap"
|
|
readOnly={true}
|
|
/>
|
|
</td>
|
|
<td>
|
|
<SingleLineEditor
|
|
value={path.value}
|
|
theme={storedTheme}
|
|
onSave={onSave}
|
|
onChange={(newValue) =>
|
|
handlePathParamChange(
|
|
{
|
|
target: {
|
|
value: newValue
|
|
}
|
|
},
|
|
path
|
|
)
|
|
}
|
|
onRun={handleRun}
|
|
collection={collection}
|
|
item={item}
|
|
/>
|
|
</td>
|
|
</tr>
|
|
);
|
|
})
|
|
: null}
|
|
</tbody>
|
|
</table>
|
|
{!(pathParams && pathParams.length) ? <div className="title pr-2 py-3 mt-2 text-xs"></div> : null}
|
|
</div>
|
|
</StyledWrapper>
|
|
);
|
|
};
|
|
export default QueryParams;
|