@operato/app 1.0.0-alpha.2 → 1.0.0-alpha.20

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 (51) hide show
  1. package/@types/global/index.d.ts +2 -0
  2. package/CHANGELOG.md +159 -0
  3. package/demo/data-grist-test.html +456 -0
  4. package/dist/src/grist/code-editor.js +8 -3
  5. package/dist/src/grist/code-editor.js.map +1 -1
  6. package/dist/src/grist/index.js +2 -0
  7. package/dist/src/grist/index.js.map +1 -1
  8. package/dist/src/grist/object-editor.d.ts +1 -1
  9. package/dist/src/grist/object-editor.js +1 -1
  10. package/dist/src/grist/object-editor.js.map +1 -1
  11. package/dist/src/grist/parameters-editor-builder.d.ts +4 -0
  12. package/dist/src/grist/parameters-editor-builder.js +118 -0
  13. package/dist/src/grist/parameters-editor-builder.js.map +1 -0
  14. package/dist/src/grist/parameters-editor-popup.d.ts +13 -0
  15. package/dist/src/grist/parameters-editor-popup.js +111 -0
  16. package/dist/src/grist/parameters-editor-popup.js.map +1 -0
  17. package/dist/src/grist/parameters-editor.d.ts +19 -0
  18. package/dist/src/grist/parameters-editor.js +105 -0
  19. package/dist/src/grist/parameters-editor.js.map +1 -0
  20. package/dist/src/input/ox-input-background-pattern.d.ts +31 -0
  21. package/dist/src/input/ox-input-background-pattern.js +150 -0
  22. package/dist/src/input/ox-input-background-pattern.js.map +1 -0
  23. package/dist/src/input/ox-input-color-gradient.d.ts +25 -0
  24. package/dist/src/input/ox-input-color-gradient.js +318 -0
  25. package/dist/src/input/ox-input-color-gradient.js.map +1 -0
  26. package/dist/src/input/ox-input-fill-style.d.ts +42 -0
  27. package/dist/src/input/ox-input-fill-style.js +325 -0
  28. package/dist/src/input/ox-input-fill-style.js.map +1 -0
  29. package/dist/src/input/ox-input-graphql.d.ts +36 -0
  30. package/dist/src/input/ox-input-graphql.js +161 -0
  31. package/dist/src/input/ox-input-graphql.js.map +1 -0
  32. package/dist/src/property-editor/index.d.ts +24 -0
  33. package/dist/src/property-editor/index.js +58 -0
  34. package/dist/src/property-editor/index.js.map +1 -0
  35. package/dist/src/property-editor/ox-property-editor-graphql.d.ts +5 -0
  36. package/dist/src/property-editor/ox-property-editor-graphql.js +15 -0
  37. package/dist/src/property-editor/ox-property-editor-graphql.js.map +1 -0
  38. package/dist/tsconfig.tsbuildinfo +1 -1
  39. package/package.json +31 -12
  40. package/src/grist/code-editor.ts +2 -3
  41. package/src/grist/index.ts +2 -0
  42. package/src/grist/object-editor.ts +1 -1
  43. package/src/grist/parameters-editor-builder.ts +128 -0
  44. package/src/grist/parameters-editor-popup.ts +106 -0
  45. package/src/grist/parameters-editor.ts +112 -0
  46. package/src/input/ox-input-background-pattern.ts +166 -0
  47. package/src/input/ox-input-color-gradient.ts +341 -0
  48. package/src/input/ox-input-fill-style.ts +360 -0
  49. package/src/input/ox-input-graphql.ts +169 -0
  50. package/src/property-editor/index.ts +59 -0
  51. package/src/property-editor/ox-property-editor-graphql.ts +12 -0
@@ -0,0 +1,325 @@
1
+ /**
2
+ * @license Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ import { __decorate } from "tslib";
5
+ import '@operato/i18n/ox-i18n.js';
6
+ import '@operato/input/ox-input-color.js';
7
+ import '@operato/input/ox-input-color-stops.js';
8
+ import './ox-input-color-gradient.js';
9
+ import './ox-input-background-pattern.js';
10
+ import { OxFormField } from '@operato/input';
11
+ import { css, html } from 'lit';
12
+ import { customElement, property } from 'lit/decorators.js';
13
+ let OxInputColorStyle = class OxInputColorStyle extends OxFormField {
14
+ constructor() {
15
+ super(...arguments);
16
+ this._block_reset = false;
17
+ }
18
+ updated(changes) {
19
+ changes.has('value') && this._onChangedValue(this.value || {});
20
+ }
21
+ render() {
22
+ return html `
23
+ <div @change=${(e) => this._onChangedFillType(e)} fill-type>
24
+ <input
25
+ type="radio"
26
+ id="fill-type-no"
27
+ name="fill-type"
28
+ value="no"
29
+ .checked=${!this.fillType || this.fillType == 'no'}
30
+ />
31
+ <label for="fill-type-no"><ox-i18n msgid="label.no-fill">no fill</ox-i18n></label>
32
+ <input type="radio" id="fill-type-solid" name="fill-type" value="solid" .checked=${this.fillType == 'solid'} />
33
+ <label for="fill-type-solid"><ox-i18n msgid="label.solid">solid</ox-i18n></label>
34
+ <input
35
+ type="radio"
36
+ id="fill-type-gradient"
37
+ name="fill-type"
38
+ value="gradient"
39
+ .checked=${this.fillType == 'gradient'}
40
+ />
41
+ <label for="fill-type-gradient"><ox-i18n msgid="label.gradient">gradient</ox-i18n></label>
42
+ <input
43
+ type="radio"
44
+ id="fill-type-pattern"
45
+ name="fill-type"
46
+ value="pattern"
47
+ .checked=${this.fillType == 'pattern'}
48
+ />
49
+ <label for="fill-type-pattern"><ox-i18n msgid="label.pattern">pattern</ox-i18n></label>
50
+ </div>
51
+
52
+ <div editors>
53
+ <div ?active=${this.fillType == 'no'}></div>
54
+
55
+ <div class="grid-10" ?active=${this.fillType == 'solid'}>
56
+ <label class="icon-only-label color"></label>
57
+ <ox-input-color @change=${(e) => this._onChangedSolid(e)} .value=${this.solid}> </ox-input-color>
58
+ </div>
59
+
60
+ <div ?active=${this.fillType == 'gradient'}>
61
+ <ox-input-color-gradient @change=${(e) => this._onChandedGradient(e)} .value=${this.gradient}>
62
+ </ox-input-color-gradient>
63
+ </div>
64
+
65
+ <div ?active=${this.fillType == 'pattern'}>
66
+ <ox-input-background-pattern @change=${(e) => this._onChangedPattern(e)} .value=${this.pattern}>
67
+ </ox-input-background-pattern>
68
+ </div>
69
+ </div>
70
+ `;
71
+ }
72
+ async _onChangedValue(value) {
73
+ /*
74
+ * this._block_reset의 역할은 내부 사용자 인터렉션에 의한 value의 변경시에는 각 type별 이전값을 유지하기 위함이다.
75
+ */
76
+ await this.requestUpdate();
77
+ /* 설정 값에 따라서, 멤버 속성을 설정한다. */
78
+ if (!value) {
79
+ this.fillType = 'no';
80
+ if (!this._block_reset) {
81
+ this.solid = undefined;
82
+ this.gradient = undefined;
83
+ this.pattern = undefined;
84
+ }
85
+ this._block_reset = false;
86
+ return;
87
+ }
88
+ switch (typeof value) {
89
+ case 'string':
90
+ this.fillType = 'solid';
91
+ this.solid = value;
92
+ if (!this._block_reset) {
93
+ this.gradient = undefined;
94
+ this.pattern = undefined;
95
+ }
96
+ break;
97
+ case 'object':
98
+ this.fillType = value.type;
99
+ if (value.type === 'gradient') {
100
+ this.gradient = {
101
+ type: value.gradientType || 'linear',
102
+ colorStops: value.colorStops || [
103
+ {
104
+ position: 0,
105
+ color: this.solid || '#000000'
106
+ },
107
+ {
108
+ position: 1,
109
+ color: this.solid || '#FFFFFF'
110
+ }
111
+ ],
112
+ rotation: Number(value.rotation) || 0,
113
+ center: value.center
114
+ };
115
+ if (!this._block_reset) {
116
+ this.pattern = undefined;
117
+ this.solid = undefined;
118
+ }
119
+ }
120
+ else if (value.type === 'pattern') {
121
+ this.pattern = {
122
+ image: value.image,
123
+ offsetX: Number(value.offsetX) || 0,
124
+ offsetY: Number(value.offsetY) || 0,
125
+ width: Number(value.width),
126
+ height: Number(value.height),
127
+ align: value.align,
128
+ fitPattern: value.fitPattern
129
+ };
130
+ if (!this._block_reset) {
131
+ this.gradient = undefined;
132
+ this.solid = undefined;
133
+ }
134
+ }
135
+ break;
136
+ default:
137
+ }
138
+ this._block_reset = false;
139
+ }
140
+ _onChangedFillType(e) {
141
+ const element = e.target;
142
+ this.fillType = element.value;
143
+ switch (this.fillType) {
144
+ case 'gradient':
145
+ if (!this.gradient) {
146
+ this.gradient = {
147
+ type: 'linear',
148
+ colorStops: [
149
+ {
150
+ position: 0,
151
+ color: this.solid || '#000000'
152
+ },
153
+ {
154
+ position: 1,
155
+ color: this.solid || '#FFFFFF'
156
+ }
157
+ ],
158
+ rotation: 0,
159
+ center: 'center'
160
+ };
161
+ }
162
+ this.value = {
163
+ type: 'gradient',
164
+ gradientType: this.gradient.type || 'linear',
165
+ colorStops: this.gradient.colorStops || [
166
+ {
167
+ position: 0,
168
+ color: this.solid || '#000000'
169
+ },
170
+ {
171
+ position: 1,
172
+ color: this.solid || '#FFFFFF'
173
+ }
174
+ ],
175
+ rotation: Number(this.gradient.rotation) || 0,
176
+ center: this.gradient.center
177
+ };
178
+ break;
179
+ case 'pattern':
180
+ if (!this.pattern)
181
+ this.pattern = {};
182
+ this.value = {
183
+ type: 'pattern',
184
+ image: this.pattern.image,
185
+ offsetX: Number(this.pattern.offsetX) || 0,
186
+ offsetY: Number(this.pattern.offsetY) || 0,
187
+ width: Number(this.pattern.width),
188
+ height: Number(this.pattern.height),
189
+ align: this.pattern.align,
190
+ fitPattern: this.pattern.fitPattern
191
+ };
192
+ break;
193
+ case 'solid':
194
+ if (!this.solid)
195
+ this.solid = '#fff';
196
+ this.value = this.solid;
197
+ break;
198
+ case 'no':
199
+ this.value = '';
200
+ break;
201
+ }
202
+ this._block_reset = true;
203
+ this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
204
+ }
205
+ _onChangedSolid(e) {
206
+ if (this.fillType !== 'solid')
207
+ return;
208
+ this.solid = e.target.value;
209
+ this.value = this.solid;
210
+ this._block_reset = true;
211
+ this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
212
+ }
213
+ _onChandedGradient(e) {
214
+ /*
215
+ * TODO Gradient의 rotation은 symmetry 기능 등으로 외부에서 변경될 수도 있다.
216
+ * 이 점을 감안해서, 외부 변경에 대한 대응을 해야 한다.
217
+ */
218
+ if (this.fillType !== 'gradient') {
219
+ return;
220
+ }
221
+ this.gradient = e.target.value;
222
+ this.value = {
223
+ type: 'gradient',
224
+ gradientType: this.gradient.type || 'linear',
225
+ colorStops: this.gradient.colorStops || [
226
+ {
227
+ position: 0,
228
+ color: this.solid || '#000000'
229
+ },
230
+ {
231
+ position: 1,
232
+ color: this.solid || '#FFFFFF'
233
+ }
234
+ ],
235
+ rotation: Number(this.gradient.rotation) || 0,
236
+ center: this.gradient.center
237
+ };
238
+ this._block_reset = true;
239
+ this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
240
+ }
241
+ _onChangedPattern(e) {
242
+ var _a, _b, _c, _d, _e, _f, _g;
243
+ if (this.fillType !== 'pattern')
244
+ return;
245
+ this.pattern = e.target.value;
246
+ this.value = {
247
+ type: 'pattern',
248
+ image: (_a = this.pattern) === null || _a === void 0 ? void 0 : _a.image,
249
+ offsetX: Number((_b = this.pattern) === null || _b === void 0 ? void 0 : _b.offsetX) || 0,
250
+ offsetY: Number((_c = this.pattern) === null || _c === void 0 ? void 0 : _c.offsetY) || 0,
251
+ width: Number((_d = this.pattern) === null || _d === void 0 ? void 0 : _d.width),
252
+ height: Number((_e = this.pattern) === null || _e === void 0 ? void 0 : _e.height),
253
+ align: (_f = this.pattern) === null || _f === void 0 ? void 0 : _f.align,
254
+ fitPattern: (_g = this.pattern) === null || _g === void 0 ? void 0 : _g.fitPattern
255
+ };
256
+ this._block_reset = true;
257
+ this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
258
+ }
259
+ };
260
+ OxInputColorStyle.styles = css `
261
+ :host {
262
+ display: flex;
263
+ flex-direction: column;
264
+ }
265
+
266
+ [fill-type] {
267
+ display: flex;
268
+ margin: 0 0 14px 0;
269
+ }
270
+
271
+ [fill-type] * {
272
+ flex: auto;
273
+ margin: 0;
274
+ text-align: left;
275
+ align-self: center;
276
+ }
277
+
278
+ .grid-10 {
279
+ display: grid;
280
+
281
+ grid-template-columns: repeat(10, 1fr);
282
+ grid-gap: 5px;
283
+ grid-auto-rows: minmax(24px, auto);
284
+ }
285
+
286
+ .grid-10 > ox-input-color {
287
+ grid-column: span 4;
288
+ }
289
+
290
+ .grid-10 > .icon-only-label {
291
+ grid-column: span 1;
292
+
293
+ background: url(/assets/images/icon-properties-label.png) no-repeat;
294
+ float: left;
295
+ margin: 0;
296
+ }
297
+
298
+ .icon-only-label.color {
299
+ background-position: 70% -498px;
300
+ }
301
+
302
+ [editors] > :not([active]) {
303
+ display: none;
304
+ }
305
+ `;
306
+ __decorate([
307
+ property({ type: Object })
308
+ ], OxInputColorStyle.prototype, "value", void 0);
309
+ __decorate([
310
+ property({ type: String })
311
+ ], OxInputColorStyle.prototype, "fillType", void 0);
312
+ __decorate([
313
+ property({ type: String })
314
+ ], OxInputColorStyle.prototype, "solid", void 0);
315
+ __decorate([
316
+ property({ type: Object })
317
+ ], OxInputColorStyle.prototype, "gradient", void 0);
318
+ __decorate([
319
+ property({ type: Object })
320
+ ], OxInputColorStyle.prototype, "pattern", void 0);
321
+ OxInputColorStyle = __decorate([
322
+ customElement('ox-input-fill-style')
323
+ ], OxInputColorStyle);
324
+ export { OxInputColorStyle };
325
+ //# sourceMappingURL=ox-input-fill-style.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ox-input-fill-style.js","sourceRoot":"","sources":["../../../src/input/ox-input-fill-style.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport '@operato/i18n/ox-i18n.js'\nimport '@operato/input/ox-input-color.js'\nimport '@operato/input/ox-input-color-stops.js'\nimport './ox-input-color-gradient.js'\nimport './ox-input-background-pattern.js'\n\nimport { BackgroundPatternOption, OxInputBackgroundPattern } from './ox-input-background-pattern.js'\nimport { ColorStop, OxFormField } from '@operato/input'\nimport { GradientOption, OxInputColorGradient } from './ox-input-color-gradient.js'\nimport { PropertyValues, css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\n\nexport type FillStyle =\n | {\n type?: 'no' | 'solid' | 'gradient' | 'pattern'\n gradientType?: 'linear' | 'radial'\n colorStops?: ColorStop[]\n rotation?: number\n center?: 'center' | 'left-top' | 'right-top' | 'right-bottom' | 'left-bottom'\n image?: HTMLImageElement | string\n offsetX?: number\n offsetY?: number\n width?: number\n height?: number\n align?: 'left-top' | 'top' | 'right-top' | 'left' | 'center' | 'right' | 'left-bottom' | 'bottom' | 'right-bottom'\n fitPattern?: boolean\n }\n | 'no'\n | string\n\n@customElement('ox-input-fill-style')\nexport class OxInputColorStyle extends OxFormField {\n static styles = css`\n :host {\n display: flex;\n flex-direction: column;\n }\n\n [fill-type] {\n display: flex;\n margin: 0 0 14px 0;\n }\n\n [fill-type] * {\n flex: auto;\n margin: 0;\n text-align: left;\n align-self: center;\n }\n\n .grid-10 {\n display: grid;\n\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n }\n\n .grid-10 > ox-input-color {\n grid-column: span 4;\n }\n\n .grid-10 > .icon-only-label {\n grid-column: span 1;\n\n background: url(/assets/images/icon-properties-label.png) no-repeat;\n float: left;\n margin: 0;\n }\n\n .icon-only-label.color {\n background-position: 70% -498px;\n }\n\n [editors] > :not([active]) {\n display: none;\n }\n `\n\n @property({ type: Object }) value?: FillStyle\n @property({ type: String }) fillType?: string\n @property({ type: String }) solid?: string\n @property({ type: Object }) gradient?: GradientOption\n @property({ type: Object }) pattern?: BackgroundPatternOption\n\n private _block_reset: boolean = false\n\n updated(changes: PropertyValues<this>) {\n changes.has('value') && this._onChangedValue(this.value || {})\n }\n\n render() {\n return html`\n <div @change=${(e: Event) => this._onChangedFillType(e)} fill-type>\n <input\n type=\"radio\"\n id=\"fill-type-no\"\n name=\"fill-type\"\n value=\"no\"\n .checked=${!this.fillType || this.fillType == 'no'}\n />\n <label for=\"fill-type-no\"><ox-i18n msgid=\"label.no-fill\">no fill</ox-i18n></label>\n <input type=\"radio\" id=\"fill-type-solid\" name=\"fill-type\" value=\"solid\" .checked=${this.fillType == 'solid'} />\n <label for=\"fill-type-solid\"><ox-i18n msgid=\"label.solid\">solid</ox-i18n></label>\n <input\n type=\"radio\"\n id=\"fill-type-gradient\"\n name=\"fill-type\"\n value=\"gradient\"\n .checked=${this.fillType == 'gradient'}\n />\n <label for=\"fill-type-gradient\"><ox-i18n msgid=\"label.gradient\">gradient</ox-i18n></label>\n <input\n type=\"radio\"\n id=\"fill-type-pattern\"\n name=\"fill-type\"\n value=\"pattern\"\n .checked=${this.fillType == 'pattern'}\n />\n <label for=\"fill-type-pattern\"><ox-i18n msgid=\"label.pattern\">pattern</ox-i18n></label>\n </div>\n\n <div editors>\n <div ?active=${this.fillType == 'no'}></div>\n\n <div class=\"grid-10\" ?active=${this.fillType == 'solid'}>\n <label class=\"icon-only-label color\"></label>\n <ox-input-color @change=${(e: Event) => this._onChangedSolid(e)} .value=${this.solid}> </ox-input-color>\n </div>\n\n <div ?active=${this.fillType == 'gradient'}>\n <ox-input-color-gradient @change=${(e: Event) => this._onChandedGradient(e)} .value=${this.gradient}>\n </ox-input-color-gradient>\n </div>\n\n <div ?active=${this.fillType == 'pattern'}>\n <ox-input-background-pattern @change=${(e: Event) => this._onChangedPattern(e)} .value=${this.pattern}>\n </ox-input-background-pattern>\n </div>\n </div>\n `\n }\n\n async _onChangedValue(value: FillStyle) {\n /*\n * this._block_reset의 역할은 내부 사용자 인터렉션에 의한 value의 변경시에는 각 type별 이전값을 유지하기 위함이다.\n */\n await this.requestUpdate()\n\n /* 설정 값에 따라서, 멤버 속성을 설정한다. */\n if (!value) {\n this.fillType = 'no'\n\n if (!this._block_reset) {\n this.solid = undefined\n this.gradient = undefined\n this.pattern = undefined\n }\n\n this._block_reset = false\n return\n }\n\n switch (typeof value) {\n case 'string':\n this.fillType = 'solid'\n this.solid = value\n\n if (!this._block_reset) {\n this.gradient = undefined\n this.pattern = undefined\n }\n break\n case 'object':\n this.fillType = value.type\n\n if (value.type === 'gradient') {\n this.gradient = {\n type: value.gradientType || 'linear',\n colorStops: value.colorStops || [\n {\n position: 0,\n color: this.solid || '#000000'\n },\n {\n position: 1,\n color: this.solid || '#FFFFFF'\n }\n ],\n rotation: Number(value.rotation) || 0,\n center: value.center\n }\n\n if (!this._block_reset) {\n this.pattern = undefined\n this.solid = undefined\n }\n } else if (value.type === 'pattern') {\n this.pattern = {\n image: value.image,\n offsetX: Number(value.offsetX) || 0,\n offsetY: Number(value.offsetY) || 0,\n width: Number(value.width),\n height: Number(value.height),\n align: value.align,\n fitPattern: value.fitPattern\n }\n\n if (!this._block_reset) {\n this.gradient = undefined\n this.solid = undefined\n }\n }\n\n break\n default:\n }\n\n this._block_reset = false\n }\n\n _onChangedFillType(e: Event) {\n const element = e.target as HTMLInputElement\n this.fillType = element.value\n\n switch (this.fillType) {\n case 'gradient':\n if (!this.gradient) {\n this.gradient = {\n type: 'linear',\n colorStops: [\n {\n position: 0,\n color: this.solid || '#000000'\n },\n {\n position: 1,\n color: this.solid || '#FFFFFF'\n }\n ],\n rotation: 0,\n center: 'center'\n }\n }\n\n this.value = {\n type: 'gradient',\n gradientType: this.gradient.type || 'linear',\n colorStops: this.gradient.colorStops || [\n {\n position: 0,\n color: this.solid || '#000000'\n },\n {\n position: 1,\n color: this.solid || '#FFFFFF'\n }\n ],\n rotation: Number(this.gradient.rotation) || 0,\n center: this.gradient.center\n }\n break\n\n case 'pattern':\n if (!this.pattern) this.pattern = {}\n\n this.value = {\n type: 'pattern',\n image: this.pattern.image,\n offsetX: Number(this.pattern.offsetX) || 0,\n offsetY: Number(this.pattern.offsetY) || 0,\n width: Number(this.pattern.width),\n height: Number(this.pattern.height),\n align: this.pattern.align,\n fitPattern: this.pattern.fitPattern\n }\n break\n\n case 'solid':\n if (!this.solid) this.solid = '#fff'\n this.value = this.solid\n break\n\n case 'no':\n this.value = ''\n break\n }\n\n this._block_reset = true\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))\n }\n\n _onChangedSolid(e: Event) {\n if (this.fillType !== 'solid') return\n\n this.solid = (e.target as HTMLInputElement).value\n\n this.value = this.solid\n\n this._block_reset = true\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))\n }\n\n _onChandedGradient(e: Event) {\n /*\n * TODO Gradient의 rotation은 symmetry 기능 등으로 외부에서 변경될 수도 있다.\n * 이 점을 감안해서, 외부 변경에 대한 대응을 해야 한다.\n */\n\n if (this.fillType !== 'gradient') {\n return\n }\n\n this.gradient = (e.target as OxInputColorGradient).value\n\n this.value = {\n type: 'gradient',\n gradientType: this.gradient.type || 'linear',\n colorStops: this.gradient.colorStops || [\n {\n position: 0,\n color: this.solid || '#000000'\n },\n {\n position: 1,\n color: this.solid || '#FFFFFF'\n }\n ],\n rotation: Number(this.gradient.rotation) || 0,\n center: this.gradient.center\n }\n\n this._block_reset = true\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))\n }\n\n _onChangedPattern(e: Event) {\n if (this.fillType !== 'pattern') return\n\n this.pattern = (e.target as OxInputBackgroundPattern).value\n\n this.value = {\n type: 'pattern',\n image: this.pattern?.image,\n offsetX: Number(this.pattern?.offsetX) || 0,\n offsetY: Number(this.pattern?.offsetY) || 0,\n width: Number(this.pattern?.width),\n height: Number(this.pattern?.height),\n align: this.pattern?.align,\n fitPattern: this.pattern?.fitPattern\n }\n\n this._block_reset = true\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))\n }\n}\n"]}
@@ -0,0 +1,36 @@
1
+ /**
2
+ * @license Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ import 'codemirror/addon/display/fullscreen';
5
+ import 'codemirror/addon/display/autorefresh';
6
+ import 'codemirror/addon/hint/show-hint';
7
+ import 'codemirror/addon/lint/lint';
8
+ import 'codemirror-graphql/hint';
9
+ import 'codemirror-graphql/lint';
10
+ import 'codemirror-graphql/mode';
11
+ import { LitElement, PropertyValues } from 'lit';
12
+ import CodeMirror from 'codemirror';
13
+ /**
14
+ WEB Component for code-mirror graphql editor.
15
+
16
+ Example:
17
+
18
+ <ox-input-graphql value=${text} link=${link}>
19
+ </ox-input-graphql>
20
+ */
21
+ export default class OxInputGraphql extends LitElement {
22
+ static styles: import("lit").CSSResult[];
23
+ /**
24
+ * `value`는 에디터에서 작성중인 contents이다.
25
+ */
26
+ value?: string;
27
+ link?: string;
28
+ textarea: HTMLTextAreaElement;
29
+ private _self_changing;
30
+ private _changed;
31
+ private _editor?;
32
+ updated(changes: PropertyValues<this>): Promise<void>;
33
+ render(): import("lit-html").TemplateResult<1>;
34
+ getSchema(): Promise<import("graphql").GraphQLSchema>;
35
+ getEditor(): Promise<CodeMirror.EditorFromTextArea | undefined>;
36
+ }
@@ -0,0 +1,161 @@
1
+ /**
2
+ * @license Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ import { __decorate } from "tslib";
5
+ import 'codemirror/addon/display/fullscreen';
6
+ import 'codemirror/addon/display/autorefresh';
7
+ import 'codemirror/addon/hint/show-hint';
8
+ import 'codemirror/addon/lint/lint';
9
+ import 'codemirror-graphql/hint';
10
+ import 'codemirror-graphql/lint';
11
+ import 'codemirror-graphql/mode';
12
+ import { GRAPHQL_URI } from '@operato/graphql';
13
+ import { LitElement, css, html, unsafeCSS } from 'lit';
14
+ import { customElement, property, query } from 'lit/decorators.js';
15
+ import { introspectSchema, wrapSchema } from '@graphql-tools/wrap';
16
+ import CodeMirror from 'codemirror';
17
+ import CodeMirrorStyle from '!!text-loader!codemirror/lib/codemirror.css';
18
+ import FullScreenStyle from '!!text-loader!codemirror/addon/display/fullscreen.css';
19
+ import LintStyle from '!!text-loader!codemirror/addon/lint/lint.css';
20
+ import NightThemeStyle from '!!text-loader!codemirror/theme/night.css';
21
+ import ShowHintStyle from '!!text-loader!codemirror/addon/hint/show-hint.css';
22
+ import { fetch } from 'cross-fetch';
23
+ import { print } from 'graphql';
24
+ /**
25
+ WEB Component for code-mirror graphql editor.
26
+
27
+ Example:
28
+
29
+ <ox-input-graphql value=${text} link=${link}>
30
+ </ox-input-graphql>
31
+ */
32
+ let OxInputGraphql = class OxInputGraphql extends LitElement {
33
+ constructor() {
34
+ super(...arguments);
35
+ this._self_changing = false;
36
+ this._changed = false;
37
+ }
38
+ async updated(changes) {
39
+ if ((!this._editor || changes.has('value') || changes.has('link')) && !this._self_changing) {
40
+ if (changes.has('link')) {
41
+ this._editor = undefined;
42
+ }
43
+ ;
44
+ (await this.getEditor()).setValue(this.value === undefined ? '' : String(this.value));
45
+ // ;(await this.getEditor()).refresh()
46
+ }
47
+ }
48
+ render() {
49
+ return html ` <textarea></textarea> `;
50
+ }
51
+ async getSchema() {
52
+ const executor = async ({ document, variables }) => {
53
+ const query = print(document);
54
+ const uri = this.link || GRAPHQL_URI;
55
+ const fetchResult = await fetch(uri, {
56
+ method: 'POST',
57
+ headers: {
58
+ 'Content-Type': 'application/json'
59
+ },
60
+ body: JSON.stringify({ query, variables })
61
+ });
62
+ return fetchResult.json();
63
+ };
64
+ return await wrapSchema({
65
+ schema: await introspectSchema(executor),
66
+ executor
67
+ });
68
+ }
69
+ async getEditor() {
70
+ if (!this._editor) {
71
+ try {
72
+ var schema = await this.getSchema();
73
+ }
74
+ catch (err) {
75
+ console.error(err);
76
+ }
77
+ if (this.textarea) {
78
+ this._editor = CodeMirror.fromTextArea(this.textarea, {
79
+ value: this.value,
80
+ mode: 'graphql',
81
+ lint: {
82
+ //@ts-ignore
83
+ schema
84
+ },
85
+ hintOptions: {
86
+ //@ts-ignore
87
+ schema
88
+ },
89
+ tabSize: 2,
90
+ lineNumbers: false,
91
+ showCursorWhenSelecting: true,
92
+ theme: 'night',
93
+ extraKeys: {
94
+ F11: function (cm) {
95
+ cm.setOption('fullScreen', !cm.getOption('fullScreen'));
96
+ },
97
+ Esc: function (cm) {
98
+ cm.setOption('fullScreen', !cm.getOption('fullScreen'));
99
+ }
100
+ },
101
+ autoRefresh: {
102
+ delay: 500
103
+ }
104
+ });
105
+ this._editor.on('blur', (editor, e) => {
106
+ if (!this._changed)
107
+ return;
108
+ this.value = editor.getValue();
109
+ this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
110
+ });
111
+ this._editor.on('change', async (editor, changeObj) => {
112
+ this._self_changing = true;
113
+ this._changed = true;
114
+ await this.requestUpdate();
115
+ this._self_changing = false;
116
+ });
117
+ }
118
+ }
119
+ return this._editor;
120
+ }
121
+ };
122
+ OxInputGraphql.styles = [
123
+ css `
124
+ ${unsafeCSS(CodeMirrorStyle)}
125
+ ${unsafeCSS(FullScreenStyle)}
126
+ ${unsafeCSS(NightThemeStyle)}
127
+ ${unsafeCSS(LintStyle)}
128
+ ${unsafeCSS(ShowHintStyle)}
129
+ `,
130
+ css `
131
+ :host {
132
+ display: block;
133
+ position: relative;
134
+ }
135
+
136
+ textarea {
137
+ display: block;
138
+ height: 100%;
139
+ width: 100%;
140
+ resize: none;
141
+ font-size: 16px;
142
+ line-height: 20px;
143
+ border: 0px;
144
+ padding: 0px;
145
+ }
146
+ `
147
+ ];
148
+ __decorate([
149
+ property({ type: String })
150
+ ], OxInputGraphql.prototype, "value", void 0);
151
+ __decorate([
152
+ property({ type: String })
153
+ ], OxInputGraphql.prototype, "link", void 0);
154
+ __decorate([
155
+ query('textarea')
156
+ ], OxInputGraphql.prototype, "textarea", void 0);
157
+ OxInputGraphql = __decorate([
158
+ customElement('ox-input-graphql')
159
+ ], OxInputGraphql);
160
+ export default OxInputGraphql;
161
+ //# sourceMappingURL=ox-input-graphql.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ox-input-graphql.js","sourceRoot":"","sources":["../../../src/input/ox-input-graphql.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport 'codemirror/addon/display/fullscreen'\nimport 'codemirror/addon/display/autorefresh'\nimport 'codemirror/addon/hint/show-hint'\nimport 'codemirror/addon/lint/lint'\nimport 'codemirror-graphql/hint'\nimport 'codemirror-graphql/lint'\nimport 'codemirror-graphql/mode'\n\nimport { GRAPHQL_URI, client } from '@operato/graphql'\nimport { LitElement, PropertyValues, css, html, unsafeCSS } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { introspectSchema, wrapSchema } from '@graphql-tools/wrap'\n\nimport CodeMirror from 'codemirror'\nimport CodeMirrorStyle from '!!text-loader!codemirror/lib/codemirror.css'\nimport FullScreenStyle from '!!text-loader!codemirror/addon/display/fullscreen.css'\nimport LintStyle from '!!text-loader!codemirror/addon/lint/lint.css'\nimport NightThemeStyle from '!!text-loader!codemirror/theme/night.css'\nimport ShowHintStyle from '!!text-loader!codemirror/addon/hint/show-hint.css'\nimport { fetch } from 'cross-fetch'\nimport { print } from 'graphql'\n\n/**\n WEB Component for code-mirror graphql editor.\n \n Example:\n \n <ox-input-graphql value=${text} link=${link}>\n </ox-input-graphql>\n */\n@customElement('ox-input-graphql')\nexport default class OxInputGraphql extends LitElement {\n static styles = [\n css`\n ${unsafeCSS(CodeMirrorStyle)}\n ${unsafeCSS(FullScreenStyle)}\n ${unsafeCSS(NightThemeStyle)}\n ${unsafeCSS(LintStyle)}\n ${unsafeCSS(ShowHintStyle)}\n `,\n css`\n :host {\n display: block;\n position: relative;\n }\n\n textarea {\n display: block;\n height: 100%;\n width: 100%;\n resize: none;\n font-size: 16px;\n line-height: 20px;\n border: 0px;\n padding: 0px;\n }\n `\n ]\n\n /**\n * `value`는 에디터에서 작성중인 contents이다.\n */\n @property({ type: String }) value?: string\n @property({ type: String }) link?: string\n\n @query('textarea') textarea!: HTMLTextAreaElement\n\n private _self_changing: boolean = false\n private _changed: boolean = false\n private _editor?: CodeMirror.EditorFromTextArea\n\n async updated(changes: PropertyValues<this>) {\n if ((!this._editor || changes.has('value') || changes.has('link')) && !this._self_changing) {\n if (changes.has('link')) {\n this._editor = undefined\n }\n ;(await this.getEditor())!.setValue(this.value === undefined ? '' : String(this.value))\n // ;(await this.getEditor()).refresh()\n }\n }\n\n render() {\n return html` <textarea></textarea> `\n }\n\n async getSchema() {\n const executor = async ({ document, variables }: any) => {\n const query = print(document)\n const uri = this.link || GRAPHQL_URI\n\n const fetchResult = await fetch(uri, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n },\n body: JSON.stringify({ query, variables })\n })\n return fetchResult.json()\n }\n\n return await wrapSchema({\n schema: await introspectSchema(executor),\n executor\n })\n }\n\n async getEditor() {\n if (!this._editor) {\n try {\n var schema = await this.getSchema()\n } catch (err) {\n console.error(err)\n }\n\n if (this.textarea) {\n this._editor = CodeMirror.fromTextArea(this.textarea, {\n value: this.value,\n mode: 'graphql',\n lint: {\n //@ts-ignore\n schema\n },\n hintOptions: {\n //@ts-ignore\n schema\n },\n tabSize: 2,\n lineNumbers: false,\n showCursorWhenSelecting: true,\n theme: 'night',\n extraKeys: {\n F11: function (cm) {\n cm.setOption('fullScreen', !cm.getOption('fullScreen'))\n },\n Esc: function (cm) {\n cm.setOption('fullScreen', !cm.getOption('fullScreen'))\n }\n },\n autoRefresh: {\n delay: 500\n }\n })\n\n this._editor.on('blur', (editor: CodeMirror.Editor, e: FocusEvent) => {\n if (!this._changed) return\n\n this.value = editor.getValue()\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))\n })\n\n this._editor.on('change', async (editor: CodeMirror.Editor, changeObj: CodeMirror.EditorChange) => {\n this._self_changing = true\n\n this._changed = true\n\n await this.requestUpdate()\n\n this._self_changing = false\n })\n }\n }\n\n return this._editor\n }\n}\n"]}
@@ -0,0 +1,24 @@
1
+ import '@operato/property-editor/ox-property-editor-legend.js';
2
+ import '@operato/property-editor/ox-property-editor-number.js';
3
+ import '@operato/property-editor/ox-property-editor-password.js';
4
+ import '@operato/property-editor/ox-property-editor-angle.js';
5
+ import '@operato/property-editor/ox-property-editor-string.js';
6
+ import '@operato/property-editor/ox-property-editor-data.js';
7
+ import '@operato/property-editor/ox-property-editor-date.js';
8
+ import '@operato/property-editor/ox-property-editor-checkbox.js';
9
+ import '@operato/property-editor/ox-property-editor-options.js';
10
+ import '@operato/property-editor/ox-property-editor-select.js';
11
+ import '@operato/property-editor/ox-property-editor-scene-component-id.js';
12
+ import '@operato/property-editor/ox-property-editor-color.js';
13
+ import '@operato/property-editor/ox-property-editor-multiple-colors.js';
14
+ import '@operato/property-editor/ox-property-editor-solid-colorstops.js';
15
+ import '@operato/property-editor/ox-property-editor-gradient-colorstops.js';
16
+ import '@operato/property-editor/ox-property-editor-gradient-colorstops.js';
17
+ import '@operato/property-editor/ox-property-editor-textarea.js';
18
+ import '@operato/property-editor/ox-property-editor-table.js';
19
+ import '@operato/property-editor/ox-property-editor-value-map.js';
20
+ import '@operato/property-editor/ox-property-editor-value-ranges.js';
21
+ import '@operato/attachment/ox-property-editor-attachment-selector.js';
22
+ import '@operato/attachment/ox-property-editor-image-selector.js';
23
+ import '@operato/font/ox-property-editor-font-selector.js';
24
+ import './ox-property-editor-graphql.js';
@@ -0,0 +1,58 @@
1
+ import '@operato/property-editor/ox-property-editor-legend.js';
2
+ import '@operato/property-editor/ox-property-editor-number.js';
3
+ import '@operato/property-editor/ox-property-editor-password.js';
4
+ import '@operato/property-editor/ox-property-editor-angle.js';
5
+ import '@operato/property-editor/ox-property-editor-string.js';
6
+ import '@operato/property-editor/ox-property-editor-data.js';
7
+ import '@operato/property-editor/ox-property-editor-date.js';
8
+ import '@operato/property-editor/ox-property-editor-checkbox.js';
9
+ import '@operato/property-editor/ox-property-editor-options.js';
10
+ import '@operato/property-editor/ox-property-editor-select.js';
11
+ import '@operato/property-editor/ox-property-editor-scene-component-id.js';
12
+ import '@operato/property-editor/ox-property-editor-color.js';
13
+ import '@operato/property-editor/ox-property-editor-multiple-colors.js';
14
+ import '@operato/property-editor/ox-property-editor-solid-colorstops.js';
15
+ import '@operato/property-editor/ox-property-editor-gradient-colorstops.js';
16
+ import '@operato/property-editor/ox-property-editor-gradient-colorstops.js';
17
+ import '@operato/property-editor/ox-property-editor-textarea.js';
18
+ import '@operato/property-editor/ox-property-editor-table.js';
19
+ import '@operato/property-editor/ox-property-editor-value-map.js';
20
+ import '@operato/property-editor/ox-property-editor-value-ranges.js';
21
+ import '@operato/attachment/ox-property-editor-attachment-selector.js';
22
+ import '@operato/attachment/ox-property-editor-image-selector.js';
23
+ import '@operato/font/ox-property-editor-font-selector.js';
24
+ import './ox-property-editor-graphql.js';
25
+ import { OxPropertyEditor } from '@operato/property-editor';
26
+ OxPropertyEditor.register({
27
+ legend: 'ox-property-editor-legend',
28
+ number: 'ox-property-editor-number',
29
+ slider: 'ox-property-editor-range',
30
+ password: 'ox-property-editor-password',
31
+ angle: 'ox-property-editor-angle',
32
+ string: 'ox-property-editor-string',
33
+ textarea: 'ox-property-editor-textarea',
34
+ javascript: 'ox-property-editor-textarea',
35
+ checkbox: 'ox-property-editor-checkbox',
36
+ boolean: 'ox-property-editor-checkbox',
37
+ select: 'ox-property-editor-select',
38
+ date: 'ox-property-editor-date',
39
+ options: 'ox-property-editor-options',
40
+ data: 'ox-property-editor-data',
41
+ file: 'ox-property-editor-file',
42
+ image: 'ox-property-editor-image',
43
+ 'range-input': 'ox-property-editor-range',
44
+ 'attachment-selector': 'ox-property-editor-attachment-selector',
45
+ 'gltf-selector': 'ox-property-editor-attachment-selector',
46
+ 'image-selector': 'ox-property-editor-image-selector',
47
+ color: 'ox-property-editor-color',
48
+ 'solid-color-stops': 'ox-property-editor-solid-colorstops',
49
+ 'gradient-color-stops': 'ox-property-editor-gradient-colorstops',
50
+ 'multiple-color': 'ox-property-editor-multiple-colors',
51
+ map: 'ox-property-editor-value-map',
52
+ range: 'ox-property-editor-value-ranges',
53
+ graphql: 'ox-property-editor-graphql',
54
+ 'editor-table': 'ox-property-editor-table',
55
+ 'id-input': 'ox-property-editor-scene-component-id',
56
+ 'font-selector': 'ox-property-editor-font-selector'
57
+ });
58
+ //# sourceMappingURL=index.js.map