x4js 2.0.5 → 2.0.6

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 (222) hide show
  1. package/build/x4.css +1 -0
  2. package/build/x4.js +1 -0
  3. package/lib/README.txt +15 -0
  4. package/lib/cjs/x4.css +1 -0
  5. package/lib/cjs/x4.js +1 -0
  6. package/lib/esm/x4.css +1 -0
  7. package/lib/esm/x4.mjs +1 -0
  8. package/lib/src/components/base.scss +26 -0
  9. package/lib/src/components/boxes/boxes.module.scss +37 -0
  10. package/lib/src/components/boxes/boxes.ts +125 -0
  11. package/lib/src/components/btngroup/btngroup.module.scss +29 -0
  12. package/lib/src/components/btngroup/btngroup.ts +106 -0
  13. package/lib/src/components/button/button.module.scss +154 -0
  14. package/lib/src/components/button/button.ts +117 -0
  15. package/lib/src/components/calendar/calendar-check-sharp-light.svg +1 -0
  16. package/lib/src/components/calendar/calendar.module.scss +163 -0
  17. package/lib/src/components/calendar/calendar.ts +326 -0
  18. package/lib/src/components/calendar/chevron-left-sharp-light.svg +1 -0
  19. package/lib/src/components/calendar/chevron-right-sharp-light.svg +1 -0
  20. package/lib/src/components/checkbox/check.svg +4 -0
  21. package/lib/src/components/checkbox/checkbox.module.scss +142 -0
  22. package/lib/src/components/checkbox/checkbox.ts +125 -0
  23. package/lib/src/components/colorinput/colorinput.module.scss +65 -0
  24. package/lib/src/components/colorinput/colorinput.ts +88 -0
  25. package/lib/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
  26. package/lib/src/components/colorpicker/colorpicker.module.scss +133 -0
  27. package/lib/src/components/colorpicker/colorpicker.ts +477 -0
  28. package/lib/src/components/combobox/combobox.module.scss +121 -0
  29. package/lib/src/components/combobox/combobox.ts +190 -0
  30. package/lib/src/components/combobox/updown.svg +4 -0
  31. package/lib/src/components/dialog/dialog.module.scss +71 -0
  32. package/lib/src/components/dialog/dialog.ts +91 -0
  33. package/lib/src/components/dialog/xmark-sharp-light.svg +1 -0
  34. package/lib/src/components/form/form.module.scss +34 -0
  35. package/lib/src/components/form/form.ts +36 -0
  36. package/lib/src/components/header/header.module.scss +40 -0
  37. package/lib/src/components/header/header.ts +124 -0
  38. package/lib/src/components/icon/icon.module.scss +30 -0
  39. package/lib/src/components/icon/icon.ts +134 -0
  40. package/lib/src/components/image/image.module.scss +21 -0
  41. package/lib/src/components/image/image.ts +67 -0
  42. package/lib/src/components/input/input.module.scss +69 -0
  43. package/lib/src/components/input/input.ts +274 -0
  44. package/lib/src/components/label/label.module.scss +52 -0
  45. package/lib/src/components/label/label.ts +55 -0
  46. package/lib/src/components/listbox/listbox.module.scss +103 -0
  47. package/lib/src/components/listbox/listbox.ts +427 -0
  48. package/lib/src/components/menu/caret-right-solid.svg +1 -0
  49. package/lib/src/components/menu/menu.module.scss +108 -0
  50. package/lib/src/components/menu/menu.ts +168 -0
  51. package/lib/src/components/messages/circle-exclamation.svg +1 -0
  52. package/lib/src/components/messages/messages.module.scss +47 -0
  53. package/lib/src/components/messages/messages.ts +64 -0
  54. package/lib/src/components/normalize.scss +386 -0
  55. package/lib/src/components/notification/circle-check-solid.svg +1 -0
  56. package/lib/src/components/notification/circle-exclamation-solid.svg +1 -0
  57. package/lib/src/components/notification/circle-notch-light.svg +1 -0
  58. package/lib/src/components/notification/notification.module.scss +82 -0
  59. package/lib/src/components/notification/notification.ts +108 -0
  60. package/lib/src/components/notification/xmark-sharp-light.svg +1 -0
  61. package/lib/src/components/panel/panel.module.scss +48 -0
  62. package/lib/src/components/panel/panel.ts +57 -0
  63. package/lib/src/components/popup/popup.module.scss +43 -0
  64. package/lib/src/components/popup/popup.ts +395 -0
  65. package/lib/src/components/progress/progress.module.scss +57 -0
  66. package/lib/src/components/progress/progress.ts +43 -0
  67. package/lib/src/components/rating/rating.module.scss +23 -0
  68. package/lib/src/components/rating/rating.ts +125 -0
  69. package/lib/src/components/rating/star-sharp-light.svg +1 -0
  70. package/lib/src/components/rating/star-sharp-solid.svg +1 -0
  71. package/lib/src/components/shared.scss +76 -0
  72. package/lib/src/components/sizers/sizer.module.scss +90 -0
  73. package/lib/src/components/sizers/sizer.ts +120 -0
  74. package/lib/src/components/slider/slider.module.scss +71 -0
  75. package/lib/src/components/slider/slider.ts +143 -0
  76. package/lib/src/components/switch/switch.module.scss +127 -0
  77. package/lib/src/components/switch/switch.ts +56 -0
  78. package/lib/src/components/tabs/tabs.module.scss +46 -0
  79. package/lib/src/components/tabs/tabs.ts +157 -0
  80. package/lib/src/components/textarea/textarea.module.scss +59 -0
  81. package/lib/src/components/textarea/textarea.ts +54 -0
  82. package/lib/src/components/textedit/textedit.module.scss +114 -0
  83. package/lib/src/components/textedit/textedit.ts +82 -0
  84. package/lib/src/components/themes.scss +77 -0
  85. package/lib/src/components/tooltips/circle-info-sharp-light.svg +1 -0
  86. package/lib/src/components/tooltips/tooltips.scss +51 -0
  87. package/lib/src/components/tooltips/tooltips.ts +103 -0
  88. package/lib/src/components/treeview/chevron-down-light.svg +1 -0
  89. package/lib/src/components/treeview/treeview.module.scss +116 -0
  90. package/lib/src/components/treeview/treeview.ts +403 -0
  91. package/lib/src/components/viewport/viewport.module.scss +25 -0
  92. package/lib/src/components/viewport/viewport.ts +38 -0
  93. package/lib/src/core/component.ts +979 -0
  94. package/lib/src/core/core_colors.ts +250 -0
  95. package/lib/src/core/core_dom.ts +471 -0
  96. package/lib/src/core/core_dragdrop.ts +201 -0
  97. package/lib/src/core/core_element.ts +98 -0
  98. package/lib/src/core/core_events.ts +149 -0
  99. package/lib/src/core/core_i18n.ts +377 -0
  100. package/lib/src/core/core_router.ts +221 -0
  101. package/lib/src/core/core_styles.ts +215 -0
  102. package/lib/src/core/core_svg.ts +550 -0
  103. package/lib/src/core/core_tools.ts +673 -0
  104. package/lib/src/demo/assets/house-light.svg +1 -0
  105. package/lib/src/demo/assets/radio.svg +4 -0
  106. package/lib/src/demo/index.html +12 -0
  107. package/lib/src/demo/main.scss +21 -0
  108. package/lib/src/demo/main.tsx +323 -0
  109. package/lib/src/x4.scss +19 -0
  110. package/lib/src/x4.ts +60 -0
  111. package/lib/styles/x4.css +1 -0
  112. package/lib/types/x4.d.ts +45060 -0
  113. package/package.json +2 -11
  114. package/scripts/build.mjs +362 -0
  115. package/scripts/prepack.mjs +51 -0
  116. package/src/components/base.scss +26 -0
  117. package/src/components/boxes/boxes.module.scss +37 -0
  118. package/src/components/boxes/boxes.ts +125 -0
  119. package/src/components/btngroup/btngroup.module.scss +29 -0
  120. package/src/components/btngroup/btngroup.ts +106 -0
  121. package/src/components/button/button.module.scss +154 -0
  122. package/src/components/button/button.ts +117 -0
  123. package/src/components/calendar/calendar-check-sharp-light.svg +1 -0
  124. package/src/components/calendar/calendar.module.scss +163 -0
  125. package/src/components/calendar/calendar.ts +326 -0
  126. package/src/components/calendar/chevron-left-sharp-light.svg +1 -0
  127. package/src/components/calendar/chevron-right-sharp-light.svg +1 -0
  128. package/src/components/checkbox/check.svg +4 -0
  129. package/src/components/checkbox/checkbox.module.scss +142 -0
  130. package/src/components/checkbox/checkbox.ts +125 -0
  131. package/src/components/colorinput/colorinput.module.scss +65 -0
  132. package/src/components/colorinput/colorinput.ts +88 -0
  133. package/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
  134. package/src/components/colorpicker/colorpicker.module.scss +133 -0
  135. package/src/components/colorpicker/colorpicker.ts +477 -0
  136. package/src/components/combobox/combobox.module.scss +121 -0
  137. package/src/components/combobox/combobox.ts +190 -0
  138. package/src/components/combobox/updown.svg +4 -0
  139. package/src/components/dialog/dialog.module.scss +71 -0
  140. package/src/components/dialog/dialog.ts +91 -0
  141. package/src/components/dialog/xmark-sharp-light.svg +1 -0
  142. package/src/components/form/form.module.scss +34 -0
  143. package/src/components/form/form.ts +36 -0
  144. package/src/components/header/header.module.scss +40 -0
  145. package/src/components/header/header.ts +124 -0
  146. package/src/components/icon/icon.module.scss +30 -0
  147. package/src/components/icon/icon.ts +134 -0
  148. package/src/components/image/image.module.scss +21 -0
  149. package/src/components/image/image.ts +67 -0
  150. package/src/components/input/input.module.scss +69 -0
  151. package/src/components/input/input.ts +274 -0
  152. package/src/components/label/label.module.scss +52 -0
  153. package/src/components/label/label.ts +55 -0
  154. package/src/components/listbox/listbox.module.scss +103 -0
  155. package/src/components/listbox/listbox.ts +427 -0
  156. package/src/components/menu/caret-right-solid.svg +1 -0
  157. package/src/components/menu/menu.module.scss +108 -0
  158. package/src/components/menu/menu.ts +168 -0
  159. package/src/components/messages/circle-exclamation.svg +1 -0
  160. package/src/components/messages/messages.module.scss +47 -0
  161. package/src/components/messages/messages.ts +64 -0
  162. package/src/components/normalize.scss +386 -0
  163. package/src/components/notification/circle-check-solid.svg +1 -0
  164. package/src/components/notification/circle-exclamation-solid.svg +1 -0
  165. package/src/components/notification/circle-notch-light.svg +1 -0
  166. package/src/components/notification/notification.module.scss +82 -0
  167. package/src/components/notification/notification.ts +108 -0
  168. package/src/components/notification/xmark-sharp-light.svg +1 -0
  169. package/src/components/panel/panel.module.scss +48 -0
  170. package/src/components/panel/panel.ts +57 -0
  171. package/src/components/popup/popup.module.scss +43 -0
  172. package/src/components/popup/popup.ts +395 -0
  173. package/src/components/progress/progress.module.scss +57 -0
  174. package/src/components/progress/progress.ts +43 -0
  175. package/src/components/rating/rating.module.scss +23 -0
  176. package/src/components/rating/rating.ts +125 -0
  177. package/src/components/rating/star-sharp-light.svg +1 -0
  178. package/src/components/rating/star-sharp-solid.svg +1 -0
  179. package/src/components/shared.scss +76 -0
  180. package/src/components/sizers/sizer.module.scss +90 -0
  181. package/src/components/sizers/sizer.ts +120 -0
  182. package/src/components/slider/slider.module.scss +71 -0
  183. package/src/components/slider/slider.ts +143 -0
  184. package/src/components/switch/switch.module.scss +127 -0
  185. package/src/components/switch/switch.ts +56 -0
  186. package/src/components/tabs/tabs.module.scss +46 -0
  187. package/src/components/tabs/tabs.ts +157 -0
  188. package/src/components/textarea/textarea.module.scss +59 -0
  189. package/src/components/textarea/textarea.ts +54 -0
  190. package/src/components/textedit/textedit.module.scss +114 -0
  191. package/src/components/textedit/textedit.ts +82 -0
  192. package/src/components/themes.scss +77 -0
  193. package/src/components/tooltips/circle-info-sharp-light.svg +1 -0
  194. package/src/components/tooltips/tooltips.scss +51 -0
  195. package/src/components/tooltips/tooltips.ts +103 -0
  196. package/src/components/treeview/chevron-down-light.svg +1 -0
  197. package/src/components/treeview/treeview.module.scss +116 -0
  198. package/src/components/treeview/treeview.ts +403 -0
  199. package/src/components/viewport/viewport.module.scss +25 -0
  200. package/src/components/viewport/viewport.ts +38 -0
  201. package/src/core/component.ts +979 -0
  202. package/src/core/core_colors.ts +250 -0
  203. package/src/core/core_dom.ts +471 -0
  204. package/src/core/core_dragdrop.ts +201 -0
  205. package/src/core/core_element.ts +98 -0
  206. package/src/core/core_events.ts +149 -0
  207. package/src/core/core_i18n.ts +377 -0
  208. package/src/core/core_router.ts +221 -0
  209. package/src/core/core_styles.ts +215 -0
  210. package/src/core/core_svg.ts +550 -0
  211. package/src/core/core_tools.ts +673 -0
  212. package/src/demo/assets/house-light.svg +1 -0
  213. package/src/demo/assets/radio.svg +4 -0
  214. package/src/demo/index.html +12 -0
  215. package/src/demo/main.scss +21 -0
  216. package/src/demo/main.tsx +323 -0
  217. package/src/x4.scss +19 -0
  218. package/src/x4.ts +60 -0
  219. package/tsconfig.json +14 -0
  220. package/types/scss.d.ts +4 -0
  221. package/types/svg.d.ts +4 -0
  222. package/types/x4react.d.ts +9 -0
@@ -0,0 +1,550 @@
1
+ /**
2
+ * ___ ___ __
3
+ * \ \/ / / _
4
+ * \ / /_| |_
5
+ * / \____ _|
6
+ * /__/\__\ |_|
7
+ *
8
+ * @file core_svg.ts
9
+ * @author Etienne Cochard
10
+ *
11
+ * @copyright (c) 2024 R-libre ingenierie
12
+ *
13
+ * Use of this source code is governed by an MIT-style license
14
+ * that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
15
+ **/
16
+
17
+ import { Component, ComponentProps } from '@core/component';
18
+ import { isUnitLess } from "@core/core_styles";
19
+ import { DOMEventHandler, GlobalDOMEvents, addEvent } from '@core/core_dom';
20
+ import { isNumber, isString } from '@core/core_tools.js';
21
+
22
+ const SVG_NS = "http://www.w3.org/2000/svg";
23
+
24
+ // degrees to radian
25
+ function d2r( d: number ): number {
26
+ return d * Math.PI / 180.0;
27
+ }
28
+
29
+ // polar to cartesian
30
+ function p2c( x: number, y: number, r: number, deg: number ): {x: number,y: number} {
31
+ const rad = d2r( deg );
32
+ return {
33
+ x: x + r * Math.cos( rad ),
34
+ y: y + r * Math.sin( rad )
35
+ };
36
+ }
37
+
38
+ // fix prec for numbers
39
+ function num( x: number ): number {
40
+ return Math.round( x * 1000 ) / 1000;
41
+ }
42
+
43
+ // clean values
44
+ function clean( a: any, ...b: any ) {
45
+ // just round number values to 3 digits
46
+ b = b.map( ( v: any ) => {
47
+ if( typeof v === 'number' && isFinite(v) ) {
48
+ return num(v);
49
+ }
50
+
51
+ return v;
52
+ });
53
+
54
+ return String.raw( a, ...b );
55
+ }
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+ class SvgItem {
66
+ protected _dom : SVGElement;
67
+
68
+ constructor( tag: string ) {
69
+ this._dom = document.createElementNS("http://www.w3.org/2000/svg", tag );
70
+ }
71
+
72
+ getDom( ) {
73
+ return this._dom;
74
+ }
75
+
76
+ /**
77
+ * change the stroke color
78
+ * @param color
79
+ */
80
+
81
+ stroke( color: string, width?: number ): this {
82
+ this.setAttr( 'stroke', color );
83
+ if( width!==undefined ) {
84
+ this.setAttr( 'stroke-width', width+'px' );
85
+ }
86
+ return this;
87
+ }
88
+
89
+ /**
90
+ * change the stroke width
91
+ * @param width
92
+ */
93
+ strokeWidth( width: number ): this {
94
+ this.setAttr( 'stroke-width', width+'px' );
95
+ return this;
96
+ }
97
+
98
+ strokeCap( cap: "butt" | "round" | "sqaure" ) {
99
+ return this.setAttr( "stroke-linecap", cap );
100
+ }
101
+
102
+ strokeOpacity( opacity: number ) {
103
+ return this.setAttr( "stroke-opacity", opacity+"" );
104
+ }
105
+
106
+ /**
107
+ *
108
+ */
109
+
110
+ antiAlias( set: boolean ) {
111
+ return this.setAttr( "shape-rendering", set ? "auto" : "crispEdges" );
112
+ }
113
+
114
+ /**
115
+ * change the fill color
116
+ * @param color
117
+ */
118
+
119
+ fill( color: string ): this {
120
+ this.setAttr( 'fill', color );
121
+ return this;
122
+ }
123
+
124
+ no_fill( ): this {
125
+ this.setAttr( 'fill', "transparent" );
126
+ return this;
127
+ }
128
+
129
+ /**
130
+ * define a new attribute
131
+ * @param name attibute name
132
+ * @param value attribute value
133
+ * @returns this
134
+ */
135
+
136
+ setAttr( name: string, value: string ) : this {
137
+ this._dom.setAttribute( name, value );
138
+ return this;
139
+ }
140
+
141
+ /**
142
+ *
143
+ */
144
+
145
+ setStyle<K extends keyof CSSStyleDeclaration>( name: K, value: string | number ) : this {
146
+ const _style = this._dom.style;
147
+
148
+ if( isNumber(value) ) {
149
+ let v = value+"";
150
+ if( !isUnitLess(name as string) ) {
151
+ v += "px";
152
+ }
153
+
154
+ (_style as any)[name] = v;
155
+ }
156
+ else {
157
+ (_style as any)[name] = value;
158
+ }
159
+
160
+ return this;
161
+ }
162
+
163
+ /**
164
+ * add a class
165
+ * @param name class name to add
166
+ */
167
+
168
+ addClass( cls: string ) {
169
+ if( !cls ) return;
170
+
171
+ if( cls.indexOf(' ')>=0 ) {
172
+ const ccs = cls.split( " " );
173
+ this._dom.classList.add(...ccs);
174
+ }
175
+ else {
176
+ this._dom.classList.add(cls);
177
+ }
178
+ }
179
+
180
+ /**
181
+ *
182
+ */
183
+
184
+ clip( id: string ): this {
185
+ this.setAttr( "clip-path", `url(#${id})` );
186
+ return this;
187
+ }
188
+
189
+ /**
190
+ *
191
+ */
192
+
193
+ transform( tr: string ): this {
194
+ this.setAttr( "transform", tr );
195
+ return this;
196
+ }
197
+
198
+ /**
199
+ *
200
+ */
201
+
202
+ rotate( deg: number, cx: number, cy: number ): this {
203
+ this.transform( `rotate( ${deg} ${cx} ${cy} )` );
204
+ return this;
205
+ }
206
+
207
+ translate( dx: number, dy: number ): this {
208
+ this.transform( `translate( ${dx} ${dy} )` );
209
+ return this;
210
+ }
211
+
212
+ scale( x: number ): this {
213
+ this.transform( `scale( ${x} )` );
214
+ return this;
215
+ }
216
+
217
+ /**
218
+ *
219
+ */
220
+
221
+ addDOMEvent<K extends keyof GlobalDOMEvents>( name: K, listener: GlobalDOMEvents[K], prepend = false ) {
222
+ addEvent( this._dom, name, listener as DOMEventHandler, prepend );
223
+ return this;
224
+ }
225
+ }
226
+
227
+
228
+
229
+ /**
230
+ *
231
+ */
232
+
233
+ export class SvgPath extends SvgItem {
234
+ private _path: string;
235
+
236
+ constructor( ) {
237
+ super( 'path' );
238
+ this._path = '';
239
+ }
240
+
241
+ private _update( ): this {
242
+ this.setAttr( 'd', this._path );
243
+ return this;
244
+ }
245
+
246
+ /**
247
+ * move the current pos
248
+ * @param x new pos x
249
+ * @param y new pos y
250
+ * @returns this
251
+ */
252
+
253
+ moveTo( x: number, y: number ) : this {
254
+ this._path += clean`M${x},${y}`;
255
+ return this._update( );
256
+ }
257
+
258
+ /**
259
+ * draw aline to the given point
260
+ * @param x end x
261
+ * @param y end y
262
+ * @returns this
263
+ */
264
+
265
+ lineTo( x: number, y: number ): this {
266
+ this._path += clean`L${x},${y}`;
267
+ return this._update( );
268
+ }
269
+
270
+ /**
271
+ * close the currentPath
272
+ */
273
+
274
+ closePath( ): this {
275
+ this._path += 'Z';
276
+ return this._update( );
277
+ }
278
+
279
+ /**
280
+ * draw an arc
281
+ * @param x center x
282
+ * @param y center y
283
+ * @param r radius
284
+ * @param start angle start in degrees
285
+ * @param end angle end in degrees
286
+ * @returns this
287
+ */
288
+
289
+ arc( x: number, y: number, r: number, start: number, end: number ): this {
290
+
291
+ const st = p2c( x, y, r, start-90 );
292
+ const en = p2c( x, y, r, end-90 );
293
+
294
+ const flag = end - start <= 180 ? "0" : "1";
295
+ this._path += clean`M${st.x},${st.y}A${r},${r} 0 ${flag} 1 ${en.x},${en.y}`;
296
+
297
+ return this._update( );
298
+ }
299
+ }
300
+
301
+ /**
302
+ *
303
+ */
304
+
305
+ export class SvgText extends SvgItem {
306
+
307
+ constructor( x: number, y: number, txt: string ) {
308
+ super( 'text' );
309
+
310
+ this.setAttr( 'x', num(x)+'' );
311
+ this.setAttr( 'y', num(y)+'' );
312
+
313
+ this._dom.innerHTML = txt;
314
+ }
315
+
316
+ font( font: string ): this {
317
+ return this.setAttr( 'font-family', font );
318
+ }
319
+
320
+ fontSize( size: number | string ): this {
321
+ return this.setAttr( 'font-size', size+'' );
322
+ }
323
+
324
+ fontWeight( weight: 'light' | 'normal' | 'bold' ): this {
325
+ return this.setAttr( 'font-weight', weight );
326
+ }
327
+
328
+ textAlign( align: 'left' | 'center' | 'right' ): this {
329
+
330
+ let al;
331
+ switch( align ) {
332
+ case 'left': al = 'start'; break;
333
+ case 'center': al = 'middle'; break;
334
+ case 'right': al = 'end'; break;
335
+ default: return this;
336
+ }
337
+
338
+ return this.setAttr( 'text-anchor', al );
339
+ }
340
+
341
+ verticalAlign( align: 'top' | 'center' | 'bottom' | 'baseline' ): this {
342
+
343
+ let al;
344
+ switch( align ) {
345
+ case 'top': al = 'hanging'; break;
346
+ case 'center': al = 'middle'; break;
347
+ case 'bottom': al = 'baseline'; break;
348
+ case 'baseline': al = 'mathematical'; break;
349
+ default: return;
350
+ }
351
+
352
+ return this.setAttr( 'alignment-baseline', al );
353
+ }
354
+ }
355
+
356
+ /**
357
+ *
358
+ */
359
+
360
+ export class SvgShape extends SvgItem {
361
+ constructor( tag: string ) {
362
+ super( tag );
363
+ }
364
+ }
365
+
366
+ /**
367
+ *
368
+ */
369
+
370
+ type number_or_perc = number | `${string}%`
371
+
372
+ export class SvgGradient extends SvgItem {
373
+
374
+ private static g_id = 1;
375
+
376
+ private _id: string;
377
+ private _stops: { offset: number_or_perc, color: string } [];
378
+
379
+ constructor( x1: number_or_perc, y1: number_or_perc, x2: number_or_perc, y2: number_or_perc ) {
380
+ super( 'linearGradient')
381
+
382
+ this._id = 'gx-'+SvgGradient.g_id;
383
+ SvgGradient.g_id++;
384
+
385
+ this.setAttr( 'id', this._id );
386
+ this.setAttr( 'x1', isString(x1) ? x1 : num(x1)+'' );
387
+ this.setAttr( 'x2', isString(x2) ? x2 : num(x2)+'' );
388
+ this.setAttr( 'y1', isString(y1) ? y1 : num(y1)+'' );
389
+ this.setAttr( 'y2', isString(y2) ? y2 : num(y2)+'' );
390
+
391
+ this._stops = [];
392
+ }
393
+
394
+ get id( ) {
395
+ return 'url(#'+this._id+')';
396
+ }
397
+
398
+ addStop( offset: number_or_perc, color: string ): this {
399
+ this._dom.insertAdjacentHTML( "beforeend", `<stop offset="${offset}%" stop-color="${color}"></stop>`);
400
+ return this;
401
+ }
402
+ }
403
+
404
+ /**
405
+ *
406
+ */
407
+
408
+ export class SvgGroup extends SvgItem {
409
+
410
+ constructor( tag = "g" ) {
411
+ super( tag )
412
+ }
413
+
414
+ /**
415
+ *
416
+ */
417
+
418
+ append<K extends SvgItem>( item: K ): K {
419
+ this._dom.appendChild( item.getDom() );
420
+ return item;
421
+ }
422
+
423
+ /**
424
+ *
425
+ */
426
+
427
+ path( ): SvgPath {
428
+ const path = new SvgPath( );
429
+ return this.append( path );
430
+ }
431
+
432
+ text( x: number, y: number, txt: string ) {
433
+ const text = new SvgText( x, y, txt );
434
+ return this.append( text );
435
+ }
436
+
437
+ ellipse( x: number, y: number, r1: number, r2 = r1 ): SvgShape {
438
+ const shape = new SvgShape( 'ellipse' );
439
+ shape.setAttr( 'cx', num(x)+'' );
440
+ shape.setAttr( 'cy', num(y)+'' );
441
+ shape.setAttr( 'rx', num(r1)+'' );
442
+ shape.setAttr( 'ry', num(r2)+'' );
443
+ return this.append( shape );
444
+ }
445
+
446
+ rect( x: number, y: number, w: number, h: number ): SvgShape {
447
+
448
+ if( h<0 ) {
449
+ y = y+h;
450
+ h = -h;
451
+ }
452
+
453
+ const shape = new SvgShape( 'rect' );
454
+ shape.setAttr( 'x', num(x)+'' );
455
+ shape.setAttr( 'y', num(y)+'' );
456
+ shape.setAttr( 'width', num(w)+'' );
457
+ shape.setAttr( 'height', num(h)+'' );
458
+ return this.append( shape );
459
+ }
460
+
461
+ group( ) {
462
+ const group = new SvgGroup( );
463
+ return this.append( group );
464
+ }
465
+
466
+ /**
467
+ *
468
+ * example
469
+ * ```ts
470
+ * const g = c.linear_gradient( '0%', '0%', '0%', '100%' )
471
+ * .addStop( 0, 'red' )
472
+ * .addStop( 100, 'green' );
473
+ *
474
+ * p.rect( 0, 0, 100, 100 )
475
+ * .stroke( g.id );
476
+ *
477
+ * ```
478
+ */
479
+
480
+ linear_gradient( x1: number_or_perc, y1: number_or_perc, x2: number_or_perc, y2: number_or_perc ) {
481
+ const grad = new SvgGradient( x1, y1, x2, y2 );
482
+ return this.append( grad );
483
+ }
484
+
485
+ /**
486
+ * clear
487
+ */
488
+
489
+ clear( ) {
490
+ const dom = this._dom;
491
+ while( dom.firstChild ) {
492
+ dom.removeChild( dom.firstChild );
493
+ }
494
+ }
495
+ }
496
+
497
+
498
+
499
+
500
+
501
+ export class SvgBuilder extends SvgGroup {
502
+ private static g_clip_id = 1;
503
+
504
+ constructor( ) {
505
+ super( );
506
+ }
507
+
508
+ addClip( x: number, y: number, w: number, h: number ) {
509
+
510
+ const id = 'c-'+SvgBuilder.g_clip_id++;
511
+ const clip = new SvgGroup( 'clipPath' );
512
+ clip.setAttr('id', id );
513
+ clip.rect( x, y, w, h );
514
+
515
+ this.append(clip);
516
+ return id;
517
+ }
518
+ }
519
+
520
+
521
+
522
+ /**
523
+ *
524
+ */
525
+
526
+ interface SvgProps extends ComponentProps {
527
+ viewbox?: string;
528
+ svg?: SvgBuilder;
529
+ }
530
+
531
+ /**
532
+ *
533
+ */
534
+
535
+ export class SvgComponent<P extends SvgProps = SvgProps> extends Component<P> {
536
+
537
+ constructor( props: P ) {
538
+ super( { ...props, tag: "svg", ns: SVG_NS } );
539
+
540
+ this.setAttribute( 'xmlns', SVG_NS );
541
+
542
+ if( props.viewbox ) {
543
+ this.setAttribute( "viewbox", props.viewbox );
544
+ }
545
+
546
+ if( props.svg ) {
547
+ this.dom.appendChild( props.svg.getDom() );
548
+ }
549
+ }
550
+ }