x4js 1.6.5 → 2.0.2
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.
- package/README.md +3 -14
- package/lib/README.txt +3 -14
- package/lib/esm/x4.css +1 -0
- package/lib/esm/x4.js +1 -0
- package/lib/src/assets/house-light.svg +1 -0
- package/lib/src/assets/radio.svg +4 -0
- package/lib/src/components/base.scss +26 -0
- package/lib/src/components/boxes/boxes.module.scss +37 -0
- package/lib/src/components/boxes/boxes.ts +125 -0
- package/lib/src/components/btngroup/btngroup.module.scss +29 -0
- package/lib/src/components/btngroup/btngroup.ts +106 -0
- package/lib/src/components/button/button.module.scss +154 -0
- package/lib/src/components/button/button.ts +117 -0
- package/lib/src/components/calendar/calendar-check-sharp-light.svg +1 -0
- package/lib/src/components/calendar/calendar.module.scss +163 -0
- package/lib/src/{calendar.ts → components/calendar/calendar.ts} +81 -83
- package/lib/src/components/calendar/chevron-left-sharp-light.svg +1 -0
- package/lib/src/components/calendar/chevron-right-sharp-light.svg +1 -0
- package/lib/src/components/checkbox/check.svg +4 -0
- package/lib/src/components/checkbox/checkbox.module.scss +142 -0
- package/lib/src/components/checkbox/checkbox.ts +125 -0
- package/lib/src/components/colorinput/colorinput.module.scss +65 -0
- package/lib/src/components/colorinput/colorinput.ts +88 -0
- package/lib/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
- package/lib/src/components/colorpicker/colorpicker.module.scss +133 -0
- package/lib/src/components/colorpicker/colorpicker.ts +477 -0
- package/lib/src/components/combobox/combobox.module.scss +121 -0
- package/lib/src/components/combobox/combobox.ts +190 -0
- package/lib/src/components/combobox/updown.svg +4 -0
- package/lib/src/components/dialog/dialog.module.scss +71 -0
- package/lib/src/components/dialog/dialog.ts +91 -0
- package/lib/src/components/dialog/xmark-sharp-light.svg +1 -0
- package/lib/src/components/form/form.module.scss +34 -0
- package/lib/src/components/form/form.ts +36 -0
- package/lib/src/components/header/header.module.scss +40 -0
- package/lib/src/components/header/header.ts +124 -0
- package/lib/src/components/icon/icon.module.scss +30 -0
- package/lib/src/components/icon/icon.ts +134 -0
- package/lib/src/components/image/image.module.scss +21 -0
- package/lib/src/components/image/image.ts +67 -0
- package/lib/src/components/input/input.module.scss +69 -0
- package/lib/src/components/input/input.ts +274 -0
- package/lib/src/components/label/label.module.scss +52 -0
- package/lib/src/components/label/label.ts +55 -0
- package/lib/src/components/listbox/listbox.module.scss +103 -0
- package/lib/src/components/listbox/listbox.ts +427 -0
- package/lib/src/components/menu/caret-right-solid.svg +1 -0
- package/lib/src/components/menu/menu.module.scss +108 -0
- package/lib/src/components/menu/menu.ts +168 -0
- package/lib/src/components/messages/circle-exclamation.svg +1 -0
- package/lib/src/components/messages/messages.module.scss +47 -0
- package/lib/src/components/messages/messages.ts +64 -0
- package/lib/src/components/normalize.scss +386 -0
- package/lib/src/components/notification/circle-check-solid.svg +1 -0
- package/lib/src/components/notification/circle-exclamation-solid.svg +1 -0
- package/lib/src/components/notification/circle-notch-light.svg +1 -0
- package/lib/src/components/notification/notification.module.scss +82 -0
- package/lib/src/components/notification/notification.ts +108 -0
- package/lib/src/components/notification/xmark-sharp-light.svg +1 -0
- package/lib/src/components/panel/panel.module.scss +48 -0
- package/lib/src/components/panel/panel.ts +57 -0
- package/lib/src/components/popup/popup.module.scss +43 -0
- package/lib/src/components/popup/popup.ts +395 -0
- package/lib/src/components/progress/progress.module.scss +57 -0
- package/lib/src/components/progress/progress.ts +43 -0
- package/lib/src/components/rating/rating.module.scss +23 -0
- package/lib/src/components/rating/rating.ts +125 -0
- package/lib/src/components/rating/star-sharp-light.svg +1 -0
- package/lib/src/components/rating/star-sharp-solid.svg +1 -0
- package/lib/src/components/shared.scss +76 -0
- package/lib/src/components/sizers/sizer.module.scss +90 -0
- package/lib/src/components/sizers/sizer.ts +120 -0
- package/lib/src/components/slider/slider.module.scss +71 -0
- package/lib/src/components/slider/slider.ts +143 -0
- package/lib/src/components/switch/switch.module.scss +127 -0
- package/lib/src/components/switch/switch.ts +56 -0
- package/lib/src/components/tabs/tabs.module.scss +46 -0
- package/lib/src/components/tabs/tabs.ts +157 -0
- package/lib/src/components/textarea/textarea.module.scss +59 -0
- package/lib/src/components/textarea/textarea.ts +54 -0
- package/lib/src/components/textedit/textedit.module.scss +114 -0
- package/lib/src/components/textedit/textedit.ts +82 -0
- package/lib/src/components/themes.scss +77 -0
- package/lib/src/components/tooltips/circle-info-sharp-light.svg +1 -0
- package/lib/src/components/tooltips/tooltips.scss +51 -0
- package/lib/src/components/tooltips/tooltips.ts +103 -0
- package/lib/src/components/treeview/chevron-down-light.svg +1 -0
- package/lib/src/components/treeview/treeview.module.scss +116 -0
- package/lib/src/components/treeview/treeview.ts +403 -0
- package/lib/src/components/viewport/viewport.module.scss +25 -0
- package/lib/src/components/viewport/viewport.ts +38 -0
- package/lib/src/core/component.ts +979 -0
- package/lib/src/core/core_colors.ts +250 -0
- package/lib/src/{dom_events.ts → core/core_dom.ts} +195 -39
- package/lib/src/{drag_manager.ts → core/core_dragdrop.ts} +29 -44
- package/lib/src/core/core_element.ts +98 -0
- package/lib/src/core/core_events.ts +149 -0
- package/lib/src/{i18n.ts → core/core_i18n.ts} +43 -42
- package/lib/src/{router.ts → core/core_router.ts} +27 -40
- package/lib/src/core/core_styles.ts +215 -0
- package/lib/src/core/core_svg.ts +550 -0
- package/lib/src/core/core_tools.ts +673 -0
- package/lib/src/demo/assets/house-light.svg +1 -0
- package/lib/src/demo/assets/radio.svg +4 -0
- package/lib/src/demo/index.html +12 -0
- package/lib/src/demo/main.scss +21 -0
- package/lib/src/demo/main.tsx +323 -0
- package/lib/src/main.scss +21 -0
- package/lib/src/main.tsx +323 -0
- package/lib/src/x4.scss +19 -0
- package/lib/src/x4.ts +60 -0
- package/lib/types/x4.d.ts +26548 -0
- package/package.json +68 -59
- package/scripts/build.mjs +351 -0
- package/scripts/prepack.mjs +43 -0
- package/src/components/base.scss +26 -0
- package/src/components/boxes/boxes.module.scss +37 -0
- package/src/components/boxes/boxes.ts +125 -0
- package/src/components/btngroup/btngroup.module.scss +29 -0
- package/src/components/btngroup/btngroup.ts +106 -0
- package/src/components/button/button.module.scss +154 -0
- package/src/components/button/button.ts +117 -0
- package/src/components/calendar/calendar-check-sharp-light.svg +1 -0
- package/src/components/calendar/calendar.module.scss +163 -0
- package/src/components/calendar/calendar.ts +326 -0
- package/src/components/calendar/chevron-left-sharp-light.svg +1 -0
- package/src/components/calendar/chevron-right-sharp-light.svg +1 -0
- package/src/components/checkbox/check.svg +4 -0
- package/src/components/checkbox/checkbox.module.scss +142 -0
- package/src/components/checkbox/checkbox.ts +125 -0
- package/src/components/colorinput/colorinput.module.scss +65 -0
- package/src/components/colorinput/colorinput.ts +88 -0
- package/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
- package/src/components/colorpicker/colorpicker.module.scss +133 -0
- package/src/components/colorpicker/colorpicker.ts +477 -0
- package/src/components/combobox/combobox.module.scss +121 -0
- package/src/components/combobox/combobox.ts +190 -0
- package/src/components/combobox/updown.svg +4 -0
- package/src/components/dialog/dialog.module.scss +71 -0
- package/src/components/dialog/dialog.ts +91 -0
- package/src/components/dialog/xmark-sharp-light.svg +1 -0
- package/src/components/form/form.module.scss +34 -0
- package/src/components/form/form.ts +36 -0
- package/src/components/header/header.module.scss +40 -0
- package/src/components/header/header.ts +124 -0
- package/src/components/icon/icon.module.scss +30 -0
- package/src/components/icon/icon.ts +134 -0
- package/src/components/image/image.module.scss +21 -0
- package/src/components/image/image.ts +67 -0
- package/src/components/input/input.module.scss +69 -0
- package/src/components/input/input.ts +274 -0
- package/src/components/label/label.module.scss +52 -0
- package/src/components/label/label.ts +55 -0
- package/src/components/listbox/listbox.module.scss +103 -0
- package/src/components/listbox/listbox.ts +427 -0
- package/src/components/menu/caret-right-solid.svg +1 -0
- package/src/components/menu/menu.module.scss +108 -0
- package/src/components/menu/menu.ts +168 -0
- package/src/components/messages/circle-exclamation.svg +1 -0
- package/src/components/messages/messages.module.scss +47 -0
- package/src/components/messages/messages.ts +64 -0
- package/src/components/normalize.scss +386 -0
- package/src/components/notification/circle-check-solid.svg +1 -0
- package/src/components/notification/circle-exclamation-solid.svg +1 -0
- package/src/components/notification/circle-notch-light.svg +1 -0
- package/src/components/notification/notification.module.scss +82 -0
- package/src/components/notification/notification.ts +108 -0
- package/src/components/notification/xmark-sharp-light.svg +1 -0
- package/src/components/panel/panel.module.scss +48 -0
- package/src/components/panel/panel.ts +57 -0
- package/src/components/popup/popup.module.scss +43 -0
- package/src/components/popup/popup.ts +395 -0
- package/src/components/progress/progress.module.scss +57 -0
- package/src/components/progress/progress.ts +43 -0
- package/src/components/rating/rating.module.scss +23 -0
- package/src/components/rating/rating.ts +125 -0
- package/src/components/rating/star-sharp-light.svg +1 -0
- package/src/components/rating/star-sharp-solid.svg +1 -0
- package/src/components/shared.scss +76 -0
- package/src/components/sizers/sizer.module.scss +90 -0
- package/src/components/sizers/sizer.ts +120 -0
- package/src/components/slider/slider.module.scss +71 -0
- package/src/components/slider/slider.ts +143 -0
- package/src/components/switch/switch.module.scss +127 -0
- package/src/components/switch/switch.ts +56 -0
- package/src/components/tabs/tabs.module.scss +46 -0
- package/src/components/tabs/tabs.ts +157 -0
- package/src/components/textarea/textarea.module.scss +59 -0
- package/src/components/textarea/textarea.ts +54 -0
- package/src/components/textedit/textedit.module.scss +114 -0
- package/src/components/textedit/textedit.ts +82 -0
- package/src/components/themes.scss +77 -0
- package/src/components/tooltips/circle-info-sharp-light.svg +1 -0
- package/src/components/tooltips/tooltips.scss +51 -0
- package/src/components/tooltips/tooltips.ts +103 -0
- package/src/components/treeview/chevron-down-light.svg +1 -0
- package/src/components/treeview/treeview.module.scss +116 -0
- package/src/components/treeview/treeview.ts +403 -0
- package/src/components/viewport/viewport.module.scss +25 -0
- package/src/components/viewport/viewport.ts +38 -0
- package/src/core/component.ts +979 -0
- package/src/core/core_colors.ts +250 -0
- package/src/core/core_dom.ts +471 -0
- package/src/core/core_dragdrop.ts +201 -0
- package/src/core/core_element.ts +98 -0
- package/src/core/core_events.ts +149 -0
- package/src/core/core_i18n.ts +377 -0
- package/src/core/core_router.ts +221 -0
- package/src/core/core_styles.ts +215 -0
- package/src/core/core_svg.ts +550 -0
- package/src/core/core_tools.ts +673 -0
- package/src/demo/assets/house-light.svg +1 -0
- package/src/demo/assets/radio.svg +4 -0
- package/src/demo/index.html +12 -0
- package/src/demo/main.scss +21 -0
- package/src/demo/main.tsx +323 -0
- package/src/x4.scss +19 -0
- package/src/x4.ts +60 -0
- package/tsconfig.json +14 -0
- package/types/scss.d.ts +4 -0
- package/types/svg.d.ts +4 -0
- package/types/x4react.d.ts +9 -0
- package/lib/changelog.txt +0 -23
- package/lib/cjs/x4js.js +0 -39
- package/lib/cjs/x4js.js.map +0 -7
- package/lib/esm/x4js.mjs +0 -15972
- package/lib/esm/x4js.mjs.map +0 -7
- package/lib/licence.md +0 -21
- package/lib/src/MIT-license.md +0 -14
- package/lib/src/action.ts +0 -88
- package/lib/src/alpha.jpg +0 -0
- package/lib/src/app_sockets.ts +0 -81
- package/lib/src/application.ts +0 -262
- package/lib/src/autocomplete.ts +0 -232
- package/lib/src/base64.ts +0 -166
- package/lib/src/base_component.ts +0 -152
- package/lib/src/button.ts +0 -355
- package/lib/src/canvas.ts +0 -510
- package/lib/src/cardview.ts +0 -228
- package/lib/src/checkbox.ts +0 -188
- package/lib/src/color.ts +0 -752
- package/lib/src/colorpicker.ts +0 -1649
- package/lib/src/combobox.ts +0 -512
- package/lib/src/component.ts +0 -2367
- package/lib/src/copyright.txt +0 -27
- package/lib/src/datastore.ts +0 -1302
- package/lib/src/dialog.ts +0 -656
- package/lib/src/drawtext.ts +0 -355
- package/lib/src/fileupload.ts +0 -213
- package/lib/src/form.ts +0 -413
- package/lib/src/formatters.ts +0 -105
- package/lib/src/gridview.ts +0 -1185
- package/lib/src/icon.ts +0 -362
- package/lib/src/image.ts +0 -225
- package/lib/src/index.ts +0 -89
- package/lib/src/input.ts +0 -297
- package/lib/src/label.ts +0 -153
- package/lib/src/layout.ts +0 -442
- package/lib/src/link.ts +0 -86
- package/lib/src/listview.ts +0 -765
- package/lib/src/md5.ts +0 -438
- package/lib/src/menu.ts +0 -425
- package/lib/src/messagebox.ts +0 -224
- package/lib/src/panel.ts +0 -86
- package/lib/src/popup.ts +0 -494
- package/lib/src/property_editor.ts +0 -337
- package/lib/src/radiobtn.ts +0 -197
- package/lib/src/rating.ts +0 -135
- package/lib/src/request.ts +0 -300
- package/lib/src/settings.ts +0 -77
- package/lib/src/sidebarview.ts +0 -108
- package/lib/src/spreadsheet.ts +0 -1449
- package/lib/src/styles.ts +0 -343
- package/lib/src/svgcomponent.ts +0 -592
- package/lib/src/tabbar.ts +0 -151
- package/lib/src/tabview.ts +0 -110
- package/lib/src/textarea.ts +0 -235
- package/lib/src/textedit.ts +0 -533
- package/lib/src/toaster.ts +0 -80
- package/lib/src/tools.ts +0 -1473
- package/lib/src/tooltips.ts +0 -191
- package/lib/src/treeview.ts +0 -716
- package/lib/src/version.ts +0 -30
- package/lib/src/x4.less +0 -2242
- package/lib/src/x4dom.ts +0 -57
- package/lib/src/x4events.ts +0 -585
- package/lib/src/x4js.ts +0 -89
- package/lib/src/x4react.ts +0 -90
- package/lib/styles/x4.css +0 -1785
- package/lib/styles/x4.less +0 -2242
- package/lib/types/x4js.d.ts +0 -6728
- package/license.md +0 -21
|
@@ -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
|
+
}
|