x4js 2.0.11 → 2.0.13

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 (109) hide show
  1. package/README.md +15 -15
  2. package/lib/README.txt +15 -15
  3. package/lib/cjs/x4.css +1 -1
  4. package/lib/cjs/x4.js +1 -1
  5. package/lib/esm/x4.css +1 -1
  6. package/lib/esm/x4.mjs +1 -1
  7. package/lib/src/components/base.scss +25 -26
  8. package/lib/src/components/boxes/boxes.module.scss +37 -37
  9. package/lib/src/components/boxes/boxes.ts +129 -125
  10. package/lib/src/components/breadcrumb/breadcrumb.scss +28 -0
  11. package/lib/src/components/breadcrumb/breadcrumb.ts +84 -0
  12. package/lib/src/components/breadcrumb/chevron-right.svg +1 -0
  13. package/lib/src/components/btngroup/btngroup.module.scss +28 -28
  14. package/lib/src/components/btngroup/btngroup.ts +119 -101
  15. package/lib/src/components/button/button.module.scss +154 -153
  16. package/lib/src/components/button/button.ts +117 -117
  17. package/lib/src/components/calendar/calendar.module.scss +162 -162
  18. package/lib/src/components/calendar/calendar.ts +326 -325
  19. package/lib/src/components/checkbox/check.svg +3 -3
  20. package/lib/src/components/checkbox/checkbox.module.scss +141 -141
  21. package/lib/src/components/checkbox/checkbox.ts +125 -124
  22. package/lib/src/components/colorinput/colorinput.module.scss +64 -64
  23. package/lib/src/components/colorinput/colorinput.ts +90 -87
  24. package/lib/src/components/colorpicker/colorpicker.module.scss +132 -132
  25. package/lib/src/components/colorpicker/colorpicker.ts +481 -476
  26. package/lib/src/components/combobox/combobox.module.scss +123 -120
  27. package/lib/src/components/combobox/combobox.ts +192 -190
  28. package/lib/src/components/combobox/updown.svg +3 -3
  29. package/lib/src/components/components.ts +34 -0
  30. package/lib/src/components/dialog/dialog.module.scss +71 -71
  31. package/lib/src/components/dialog/dialog.ts +94 -92
  32. package/lib/src/components/form/form.module.scss +34 -34
  33. package/lib/src/components/form/form.ts +41 -36
  34. package/lib/src/components/grid/datastore.ts +1298 -0
  35. package/lib/src/components/grid/gridview.ts +1108 -0
  36. package/lib/src/components/grid/memdb.ts +325 -0
  37. package/lib/src/components/header/header.module.scss +39 -39
  38. package/lib/src/components/header/header.ts +129 -123
  39. package/lib/src/components/icon/icon.module.scss +29 -29
  40. package/lib/src/components/icon/icon.ts +136 -134
  41. package/lib/src/components/image/image.module.scss +20 -20
  42. package/lib/src/components/image/image.ts +68 -66
  43. package/lib/src/components/input/input.module.scss +69 -69
  44. package/lib/src/components/input/input.ts +275 -274
  45. package/lib/src/components/label/label.module.scss +58 -52
  46. package/lib/src/components/label/label.ts +64 -55
  47. package/lib/src/components/link/link.ts +78 -0
  48. package/lib/src/components/listbox/listbox.module.scss +103 -103
  49. package/lib/src/components/listbox/listbox.ts +431 -427
  50. package/lib/src/components/menu/menu.module.scss +107 -107
  51. package/lib/src/components/menu/menu.ts +171 -168
  52. package/lib/src/components/messages/messages.module.scss +48 -47
  53. package/lib/src/components/messages/messages.ts +68 -63
  54. package/lib/src/components/normalize.scss +386 -386
  55. package/lib/src/components/notification/notification.module.scss +81 -81
  56. package/lib/src/components/notification/notification.ts +109 -108
  57. package/lib/src/components/panel/panel.module.scss +47 -47
  58. package/lib/src/components/panel/panel.ts +57 -56
  59. package/lib/src/components/popup/popup.module.scss +43 -43
  60. package/lib/src/components/popup/popup.ts +396 -395
  61. package/lib/src/components/progress/progress.module.scss +56 -56
  62. package/lib/src/components/progress/progress.ts +43 -42
  63. package/lib/src/components/rating/rating.module.scss +22 -22
  64. package/lib/src/components/rating/rating.ts +131 -125
  65. package/lib/src/components/shared.scss +90 -76
  66. package/lib/src/components/sizers/sizer.module.scss +89 -89
  67. package/lib/src/components/sizers/sizer.ts +123 -119
  68. package/lib/src/components/slider/slider.module.scss +70 -70
  69. package/lib/src/components/slider/slider.ts +147 -142
  70. package/lib/src/components/switch/switch.module.scss +126 -126
  71. package/lib/src/components/switch/switch.ts +61 -55
  72. package/lib/src/components/tabs/tabs.module.scss +46 -46
  73. package/lib/src/components/tabs/tabs.ts +168 -157
  74. package/lib/src/components/textarea/textarea.module.scss +59 -59
  75. package/lib/src/components/textarea/textarea.ts +60 -54
  76. package/lib/src/components/textedit/textedit.module.scss +113 -113
  77. package/lib/src/components/textedit/textedit.ts +83 -82
  78. package/lib/src/components/themes.scss +81 -77
  79. package/lib/src/components/tooltips/tooltips.scss +50 -50
  80. package/lib/src/components/tooltips/tooltips.ts +103 -102
  81. package/lib/src/components/treeview/treeview.module.scss +115 -115
  82. package/lib/src/components/treeview/treeview.ts +410 -403
  83. package/lib/src/components/viewport/viewport.module.scss +24 -24
  84. package/lib/src/components/viewport/viewport.ts +41 -38
  85. package/lib/src/core/component.ts +1002 -979
  86. package/lib/src/core/core_application.ts +44 -0
  87. package/lib/src/core/core_colors.ts +249 -249
  88. package/lib/src/core/core_dom.ts +471 -471
  89. package/lib/src/core/core_dragdrop.ts +200 -200
  90. package/lib/src/core/core_element.ts +97 -97
  91. package/lib/src/core/core_events.ts +149 -149
  92. package/lib/src/core/core_i18n.ts +377 -377
  93. package/lib/src/core/core_router.ts +221 -221
  94. package/lib/src/core/core_styles.ts +214 -214
  95. package/lib/src/core/core_svg.ts +550 -550
  96. package/lib/src/core/core_tools.ts +688 -673
  97. package/lib/src/demo/assets/radio.svg +3 -3
  98. package/lib/src/demo/index.html +11 -11
  99. package/lib/src/demo/main.scss +21 -21
  100. package/lib/src/demo/main.tsx +323 -323
  101. package/lib/src/types/scss.d.ts +4 -4
  102. package/lib/src/types/x4react.d.ts +8 -8
  103. package/lib/src/x4.scss +18 -18
  104. package/lib/src/x4.ts +31 -60
  105. package/lib/styles/x4.css +1 -1
  106. package/lib/types/x4js.d.ts +100 -49
  107. package/package.json +2 -3
  108. package/src/x4.ts +31 -60
  109. package/lib/output.d.ts +0 -1472
@@ -1,550 +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
- }
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 './component';
18
+ import { isUnitLess } from "./core_styles";
19
+ import { DOMEventHandler, GlobalDOMEvents, addEvent } from './core_dom';
20
+ import { isNumber, isString } from './core_tools';
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
+ }