aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/pages/querybuilder/Components/Buttons/PasteJSONButton.jsx
blob: 73dce63750006999e373ccba7650239631a002bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React, { useContext, useState } from 'react';
import ImageButton from './ImageButton';
import pasteImage from '../../assets/img/paste.svg';
import { QueryInputContext } from '../Contexts/QueryInputContext';

export default function PasteJSONButton() {
  const { inputs, setInputs, id, setId, levelZeroParameters, childMap } =
    useContext(QueryInputContext);
  const [paste, setPaste] = useState(false);

  const handleClick = (e) => {
    alert('Button is non-functional');
    // setPaste(true);
    // window.addEventListener('paste', handlePaste)
  };

  const handlePaste = (e) => {
    setPaste(false);
    const pastedData = e.clipboardData.getData('text');
    alert('Converting JSON: \n\n ' + pastedData);
    window.removeEventListener('paste', handlePaste);
    convertPastedJSON(pastedData);
  };

  const convertPastedJSON = (pastedData) => {
    try {
      var json = JSON.parse(pastedData);
      setId(1);
      const newInputs = buildFromJSON(json, id);
      setInputs(newInputs);
    } catch (error) {
      alert('Could not parse JSON, with error-message: \n\n' + error.message);
    }
  };

  const buildFromJSON = (json, id) => {
    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) {
        newInput['typeof'] = 'Parent';
        newInput['input'] = '';
        newInput['hasChildren'] = true;
        let tempId = id + '.' + childId;
        childId += 1;
        newInput['children'] = buildFromJSON(json[keys[i]], tempId);
      } else {
        newInput['typeof'] = levelZeroParameters[keys[i]].type;
        newInput['input'] = json[keys[i]];
        newInput['hasChildren'] = false;
        newInput['children'] = [];
      }
      setId(id + 1);
      console.log(newInput);
      newInputs.push(newInput);
    }
    return newInputs;
  };

  return (
    <>
      <ImageButton
        id="pasteJSON"
        className="pasteJSON"
        image={pasteImage}
        style={{ marginTop: '-2px', marginRight: '3px' }}
        onClick={handleClick}
      >
        {paste ? 'Press CMD + V' : 'Paste JSON'}
      </ImageButton>
    </>
  );
}