@gravitee/ui-components 3.28.7-debug-mode-add-menu-e271dd2 → 3.28.7-manual-chromatic-cb66b7f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +0 -1
  3. package/src/index.js +0 -1
  4. package/src/index.js.map +1 -1
  5. package/src/lib/events.d.ts +1 -4
  6. package/src/lib/events.js +1 -0
  7. package/src/lib/events.js.map +1 -1
  8. package/src/organisms/gv-properties/gv-properties.d.ts +1 -1
  9. package/src/organisms/gv-properties/gv-properties.js +5 -8
  10. package/src/organisms/gv-properties/gv-properties.js.map +1 -1
  11. package/src/organisms/gv-resources/gv-resources.d.ts +7 -2
  12. package/src/organisms/gv-resources/gv-resources.js +8 -9
  13. package/src/organisms/gv-resources/gv-resources.js.map +1 -1
  14. package/src/organisms/gv-schema-form/gv-schema-form.d.ts +1 -1
  15. package/src/organisms/gv-schema-form/gv-schema-form.js +2 -5
  16. package/src/organisms/gv-schema-form/gv-schema-form.js.map +1 -1
  17. package/src/organisms/gv-schema-form-control/gv-schema-form-control.d.ts +0 -1
  18. package/src/organisms/gv-schema-form-control/gv-schema-form-control.js +1 -9
  19. package/src/organisms/gv-schema-form-control/gv-schema-form-control.js.map +1 -1
  20. package/src/policy-studio/gv-policy-studio/gv-policy-studio.js +0 -3
  21. package/src/policy-studio/gv-policy-studio/gv-policy-studio.js.map +1 -1
  22. package/src/policy-studio/gv-design/gv-design.d.ts +0 -368
  23. package/src/policy-studio/gv-design/gv-design.js +0 -1491
  24. package/src/policy-studio/gv-design/gv-design.js.map +0 -1
  25. package/src/policy-studio/gv-design/gv-design.stories.d.ts +0 -203
  26. package/src/policy-studio/gv-design/gv-design.stories.js +0 -233
  27. package/src/policy-studio/gv-design/gv-design.stories.js.map +0 -1
  28. package/src/policy-studio/gv-design/gv-design.test.d.ts +0 -1
  29. package/src/policy-studio/gv-design/gv-design.test.js +0 -333
  30. package/src/policy-studio/gv-design/gv-design.test.js.map +0 -1
  31. package/src/policy-studio/gv-design/index.d.ts +0 -1
  32. package/src/policy-studio/gv-design/index.js +0 -17
  33. package/src/policy-studio/gv-design/index.js.map +0 -1
  34. package/wc/gv-design.d.ts +0 -1
  35. package/wc/gv-design.js +0 -2
  36. package/wc/gv-design.js.map +0 -1
@@ -1,333 +0,0 @@
1
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
- return new (P || (P = Promise))(function (resolve, reject) {
4
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
- step((generator = generator.apply(thisArg, _arguments || [])).next());
8
- });
9
- };
10
- /*
11
- * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
12
- *
13
- * Licensed under the Apache License, Version 2.0 (the "License");
14
- * you may not use this file except in compliance with the License.
15
- * You may obtain a copy of the License at
16
- *
17
- * http://www.apache.org/licenses/LICENSE-2.0
18
- *
19
- * Unless required by applicable law or agreed to in writing, software
20
- * distributed under the License is distributed on an "AS IS" BASIS,
21
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22
- * See the License for the specific language governing permissions and
23
- * limitations under the License.
24
- */
25
- import { afterEach, beforeEach, describe, expect, test, jest } from '@jest/globals';
26
- import { Page, querySelector } from '../../../testing/lib/test-utils';
27
- import definition from '../../../testing/resources/apim-definition.json';
28
- import policies from '../../../testing/resources/apim-policies.json';
29
- import resourceTypes from '../../../testing/resources/apim-resource-types.json';
30
- import './gv-design';
31
- import apimFlowSchema from '../../../testing/resources/schemas/apim-flow.json';
32
- describe('D E S I G N', () => {
33
- let page, component;
34
- beforeEach(() => {
35
- page = new Page();
36
- component = page.create('gv-design', {});
37
- component.policies = policies.data;
38
- component.resourceTypes = resourceTypes.data;
39
- component.flowSchema = {};
40
- });
41
- afterEach(() => {
42
- page.clear();
43
- });
44
- describe('C O M M O N', () => {
45
- test('should create element', () => {
46
- expect(window.customElements.get('gv-design')).toBeDefined();
47
- const element = querySelector('gv-design');
48
- expect(element).toBeDefined();
49
- expect(element.definedFlows.length).toEqual(0);
50
- expect(element.definedResources.length).toEqual(0);
51
- expect(element.definedProperties).toBeDefined();
52
- });
53
- test('should dispatch fetch-documentation when open documentation from menu', (done) => {
54
- const policy = { id: 'rate-limit', name: 'Rate Limit' };
55
- component.policies = [policy];
56
- component.addEventListener('gv-design:fetch-documentation', (e) => {
57
- expect(e).toBeDefined();
58
- done();
59
- });
60
- component._onOpenDocumentationFromMenu({ detail: { policy } });
61
- });
62
- test('should not updated when _dragPolicy change', (done) => {
63
- component.updated = jest.fn();
64
- component._dragPolicy = { policy: 'foobar' };
65
- component.updateComplete.then(() => {
66
- expect(component.updated.mock.calls.length).toBe(0);
67
- done();
68
- });
69
- });
70
- test('should not updated when _dropPolicy change', (done) => {
71
- component.updated = jest.fn();
72
- component._dropPolicy = { policy: 'foobar' };
73
- component.updateComplete.then(() => {
74
- expect(component.updated.mock.calls.length).toBe(0);
75
- done();
76
- });
77
- });
78
- });
79
- describe('A P I M', () => {
80
- beforeEach(() => {
81
- component.definition = definition;
82
- });
83
- test('should find flow by id', () => {
84
- const flowIdFromApiDefinition = component.definition.flows[0]._id;
85
- const flowIdFromPlanDefinition = component.definition.plans[1].flows[0]._id;
86
- expect(component._findFlowById(flowIdFromApiDefinition)).not.toBeNull();
87
- expect(component._findFlowById(flowIdFromPlanDefinition)).not.toBeNull();
88
- });
89
- test('should find collection of flow', (done) => {
90
- const flowIdFromApiDefinition = component.definition.flows[0]._id;
91
- const flowIdFromPlanDefinition = component.definition.plans[1].flows[0]._id;
92
- component.updateComplete.then(() => {
93
- expect(component._findFlowCollection(flowIdFromApiDefinition)).toEqual({
94
- plan: undefined,
95
- flows: component.definition.flows,
96
- });
97
- expect(component._findFlowCollection(flowIdFromPlanDefinition)).toEqual({
98
- plan: component.definition.plans[1],
99
- flows: component.definition.plans[1].flows,
100
- });
101
- done();
102
- });
103
- });
104
- test('should delete flow from plan', () => {
105
- const flow = component.definition.plans[1].flows[0];
106
- expect(component.definition.plans[1].flows.length).toEqual(3);
107
- expect(component.definition.flows.length).toEqual(3);
108
- component._onDeleteFlow({ detail: { content: Object.assign({}, flow) } });
109
- expect(component.definition.plans[1].flows.length).toEqual(2);
110
- expect(component.definition.flows.length).toEqual(3);
111
- });
112
- test('should add flow plan', (done) => {
113
- expect(component.definition.plans[1].flows.length).toEqual(3);
114
- expect(component.getSelectedFlow()).toBeDefined();
115
- component.flowSchema = {
116
- type: 'object',
117
- id: 'apim',
118
- properties: {
119
- name: {
120
- title: 'Name',
121
- description: 'The name of flow. If empty, the name will be generated with the path and methods',
122
- type: 'string',
123
- },
124
- 'path-operator': {
125
- type: 'object',
126
- title: 'Path',
127
- properties: {
128
- operator: {
129
- title: 'Operator path',
130
- description: 'The operator path',
131
- type: 'string',
132
- enum: ['EQUALS', 'STARTS_WITH'],
133
- default: 'STARTS_WITH',
134
- 'x-schema-form': {
135
- titleMap: {
136
- EQUALS: 'Equals',
137
- STARTS_WITH: 'Starts with',
138
- },
139
- },
140
- },
141
- path: {
142
- title: 'Path',
143
- description: 'The path of flow (must start by /)',
144
- type: 'string',
145
- pattern: '^/',
146
- default: '/',
147
- },
148
- },
149
- required: ['path', 'operator'],
150
- },
151
- methods: {
152
- title: 'Methods',
153
- description: 'The HTTP methods of flow (ALL if empty)',
154
- type: 'array',
155
- items: {
156
- type: 'string',
157
- enum: ['CONNECT', 'DELETE', 'GET', 'HEAD', 'OPTIONS', 'PATCH', 'POST', 'PUT', 'TRACE'],
158
- },
159
- },
160
- condition: {
161
- title: 'Condition',
162
- description: 'The extra condition of flow',
163
- type: 'string',
164
- },
165
- },
166
- required: [],
167
- disabled: [],
168
- };
169
- component.updateComplete
170
- .then(() => component._onAddFlowPlan({ detail: { planIndex: 1 } }))
171
- .then(() => component.updateComplete)
172
- .then(() => {
173
- expect(component.definition.plans[1].flows.length).toEqual(4);
174
- const createdFlow = component.definition.plans[1].flows[3];
175
- expect(createdFlow._dirty).toEqual(true);
176
- expect(createdFlow.name).toEqual('');
177
- expect(createdFlow.post).toEqual([]);
178
- expect(createdFlow.pre).toEqual([]);
179
- expect(createdFlow._id).toBeDefined();
180
- expect(createdFlow['path-operator']).toBeDefined();
181
- expect(createdFlow['path-operator'].operator).toBeDefined();
182
- expect(createdFlow['path-operator'].path).toBeDefined();
183
- expect(createdFlow.type).not.toBeDefined();
184
- done();
185
- });
186
- });
187
- test('should create element with definition', () => {
188
- expect(component.definedFlows.length).toEqual(3);
189
- expect(component.definedResources.length).toEqual(1);
190
- expect(Object.keys(component.definedProperties).length).toEqual(3);
191
- expect(component.definedFlows[0]._id).toBeDefined();
192
- expect(component.definedResources[0]._id).toBeDefined();
193
- expect(component.selectedFlowsId.length).toEqual(1);
194
- });
195
- });
196
- describe('F L O W S', () => {
197
- test('should add flow', () => __awaiter(void 0, void 0, void 0, function* () {
198
- component.definition = { flows: [] };
199
- component.flowSchema = {
200
- type: 'object',
201
- id: 'am',
202
- properties: {
203
- name: {
204
- title: 'Name',
205
- description: 'The name of flow. If empty, the name will be generated with the path and methods',
206
- type: 'string',
207
- default: 'New Flow',
208
- },
209
- type: {
210
- title: 'Type',
211
- description: 'The type of flow',
212
- type: 'string',
213
- default: 'ROOT',
214
- enum: ['ROOT', 'LOGIN', 'CONSENT', 'REGISTER'],
215
- },
216
- condition: {
217
- title: 'Condition',
218
- description: 'The condition of flow',
219
- type: 'string',
220
- },
221
- },
222
- required: [],
223
- disabled: [],
224
- };
225
- yield component._onAddFlow();
226
- expect(component.definition.flows.length).toEqual(1);
227
- const createdFlow = component.definition.flows[0];
228
- expect(createdFlow._dirty).toEqual(true);
229
- expect(createdFlow._id).toBeDefined();
230
- expect(createdFlow.name).toEqual('New Flow');
231
- expect(createdFlow.post).toEqual([]);
232
- expect(createdFlow.pre).toEqual([]);
233
- expect(createdFlow.type).toEqual('ROOT');
234
- expect(createdFlow['path-operator']).not.toBeDefined();
235
- }));
236
- test('should duplicate flow', () => __awaiter(void 0, void 0, void 0, function* () {
237
- const flow = { _id: 'f-1', name: 'ALL', post: [{ policy: 'rate-limit', name: 'Rate limit' }], pre: [] };
238
- component.definition = { flows: [flow] };
239
- yield component.updateComplete;
240
- yield component._onDuplicateFlow({ detail: { content: Object.assign({}, flow) } });
241
- const expected = Object.assign(Object.assign({}, flow), { _dirty: true, _id: expect.any(String), id: null, post: [{ _id: expect.any(String), policy: 'rate-limit', name: 'Rate limit' }] });
242
- expect(component.definition.flows.length).toEqual(2);
243
- expect(component.definition.flows[1]).toEqual(expected);
244
- }));
245
- test('should delete flow', () => {
246
- const flow = { _id: 'foobar', name: 'ALL', post: [{ policy: 'rate-limit', name: 'Rate limit' }], pre: [] };
247
- component.definition = { flows: [flow] };
248
- component._onDeleteFlow({ detail: { content: Object.assign({}, flow) } });
249
- expect(component.definition.flows.length).toEqual(0);
250
- });
251
- test('should update definition when submit schema form with updated flow', () => __awaiter(void 0, void 0, void 0, function* () {
252
- const _id = 'foobar';
253
- const flow = { _id, name: 'New flow', condition: '#method == "POST"' };
254
- component.definition = { flows: [flow] };
255
- yield component._onSelectFlows({ detail: { flows: [flow._id] } });
256
- const updatedFlow = {
257
- name: 'Updated flow',
258
- description: 'more....',
259
- methods: ['GET', 'POST'],
260
- 'path-operator': { path: '/', operator: 'STARTS_WITH' },
261
- };
262
- component._onSubmitFlow({ detail: { values: updatedFlow } });
263
- expect(component.definition.flows.length).toEqual(1);
264
- expect(component.definition.flows[0]._dirty).toEqual(true);
265
- expect(component.definition.flows[0]._id).toEqual(_id);
266
- expect(component.definition.flows[0].name).toEqual(updatedFlow.name);
267
- expect(component.definition.flows[0]['path-operator']).toEqual({ path: '/', operator: 'STARTS_WITH' });
268
- expect(component.definition.flows[0].methods).toEqual(['GET', 'POST']);
269
- }));
270
- test('should update definition when submit flow schema', () => __awaiter(void 0, void 0, void 0, function* () {
271
- const _id = 'foobar';
272
- const _stepId = 'f_0_pre_0';
273
- const step = { _id: _stepId, name: 'step', description: 'step description', configuration: {}, policy: 'api-key' };
274
- const flow = {
275
- _id,
276
- name: 'New flow',
277
- description: 'test',
278
- condition: '#method == "POST"',
279
- pre: [step],
280
- post: [],
281
- };
282
- component.definition = { flows: [flow] };
283
- yield component._onSelectFlows({ detail: { flows: [flow._id] } });
284
- const policy = policies.data.find((p) => p.id === 'policy-http-callout');
285
- const flowStepSchema = component.buildSchema(policy);
286
- const currentFlowStep = { flow, step, policy, group: 'pre', position: 0 };
287
- yield component._setCurrentFlowStep(currentFlowStep, flowStepSchema);
288
- const cases = [
289
- ['updated description', 'http://localhost', 'GET'],
290
- ['', 'http://localhost/api', 'POST'],
291
- ['simple description', 'http://localhost:8080', 'PUT'],
292
- ];
293
- for (const [commonDescription, url, method] of cases) {
294
- const values = { commonDescription, method, url };
295
- yield component._onSubmitFlowStep({ detail: { values } });
296
- expect(component.definition.flows.length).toEqual(1);
297
- expect(component.definition.flows[0]._id).toEqual(_id);
298
- expect([...component.definition.flows[0].pre]).toMatchObject([
299
- Object.assign(Object.assign({}, step), { description: commonDescription, configuration: { method, url } }),
300
- ]);
301
- }
302
- }));
303
- test('should reset field', () => __awaiter(void 0, void 0, void 0, function* () {
304
- component.flowSchema = apimFlowSchema;
305
- const _id = 'foobar';
306
- const _stepId = 'foobar-step';
307
- const step = { _id: _stepId, name: 'step', description: 'step description', configuration: {}, policy: 'api-key' };
308
- const flow = {
309
- _id,
310
- name: 'New flow',
311
- description: 'test',
312
- condition: '#method == "POST"',
313
- pre: [step],
314
- post: [],
315
- };
316
- const values = {
317
- _id,
318
- description: 'test',
319
- pre: [step],
320
- post: [],
321
- };
322
- component.definition = { flows: [flow] };
323
- yield component._onSelectFlows({ detail: { flows: [flow._id] } });
324
- // execute update
325
- yield component._onSubmitFlow({ detail: { values } });
326
- expect(component.definition.flows.length).toEqual(1);
327
- expect(component.definition.flows[0]._id).toEqual(_id);
328
- expect(component.definition.flows[0].name).toEqual('');
329
- expect(component.definition.flows[0].condition).toEqual('');
330
- }));
331
- });
332
- });
333
- //# sourceMappingURL=gv-design.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gv-design.test.js","sourceRoot":"","sources":["../../../../src/policy-studio/gv-design/gv-design.test.js"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- export * from './gv-design';
@@ -1,17 +0,0 @@
1
- /*
2
- * Copyright (C) 2021 The Gravitee team (http://gravitee.io)
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export * from './gv-design';
17
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/policy-studio/gv-design/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AACH,cAAc,aAAa,CAAC"}
package/wc/gv-design.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from "../src/policy-studio/gv-design";
package/wc/gv-design.js DELETED
@@ -1,2 +0,0 @@
1
- export * from '../src/policy-studio/gv-design';
2
- //# sourceMappingURL=gv-design.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gv-design.js","sourceRoot":"","sources":["../../wc/gv-design.js"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC"}