Blame view

datalets/base-ajax-json-jsonpath-datalet/static/js/AjaxJsonJsonPathBehavior.json 1.53 KB
584d6ecd   Luigi Serra   Update components...
1
2
3
4
5
6
  {

    "elements": [],

    "elementsByTagName": {},

    "behaviors": [

      {

        "type": "behaviour",

c6d8e1a1   Luigi Serra   fix
7
        "desc": "Defined in `AjaxJsonJsonPathBehaviour.js`. It is a specific implemetation that uses Ajax to get the data in Json format and uses JsonPath to select and filtering the data",

584d6ecd   Luigi Serra   Update components...
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
        "events": [],

        "properties": [

          {

            "name": "json_results",

            "type": "Object",

            "desc": "It contains the json data from async xhr call returned from core-ajax core component",

            "published": true

          },

          {

            "name": "requestData",

            "type": "Function",

            "desc": "Make an AJAX call to the dataset URL",

            "params": [

            ],

            "published": true,

            "function": true

          },

          {

            "name": "handleResponse",

            "type": "Function",

            "desc": "Called when core-ajax component receive the json data from called url.",

            "params": [

            ],

            "published": true,

            "function": true

          },

          {

            "name": "selectData",

            "type": "Function",

            "desc": "selectData built a JSONPATH query based on the user selected fields then extract data from the JSON response. This method built an objects <name, data> for every user selected field and push it into the data array.",

            "params": [

            ],

            "published": true,

            "function": true

          }

        ],

        "is": "AjaxJsonJsonPathBehaviour"

      }

    ]

  }