aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx')
-rw-r--r--client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx48
1 files changed, 33 insertions, 15 deletions
diff --git a/client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx b/client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx
index 73dce637500..df380c62fa1 100644
--- a/client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx
+++ b/client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx
@@ -4,18 +4,22 @@ import pasteImage from '../../assets/img/paste.svg';
import { QueryInputContext } from '../Contexts/QueryInputContext';
export default function PasteJSONButton() {
- const { inputs, setInputs, id, setId, levelZeroParameters, childMap } =
+ const { setInputs, setId, levelZeroParameters, childMap } =
useContext(QueryInputContext);
const [paste, setPaste] = useState(false);
- const handleClick = (e) => {
- alert('Button is non-functional');
- // setPaste(true);
- // window.addEventListener('paste', handlePaste)
+ //TODO: fix that the second-level dropdowns do not get set properly when pasting a JSON query
+
+ const handleClick = () => {
+ setPaste(true);
+ window.addEventListener('paste', handlePaste);
};
const handlePaste = (e) => {
setPaste(false);
+ // Stop data actually being pasted into div
+ e.stopPropagation();
+ e.preventDefault();
const pastedData = e.clipboardData.getData('text');
alert('Converting JSON: \n\n ' + pastedData);
window.removeEventListener('paste', handlePaste);
@@ -25,37 +29,51 @@ export default function PasteJSONButton() {
const convertPastedJSON = (pastedData) => {
try {
var json = JSON.parse(pastedData);
- setId(1);
- const newInputs = buildFromJSON(json, id);
+ const newInputs = buildFromJSON(json, 2);
setInputs(newInputs);
} catch (error) {
+ console.log(error);
alert('Could not parse JSON, with error-message: \n\n' + error.message);
}
};
- const buildFromJSON = (json, id) => {
+ const buildFromJSON = (json, id, parentTypeof) => {
let newInputs = [];
let keys = Object.keys(json);
for (let i = 0; i < keys.length; i++) {
let childId = 1;
- let newInput = { id: id, type: keys[i] };
- if (json[keys[i]] === Object) {
+ let newInput = { id: `${id}`, type: keys[i] };
+ //If the value for the key is a child object
+ if (typeof json[keys[i]] === 'object') {
newInput['typeof'] = 'Parent';
newInput['input'] = '';
newInput['hasChildren'] = true;
+ // Construct the id of the correct pattern
let tempId = id + '.' + childId;
childId += 1;
- newInput['children'] = buildFromJSON(json[keys[i]], tempId);
+ let type;
+ if (id.length > 1) {
+ //Used to get the correct value from childMap
+ type = parentTypeof + '_' + keys[i];
+ } else {
+ type = keys[i];
+ }
+ newInput['children'] = buildFromJSON(json[keys[i]], tempId, type);
} else {
- newInput['typeof'] = levelZeroParameters[keys[i]].type;
+ if (id.length > 1) {
+ const choices = childMap[parentTypeof];
+ newInput['typeof'] = choices[keys[i]].type;
+ } else {
+ newInput['typeof'] = levelZeroParameters[keys[i]].type;
+ }
newInput['input'] = json[keys[i]];
newInput['hasChildren'] = false;
newInput['children'] = [];
}
- setId(id + 1);
- console.log(newInput);
+ id += 1;
newInputs.push(newInput);
}
+ setId(id);
return newInputs;
};
@@ -65,7 +83,7 @@ export default function PasteJSONButton() {
id="pasteJSON"
className="pasteJSON"
image={pasteImage}
- style={{ marginTop: '-2px', marginRight: '3px' }}
+ //style={{ marginTop: '-2px', marginRight: '3px' }}
onClick={handleClick}
>
{paste ? 'Press CMD + V' : 'Paste JSON'}