mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-02 00:54:09 +00:00
77 lines
2.3 KiB
JavaScript
77 lines
2.3 KiB
JavaScript
import React from 'react';
|
|
import get from 'lodash/get';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import CodeEditor from 'components/CodeEditor';
|
|
import { updateRequestGraphqlVariables } from 'providers/ReduxStore/slices/collections';
|
|
import { sendRequest, saveRequest } from 'providers/ReduxStore/slices/collections/actions';
|
|
import { useTheme } from 'providers/Theme';
|
|
import StyledWrapper from './StyledWrapper';
|
|
import { IconWand } from '@tabler/icons';
|
|
import toast from 'react-hot-toast';
|
|
import { prettifyJsonString } from 'utils/common/index';
|
|
|
|
const GraphQLVariables = ({ variables, item, collection }) => {
|
|
const dispatch = useDispatch();
|
|
|
|
const { displayedTheme } = useTheme();
|
|
const preferences = useSelector((state) => state.app.preferences);
|
|
|
|
const onPrettify = () => {
|
|
if (!variables) return;
|
|
try {
|
|
const prettyVariables = prettifyJsonString(variables);
|
|
dispatch(
|
|
updateRequestGraphqlVariables({
|
|
variables: prettyVariables,
|
|
itemUid: item.uid,
|
|
collectionUid: collection.uid
|
|
})
|
|
);
|
|
toast.success('Variables prettified');
|
|
} catch (error) {
|
|
console.error(error);
|
|
toast.error('Error occurred while prettifying GraphQL variables');
|
|
}
|
|
};
|
|
|
|
const onEdit = (value) => {
|
|
dispatch(
|
|
updateRequestGraphqlVariables({
|
|
variables: value,
|
|
itemUid: item.uid,
|
|
collectionUid: collection.uid
|
|
})
|
|
);
|
|
};
|
|
|
|
const onRun = () => dispatch(sendRequest(item, collection.uid));
|
|
const onSave = () => dispatch(saveRequest(item.uid, collection.uid));
|
|
|
|
return (
|
|
<>
|
|
<button
|
|
className="btn-add-param text-link px-4 py-4 select-none absolute right-0 z-10"
|
|
onClick={onPrettify}
|
|
title="Prettify"
|
|
>
|
|
<IconWand size={20} strokeWidth={1.5} />
|
|
</button>
|
|
<CodeEditor
|
|
collection={collection}
|
|
value={variables || ''}
|
|
theme={displayedTheme}
|
|
font={get(preferences, 'font.codeFont', 'default')}
|
|
fontSize={get(preferences, 'font.codeFontSize')}
|
|
onEdit={onEdit}
|
|
mode="application/json"
|
|
onRun={onRun}
|
|
onSave={onSave}
|
|
enableVariableHighlighting={true}
|
|
showHintsFor={['variables']}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default GraphQLVariables;
|