-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.js
More file actions
149 lines (144 loc) · 3.59 KB
/
test.js
File metadata and controls
149 lines (144 loc) · 3.59 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
const JsonFilter = require("./dist/json-filter.min.js");
const testOb = {
type: "multi-step-form",
steps: [
{
form: {
type: "single-step-form",
elements: [
{
type: "input",
schema: {
$ref: "schema#/properties/name",
},
label: "Name Sakib",
},
{
http: {
method: "post",
data: {
type: "application/json",
params: {
body: "This is a demo post by s4k1b",
title: "demo post sakib",
userId: {
$ref: "store#/user/data/uid",
},
},
},
response: {
value: {
$ref: "#/id",
},
},
path: "https://jsonplaceholder.typicode.com/posts",
},
type: "input",
schema: {
$ref: "schema#/properties/demo",
},
label: "Demo",
},
{
url: {
params: {
name: {
$ref: "model#/name",
},
},
path: "/${name}",
},
type: "anchor",
label: "Same Domain Route",
if: {
expression: "name === 'Sakib'",
params: {
name: {
$ref: "model#/name",
},
},
},
},
{
if: {
params: {
name: {
$ref: "model#/name",
},
},
expression: "name === 'Sakib'",
},
type: "anchor",
url: {
params: {
name: {
$ref: "model#/name",
},
},
path: "https://jsonplaceholder.typicode.com/${name}",
},
label: "External Domain Route",
},
{
label: "New Tab",
target: "_blank",
type: "anchor",
if: {
expression: "name === 'Sakib'",
params: {
name: {
$ref: "model#/name",
},
},
},
url: {
path: "/${name}",
params: {
name: {
$ref: "model#/name",
},
},
},
},
{
schema: {
$ref: "schema#/properties/postOb",
},
values: {
label: "Value",
type: "input",
schema: {
$ref: "schema#/properties/postOb/additionalProperties",
},
},
label: "Post 1",
http: {
path: "https://jsonplaceholder.typicode.com/posts/1",
method: "get",
},
keys: {
label: "Property",
},
type: "object-input-form",
},
],
},
title: "POST Demo",
},
],
};
const operations1 = [
{ $ref: "#/steps/0/form" },
{ $ref: "#/elements" },
{ $ref: "#/type" },
];
const operations2 = [
{ $ref: "#/steps/0/form" },
{ $ref: "#/elements" },
{ text: { $ref: "#/type" }, "#/type": { $ref: "#/schema/$ref" } },
];
const operations = [
{ $ref: "#/steps/0/form/elements/0" },
{ text: { $ref: "#/label" }, value: { $ref: "#/" } },
];
console.log(JsonFilter(testOb, operations));