@gravitee/ui-components 3.37.1 → 3.38.0

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.
@@ -0,0 +1,124 @@
1
+ declare namespace _default {
2
+ const title: string;
3
+ const component: string;
4
+ namespace parameters {
5
+ namespace a11y {
6
+ const disable: boolean;
7
+ }
8
+ }
9
+ }
10
+ export default _default;
11
+ export const MixedEmpty: {
12
+ docs: any;
13
+ css: any;
14
+ component: any;
15
+ items: any;
16
+ parameters: {
17
+ actions: {
18
+ handles: any[];
19
+ };
20
+ docsOnly: any;
21
+ docs: {
22
+ storyDescription: any;
23
+ };
24
+ storySource: {
25
+ source: any;
26
+ };
27
+ };
28
+ render: (args: any) => HTMLDivElement;
29
+ };
30
+ export const Skeleton: {
31
+ docs: any;
32
+ css: any;
33
+ component: any;
34
+ items: any;
35
+ parameters: {
36
+ actions: {
37
+ handles: any[];
38
+ };
39
+ docsOnly: any;
40
+ docs: {
41
+ storyDescription: any;
42
+ };
43
+ storySource: {
44
+ source: any;
45
+ };
46
+ };
47
+ render: (args: any) => HTMLDivElement;
48
+ };
49
+ export const Mixed: {
50
+ docs: any;
51
+ css: any;
52
+ component: any;
53
+ items: any;
54
+ parameters: {
55
+ actions: {
56
+ handles: any[];
57
+ };
58
+ docsOnly: any;
59
+ docs: {
60
+ storyDescription: any;
61
+ };
62
+ storySource: {
63
+ source: any;
64
+ };
65
+ };
66
+ render: (args: any) => HTMLDivElement;
67
+ };
68
+ export const HTMLToJson: {
69
+ docs: any;
70
+ css: any;
71
+ component: any;
72
+ items: any;
73
+ parameters: {
74
+ actions: {
75
+ handles: any[];
76
+ };
77
+ docsOnly: any;
78
+ docs: {
79
+ storyDescription: any;
80
+ };
81
+ storySource: {
82
+ source: any;
83
+ };
84
+ };
85
+ render: (args: any) => HTMLDivElement;
86
+ };
87
+ export const HttpConnector: {
88
+ docs: any;
89
+ css: any;
90
+ component: any;
91
+ items: any;
92
+ parameters: {
93
+ actions: {
94
+ handles: any[];
95
+ };
96
+ docsOnly: any;
97
+ docs: {
98
+ storyDescription: any;
99
+ };
100
+ storySource: {
101
+ source: any;
102
+ };
103
+ };
104
+ render: (args: any) => HTMLDivElement;
105
+ };
106
+ export const ResourceCacheRedis: {
107
+ docs: any;
108
+ css: any;
109
+ component: any;
110
+ items: any;
111
+ parameters: {
112
+ actions: {
113
+ handles: any[];
114
+ };
115
+ docsOnly: any;
116
+ docs: {
117
+ storyDescription: any;
118
+ };
119
+ storySource: {
120
+ source: any;
121
+ };
122
+ };
123
+ render: (args: any) => HTMLDivElement;
124
+ };
@@ -0,0 +1,220 @@
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 './gv-schema-form-group';
26
+ import { makeStory } from '../../../testing/lib/make-story';
27
+ import mixed from '../../../testing/resources/schemas/mixed.json';
28
+ import htmlToJson from '../../../testing/resources/schemas/html-to-json.json';
29
+ import httpConnector from '../../../testing/resources/schemas/http-connector.json';
30
+ import { fetch } from 'whatwg-fetch';
31
+ import grammar from '../../../testing/resources/el-grammar.json';
32
+ import resourceCacheRedis from '../../../testing/resources/schemas/resource-cache-redis.json';
33
+ export default {
34
+ title: 'Organisms/gv-schema-form-group',
35
+ component: 'gv-schema-form-group',
36
+ parameters: {
37
+ // DO NOT REACTIVATE a11y on these stories for now as the a11y checks are taking forever to run
38
+ a11y: { disable: true },
39
+ },
40
+ };
41
+ const conf = {
42
+ component: 'gv-schema-form-group',
43
+ // language=CSS
44
+ css: `
45
+ :host {
46
+ display: block;
47
+ min-height: 700px;
48
+ }
49
+
50
+ gv-schema-form-group {
51
+ display: block;
52
+ position: relative;
53
+ min-height: 700px;
54
+ }
55
+ `,
56
+ };
57
+ export const MixedEmpty = makeStory(conf, {
58
+ items: [
59
+ {
60
+ title: 'Mixed Empty',
61
+ schema: mixed,
62
+ '@gv-schema-form-group:fetch-data': (event) => {
63
+ const options = 'abcdefghijklmnopqrstuvwxyz0123456789'.split('').map((key, index) => ({ value: `This is generated with ${key}` }));
64
+ event.detail.currentTarget.options = options;
65
+ },
66
+ 'has-footer': true,
67
+ scrollable: true,
68
+ '@gv-expression-language:ready': ({ detail }) => {
69
+ detail.currentTarget.grammar = grammar;
70
+ },
71
+ 'validate-on-render': true,
72
+ },
73
+ ],
74
+ });
75
+ const mixedValues = {
76
+ body: '<xml></xml>',
77
+ 'path-operator': {
78
+ path: '/public',
79
+ operator: 'EQUALS',
80
+ },
81
+ resources: 'My resource',
82
+ attributes: [
83
+ { name: 'John', value: 'Doe' },
84
+ { name: 'Foo', value: 'Bar' },
85
+ ],
86
+ useResponseCacheHeaders: true,
87
+ timeToLiveSeconds: 50,
88
+ select: 'b',
89
+ multiselect: ['a', 'b', 'c'],
90
+ };
91
+ export const Skeleton = makeStory(conf, {
92
+ items: [
93
+ {
94
+ title: 'mixed',
95
+ skeleton: true,
96
+ icon: 'design:edit',
97
+ value: mixedValues,
98
+ schema: mixed,
99
+ '@gv-schema-form-group:fetch-data': (event) => {
100
+ const options = 'abcdefghijklmnopqrstuvwxyz0123456789'.split('').map((key, index) => ({ value: `This is generated with ${key}` }));
101
+ event.detail.currentTarget.options = options;
102
+ },
103
+ '@gv-expression-language:ready': ({ detail }) => {
104
+ detail.currentTarget.grammar = grammar;
105
+ },
106
+ },
107
+ ],
108
+ });
109
+ export const Mixed = makeStory(conf, {
110
+ items: [
111
+ {
112
+ title: 'mixed',
113
+ icon: 'design:edit',
114
+ value: mixedValues,
115
+ schema: mixed,
116
+ '@gv-schema-form-group:fetch-data': (event) => {
117
+ const options = 'abcdefghijklmnopqrstuvwxyz0123456789'.split('').map((key, index) => ({ value: `This is generated with ${key}` }));
118
+ event.detail.currentTarget.options = options;
119
+ },
120
+ '@gv-expression-language:ready': ({ detail }) => {
121
+ detail.currentTarget.grammar = grammar;
122
+ },
123
+ '@gv-schema-form-group:change': ({ detail }) => {
124
+ detail.target.values = detail.values;
125
+ },
126
+ 'validate-on-render': true,
127
+ },
128
+ ],
129
+ });
130
+ export const HTMLToJson = makeStory(conf, {
131
+ items: [{ schema: htmlToJson, 'has-footer': true }],
132
+ });
133
+ export const HttpConnector = makeStory(conf, {
134
+ items: [{ schema: httpConnector }],
135
+ });
136
+ export const ResourceCacheRedis = makeStory(conf, {
137
+ items: [{ schema: resourceCacheRedis, 'has-footer': true }],
138
+ });
139
+ let policies = [
140
+ 'gravitee-policy-ratelimit/gravitee-policy-quota',
141
+ 'gravitee-policy-ratelimit/gravitee-policy-ratelimit',
142
+ 'gravitee-policy-ratelimit/gravitee-policy-spikearrest',
143
+ 'gravitee-policy-apikey',
144
+ 'gravitee-policy-request-content-limit',
145
+ 'gravitee-policy-oauth2',
146
+ 'gravitee-policy-transformheaders',
147
+ 'gravitee-policy-rest-to-soap',
148
+ 'gravitee-policy-transformqueryparams',
149
+ 'gravitee-policy-ipfiltering',
150
+ 'gravitee-policy-mock',
151
+ 'gravitee-policy-cache',
152
+ 'gravitee-policy-xslt',
153
+ 'gravitee-policy-xml-json',
154
+ 'gravitee-policy-groovy',
155
+ 'gravitee-policy-dynamic-routing',
156
+ 'gravitee-policy-jwt',
157
+ 'gravitee-policy-resource-filtering',
158
+ 'gravitee-policy-json-to-json',
159
+ 'gravitee-policy-blank',
160
+ 'gravitee-policy-latency',
161
+ 'gravitee-policy-basic-authentication',
162
+ 'gravitee-policy-override-http-method',
163
+ 'gravitee-policy-request-validation',
164
+ 'gravitee-policy-openid-connect-userinfo',
165
+ 'gravitee-policy-assign-content',
166
+ 'gravitee-policy-jws',
167
+ 'gravitee-policy-json-validation',
168
+ 'gravitee-policy-url-rewriting',
169
+ 'gravitee-policy-xml-validation',
170
+ 'gravitee-policy-callout-http',
171
+ 'gravitee-policy-assign-attributes',
172
+ 'gravitee-policy-generate-jwt',
173
+ 'gravitee-policy-role-based-access-control',
174
+ 'gravitee-policy-ssl-enforcement',
175
+ 'gravitee-policy-geoip-filtering',
176
+ 'gravitee-policy-circuit-breaker',
177
+ 'gravitee-policy-regex-threat-protection',
178
+ 'gravitee-policy-xml-threat-protection',
179
+ 'gravitee-policy-json-threat-protection',
180
+ 'gravitee-policy-wssecurity-authentication',
181
+ 'gravitee-policy-aws-lambda',
182
+ 'gravitee-policy-retry',
183
+ ].map((value) => ({ value, view: 0, error: 0 }));
184
+ // Github rate limit: 60 request per hour
185
+ // Useful to generate the table of policies
186
+ // eslint-disable-next-line no-unused-vars
187
+ function fetchAllPolicies() {
188
+ return __awaiter(this, void 0, void 0, function* () {
189
+ const fakeOrEmptyPolicies = [
190
+ // Technical repo
191
+ 'gravitee-policy-maven-archetype',
192
+ 'gravitee-policy-authentication',
193
+ 'gravitee-policy-api',
194
+ // Multi policies repo
195
+ 'gravitee-policy-ratelimit',
196
+ // Generate policies repo
197
+ 'gravitee-policy-html-json',
198
+ 'gravitee-policy-keyless',
199
+ ];
200
+ const githubUrl = 'https://api.github.com/orgs/gravitee-io/repos?per_page=100&page=';
201
+ return Promise.all([fetch(`${githubUrl}1`), fetch(`${githubUrl}2`)])
202
+ .then(([a, b]) => {
203
+ return Promise.all([a.json(), b.json()]);
204
+ })
205
+ .then(([firstPage, secondPage]) => {
206
+ const repositories = [...firstPage, ...secondPage];
207
+ policies = [
208
+ 'gravitee-policy-ratelimit/gravitee-policy-quota',
209
+ 'gravitee-policy-ratelimit/gravitee-policy-ratelimit',
210
+ 'gravitee-policy-ratelimit/gravitee-policy-spikearrest',
211
+ ...repositories
212
+ .filter((repo) => repo.archived === false && repo.name.startsWith('gravitee-policy-') && !fakeOrEmptyPolicies.includes(repo.name))
213
+ .map(({ name }) => name),
214
+ ];
215
+ // eslint-disable-next-line no-console
216
+ console.log(policies);
217
+ });
218
+ });
219
+ }
220
+ //# sourceMappingURL=gv-schema-form-group.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gv-schema-form-group.stories.js","sourceRoot":"","sources":["../../../../src/organisms/gv-schema-form-group/gv-schema-form-group.stories.js"],"names":[],"mappings":"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"}