-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx.json
122 lines (122 loc) · 3.13 KB
/
x.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "react",
"description": "React for Chiχ",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/nodule/react.git"
},
"dependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"nodes": [
{
"name": "element",
"ns": "react",
"description": "Create a ReactElement",
"phrases": {
"active": "Creating ReactElement {input.tag}"
},
"dependencies": {
"npm": {
"react": "latest"
}
},
"ports": {
"input": {
"tag": {
"title": "Tag",
"type": "string"
},
"props": {
"title": "Props",
"type": "object",
"default": {}
},
"children": {
"title": "Children",
"type": "array",
"required": false
}
},
"output": {
"component": {
"title": "React Component",
"type": "ReactElement"
}
}
},
"fn": "output = function() {\n var element = react.createElement(\n $.tag,\n $.props,\n $.children\n );\n\n cb({\n component: $.create(element)\n });\n};\n"
},
{
"name": "render",
"ns": "react",
"description": "Render a ReactElement into the DOM",
"phrases": {
"active": "Rendering ReactElement"
},
"dependencies": {
"npm": {
"react-dom": "latest"
}
},
"ports": {
"input": {
"element": {
"title": "React Element",
"type": "function"
},
"container": {
"title": "Container",
"type": "HTMLElement",
"required": false
}
},
"output": {
"element": {
"title": "React Element",
"type": "ReactElement"
},
"container": {
"title": "Container",
"type": "HTMLElement"
}
}
},
"fn": "// react.initializeTouchEvents(true); // bit of a hack\noutput = function() {\n react_dom.render(\n $.element,\n $.container,\n function() {\n cb({\n element: $.get('element'),\n });\n if ($.container) {\n cb({container: $.get('container')});\n }\n }\n );\n};\n"
},
{
"name": "renderToString",
"ns": "react",
"description": "Render a ReactElement to its initial HTML",
"phrases": {
"active": "Rendering ReactElement to string"
},
"dependencies": {
"npm": {
"react": "latest"
}
},
"ports": {
"input": {
"element": {
"title": "React Element",
"type": "ReactElement"
}
},
"output": {
"element": {
"title": "React Element",
"type": "ReactElement"
},
"html": {
"title": "HTML",
"type": "string"
}
}
},
"fn": "output.html = $.create(react.renderToString($.element));\noutput.element = $.get('element');\n"
}
]
}