vislite 1.2.0 → 1.2.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTHORS.txt +6 -6
- package/CHANGELOG +279 -274
- package/LICENSE +20 -20
- package/README.md +175 -175
- package/lib/Buffer/index.es.js +1 -1
- package/lib/Buffer/index.es.min.js +1 -1
- package/lib/Canvas/index.es.js +1 -1
- package/lib/Canvas/index.es.min.js +1 -1
- package/lib/Cardinal/index.es.js +1 -1
- package/lib/Cardinal/index.es.min.js +1 -1
- package/lib/Eoap/index.es.js +1 -1
- package/lib/Eoap/index.es.min.js +1 -1
- package/lib/Hermite/index.es.js +1 -1
- package/lib/Hermite/index.es.min.js +1 -1
- package/lib/Matrix4/index.es.js +1 -1
- package/lib/Matrix4/index.es.min.js +1 -1
- package/lib/Mercator/index.es.js +1 -1
- package/lib/Mercator/index.es.min.js +1 -1
- package/lib/RawCanvas/index.es.js +1 -1
- package/lib/RawCanvas/index.es.min.js +1 -1
- package/lib/SVG/index.es.js +1 -1
- package/lib/SVG/index.es.min.js +1 -1
- package/lib/Shader/index.es.js +1 -1
- package/lib/Shader/index.es.min.js +1 -1
- package/lib/Texture/index.es.js +1 -1
- package/lib/Texture/index.es.min.js +1 -1
- package/lib/TreeLayout/index.es.js +1 -1
- package/lib/TreeLayout/index.es.min.js +1 -1
- package/lib/animation/index.es.js +1 -1
- package/lib/animation/index.es.min.js +1 -1
- package/lib/assemble/index.es.js +1 -1
- package/lib/assemble/index.es.min.js +1 -1
- package/lib/getLoopColors/index.es.js +1 -1
- package/lib/getLoopColors/index.es.min.js +1 -1
- package/lib/getWebGLContext/index.es.js +1 -1
- package/lib/getWebGLContext/index.es.min.js +1 -1
- package/lib/index.umd.js +1 -1
- package/lib/index.umd.min.js +1 -1
- package/lib/initOption/index.es.js +1 -1
- package/lib/initOption/index.es.min.js +1 -1
- package/lib/mergeOption/index.es.js +1 -1
- package/lib/mergeOption/index.es.min.js +1 -1
- package/lib/move/index.es.js +1 -1
- package/lib/move/index.es.min.js +1 -1
- package/lib/rotate/index.es.js +1 -1
- package/lib/rotate/index.es.min.js +1 -1
- package/lib/ruler/index.es.js +1 -1
- package/lib/ruler/index.es.min.js +1 -1
- package/lib/scale/index.es.js +1 -1
- package/lib/scale/index.es.min.js +1 -1
- package/lib/throttle/index.es.js +1 -1
- package/lib/throttle/index.es.min.js +1 -1
- package/minialipay/ui-canvas/drawImage.js +35 -35
- package/minialipay/ui-canvas/index.acss +4 -4
- package/minialipay/ui-canvas/index.axml +3 -3
- package/minialipay/ui-canvas/index.d.ts +1 -1
- package/minialipay/ui-canvas/index.js +100 -100
- package/minialipay/ui-canvas/index.json +6 -6
- package/miniprogram/ui-canvas/drawImage.js +35 -35
- package/miniprogram/ui-canvas/index.js +117 -117
- package/miniprogram/ui-canvas/index.json +4 -4
- package/miniprogram/ui-canvas/index.wxml +4 -4
- package/miniprogram/ui-canvas/index.wxss +5 -5
- package/package/Buffer/index.ts +2 -2
- package/package/Canvas/index.ts +2 -2
- package/package/Cardinal/index.ts +2 -2
- package/package/Eoap/index.ts +2 -2
- package/package/Hermite/index.ts +2 -2
- package/package/Matrix4/index.ts +2 -2
- package/package/Mercator/index.ts +2 -2
- package/package/RawCanvas/index.ts +2 -2
- package/package/SVG/index.ts +2 -2
- package/package/Shader/index.ts +2 -2
- package/package/Texture/index.ts +2 -2
- package/package/TreeLayout/index.ts +2 -2
- package/package/animation/index.ts +2 -2
- package/package/assemble/index.ts +2 -2
- package/package/getLoopColors/index.ts +2 -2
- package/package/getWebGLContext/index.ts +40 -40
- package/package/index.ts +75 -75
- package/package/initOption/index.ts +2 -2
- package/package/mergeOption/index.ts +2 -2
- package/package/move/index.ts +2 -2
- package/package/rotate/index.ts +2 -2
- package/package/ruler/index.ts +2 -2
- package/package/scale/index.ts +2 -2
- package/package/throttle/index.ts +2 -2
- package/package.json +78 -78
- package/src/Canvas.ts +84 -84
- package/src/Eoap.ts +66 -66
- package/src/Matrix4/index.ts +84 -84
- package/src/Matrix4/move.ts +12 -12
- package/src/Matrix4/rotate.ts +15 -15
- package/src/Matrix4/scale.ts +11 -11
- package/src/Matrix4/transform.ts +64 -64
- package/src/Mercator.ts +27 -27
- package/src/SVG.ts +24 -24
- package/src/common/assemble.ts +22 -22
- package/src/common/canvas/arc.ts +51 -51
- package/src/common/canvas/config.ts +158 -158
- package/src/common/canvas/default.ts +61 -61
- package/src/common/canvas/gradient.ts +31 -31
- package/src/common/canvas/index.ts +188 -188
- package/src/common/canvas/painter.ts +430 -430
- package/src/common/canvas/texts.ts +18 -18
- package/src/common/option.ts +29 -29
- package/src/common/setStyle.ts +5 -5
- package/src/common/svg/config.ts +194 -194
- package/src/common/svg/default.ts +26 -26
- package/src/common/svg/gradient.ts +53 -53
- package/src/common/svg/index.ts +332 -332
- package/src/common/svg/tool.ts +42 -42
- package/src/common/tree/index.ts +25 -25
- package/src/common/tree/toInnerTree.ts +59 -59
- package/src/common/tree/toPlainTree.ts +132 -132
- package/src/common/type.ts +26 -26
- package/src/common/webgl/buffer.ts +79 -79
- package/src/common/webgl/getWebGLContext.ts +45 -45
- package/src/common/webgl/shader.ts +75 -75
- package/src/common/webgl/texture.ts +97 -97
- package/src/getLoopColors.ts +42 -42
- package/src/interpolation/Cardinal.ts +110 -110
- package/src/interpolation/Hermite.ts +65 -65
- package/src/layout/TreeLayout.ts +188 -188
- package/src/move.ts +7 -7
- package/src/rotate.ts +7 -7
- package/src/ruler.ts +209 -209
- package/src/scale.ts +6 -6
- package/types/Buffer.d.ts +23 -23
- package/types/Canvas.d.ts +344 -344
- package/types/CanvasConfig.d.ts +116 -116
- package/types/CanvasOption.d.ts +8 -8
- package/types/CanvasOpts.d.ts +9 -9
- package/types/Cardinal.d.ts +13 -13
- package/types/Gradient.d.ts +14 -14
- package/types/Hermite.d.ts +18 -18
- package/types/Map.d.ts +9 -9
- package/types/Matrix4.d.ts +47 -47
- package/types/SVG.d.ts +243 -243
- package/types/SVGConfig.d.ts +89 -89
- package/types/Shader.d.ts +16 -16
- package/types/Texture.d.ts +16 -16
- package/types/Tree.d.ts +69 -69
- package/types/TreeConfig.d.ts +36 -36
- package/types/TreeLayout.d.ts +54 -54
- package/types/TreeOption.d.ts +48 -48
- package/types/animation.d.ts +5 -5
- package/types/assemble.d.ts +5 -5
- package/types/getLoopColors.d.ts +5 -5
- package/types/getWebGLContext.d.ts +7 -7
- package/types/index.d.ts +165 -160
- package/types/move.d.ts +5 -5
- package/types/option.d.ts +12 -12
- package/types/painterConfig.d.ts +4 -4
- package/types/rotate.d.ts +5 -5
- package/types/ruler.d.ts +10 -10
- package/types/scale.d.ts +5 -5
- package/types/throttle.d.ts +5 -5
- package/types/ui-canvas.d.ts +4 -4
- package/types/uni-canvas.d.ts +3 -3
- package/uni-app/drawImage.js +19 -19
- package/uni-app/ui-canvas.vue +284 -284
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export default function (painter: CanvasRenderingContext2D, contents: string, width: number, height: number, doback: (content: string, top: number) => void) {
|
|
2
|
-
|
|
3
|
-
let lineNumber = 0, content = ""
|
|
4
|
-
for (let i = 0; i < contents.length; i++) {
|
|
5
|
-
if (painter.measureText(content + contents[i]).width > width || /\n$/.test(content)) {
|
|
6
|
-
lineNumber += 1
|
|
7
|
-
doback(content, (lineNumber - 0.5) * height)
|
|
8
|
-
|
|
9
|
-
content = contents[i]
|
|
10
|
-
} else if (i == contents.length - 1) {
|
|
11
|
-
lineNumber += 1
|
|
12
|
-
doback(content + contents[i], (lineNumber - 0.5) * height)
|
|
13
|
-
} else {
|
|
14
|
-
content += contents[i]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
return lineNumber * height
|
|
1
|
+
export default function (painter: CanvasRenderingContext2D, contents: string, width: number, height: number, doback: (content: string, top: number) => void) {
|
|
2
|
+
|
|
3
|
+
let lineNumber = 0, content = ""
|
|
4
|
+
for (let i = 0; i < contents.length; i++) {
|
|
5
|
+
if (painter.measureText(content + contents[i]).width > width || /\n$/.test(content)) {
|
|
6
|
+
lineNumber += 1
|
|
7
|
+
doback(content, (lineNumber - 0.5) * height)
|
|
8
|
+
|
|
9
|
+
content = contents[i]
|
|
10
|
+
} else if (i == contents.length - 1) {
|
|
11
|
+
lineNumber += 1
|
|
12
|
+
doback(content + contents[i], (lineNumber - 0.5) * height)
|
|
13
|
+
} else {
|
|
14
|
+
content += contents[i]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return lineNumber * height
|
|
19
19
|
}
|
package/src/common/option.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import { isPlainObject } from "./type"
|
|
2
|
-
|
|
3
|
-
// 初始化配置
|
|
4
|
-
export function initOption(setOption: any, defaultOption: any) {
|
|
5
|
-
for (const key in setOption) {
|
|
6
|
-
defaultOption[key] = setOption[key]
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
return defaultOption
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
// 合并配置
|
|
13
|
-
export function mergeOption(oldOption: any, newOption: any) {
|
|
14
|
-
(function doit(oldOption, newOption) {
|
|
15
|
-
|
|
16
|
-
for (const key in newOption) {
|
|
17
|
-
const value = newOption[key]
|
|
18
|
-
|
|
19
|
-
if (isPlainObject(value)) {
|
|
20
|
-
if (!oldOption[key]) oldOption[key] = {}
|
|
21
|
-
|
|
22
|
-
doit(oldOption[key], newOption[key])
|
|
23
|
-
} else {
|
|
24
|
-
oldOption[key] = value
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
})(oldOption, newOption)
|
|
1
|
+
import { isPlainObject } from "./type"
|
|
2
|
+
|
|
3
|
+
// 初始化配置
|
|
4
|
+
export function initOption(setOption: any, defaultOption: any) {
|
|
5
|
+
for (const key in setOption) {
|
|
6
|
+
defaultOption[key] = setOption[key]
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
return defaultOption
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// 合并配置
|
|
13
|
+
export function mergeOption(oldOption: any, newOption: any) {
|
|
14
|
+
(function doit(oldOption, newOption) {
|
|
15
|
+
|
|
16
|
+
for (const key in newOption) {
|
|
17
|
+
const value = newOption[key]
|
|
18
|
+
|
|
19
|
+
if (isPlainObject(value)) {
|
|
20
|
+
if (!oldOption[key]) oldOption[key] = {}
|
|
21
|
+
|
|
22
|
+
doit(oldOption[key], newOption[key])
|
|
23
|
+
} else {
|
|
24
|
+
oldOption[key] = value
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
})(oldOption, newOption)
|
|
30
30
|
}
|
package/src/common/setStyle.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
// 修改样式
|
|
2
|
-
export default function (el: HTMLElement | SVGElement, styles: any) {
|
|
3
|
-
for (const key in styles) {
|
|
4
|
-
el.style[key as any] = styles[key]
|
|
5
|
-
}
|
|
1
|
+
// 修改样式
|
|
2
|
+
export default function (el: HTMLElement | SVGElement, styles: any) {
|
|
3
|
+
for (const key in styles) {
|
|
4
|
+
el.style[key as any] = styles[key]
|
|
5
|
+
}
|
|
6
6
|
}
|
package/src/common/svg/config.ts
CHANGED
|
@@ -1,194 +1,194 @@
|
|
|
1
|
-
import type SVGConfigType from "../../../types/SVGConfig"
|
|
2
|
-
|
|
3
|
-
import { setAttribute } from "./tool"
|
|
4
|
-
import setStyle from "../setStyle"
|
|
5
|
-
import arc from "../canvas/arc"
|
|
6
|
-
import { toNode } from "./tool"
|
|
7
|
-
|
|
8
|
-
export const initDefs = (el: SVGElement) => {
|
|
9
|
-
const defs = el.getElementsByTagName('defs')
|
|
10
|
-
if (defs.length <= 0) {
|
|
11
|
-
const newDefs = toNode("defs")
|
|
12
|
-
el.appendChild(newDefs)
|
|
13
|
-
return newDefs
|
|
14
|
-
} else {
|
|
15
|
-
return defs[0]
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
// 文字统一设置方法
|
|
20
|
-
export const initText = (
|
|
21
|
-
el: SVGElement,
|
|
22
|
-
config: SVGConfigType,
|
|
23
|
-
x: number,
|
|
24
|
-
y: number,
|
|
25
|
-
deg: number
|
|
26
|
-
) => {
|
|
27
|
-
if (el.nodeName.toLowerCase() !== "text") throw new Error("Need a <text> !")
|
|
28
|
-
|
|
29
|
-
// 垂直对齐采用dy实现
|
|
30
|
-
setAttribute(
|
|
31
|
-
el,
|
|
32
|
-
"dy",
|
|
33
|
-
({
|
|
34
|
-
top: (config["fontSize"] as number) * 0.5,
|
|
35
|
-
middle: 0,
|
|
36
|
-
bottom: -(config["fontSize"] as number) * 0.5,
|
|
37
|
-
} as {
|
|
38
|
-
[key: string]: number
|
|
39
|
-
})[config.textBaseline as string]
|
|
40
|
-
)
|
|
41
|
-
|
|
42
|
-
setStyle(el, {
|
|
43
|
-
// 文字对齐方式
|
|
44
|
-
"text-anchor": ({
|
|
45
|
-
left: "start",
|
|
46
|
-
right: "end",
|
|
47
|
-
center: "middle",
|
|
48
|
-
} as {
|
|
49
|
-
[key: string]: string
|
|
50
|
-
})[config.textAlign as string],
|
|
51
|
-
"dominant-baseline": "central",
|
|
52
|
-
|
|
53
|
-
// 文字大小和字体设置
|
|
54
|
-
"font-size": config["fontSize"] + "px",
|
|
55
|
-
"font-family": config["fontFamily"],
|
|
56
|
-
})
|
|
57
|
-
|
|
58
|
-
// 位置
|
|
59
|
-
setAttribute(el, "x", x)
|
|
60
|
-
setAttribute(el, "y", y)
|
|
61
|
-
|
|
62
|
-
// 旋转
|
|
63
|
-
if (typeof deg == "number") {
|
|
64
|
-
deg = deg % 360
|
|
65
|
-
setAttribute(el, "transform", "rotate(" + deg + "," + x + "," + y + ")")
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// 画圆统一设置方法
|
|
70
|
-
export const initCircle = (el: SVGElement, cx: number, cy: number, r: number) => {
|
|
71
|
-
if (el.nodeName.toLowerCase() !== "circle")
|
|
72
|
-
throw new Error("Need a <circle> !")
|
|
73
|
-
setAttribute(el, "cx", cx)
|
|
74
|
-
setAttribute(el, "cy", cy)
|
|
75
|
-
setAttribute(el, "r", r)
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
// 路径统一设置方法
|
|
79
|
-
export const initPath = (el: SVGElement, path: string, config: SVGConfigType) => {
|
|
80
|
-
if (el.nodeName.toLowerCase() !== "path") throw new Error("Need a <path> !")
|
|
81
|
-
setAttribute(el, "d", path)
|
|
82
|
-
setAttribute(el, "stroke-dasharray", (config.lineDash as Array<number>).join(','))
|
|
83
|
-
setAttribute(el, "stroke-width", config.lineWidth + "")
|
|
84
|
-
setAttribute(el, "stroke-linecap", config.lineCap + "")
|
|
85
|
-
setAttribute(el, "stroke-linejoin", config.lineJoin + "")
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
// 画矩形统一设置方法
|
|
89
|
-
export const initRect = (
|
|
90
|
-
el: SVGElement,
|
|
91
|
-
x: number,
|
|
92
|
-
y: number,
|
|
93
|
-
width: number,
|
|
94
|
-
height: number
|
|
95
|
-
) => {
|
|
96
|
-
if (el.nodeName.toLowerCase() !== "rect") throw new Error("Need a <rect> !")
|
|
97
|
-
|
|
98
|
-
// 由于高和宽不可以是负数,校对一下
|
|
99
|
-
if (height < 0) {
|
|
100
|
-
height *= -1
|
|
101
|
-
y -= height
|
|
102
|
-
}
|
|
103
|
-
if (width < 0) {
|
|
104
|
-
width *= -1
|
|
105
|
-
x -= width
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
setAttribute(el, "x", x)
|
|
109
|
-
setAttribute(el, "y", y)
|
|
110
|
-
setAttribute(el, "width", width)
|
|
111
|
-
setAttribute(el, "height", height)
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
// 画弧统一设置方法
|
|
115
|
-
export const initArc = (
|
|
116
|
-
el: SVGElement,
|
|
117
|
-
config: SVGConfigType,
|
|
118
|
-
cx: number,
|
|
119
|
-
cy: number,
|
|
120
|
-
r1: number,
|
|
121
|
-
r2: number,
|
|
122
|
-
beginDeg: number,
|
|
123
|
-
deg: number
|
|
124
|
-
) => {
|
|
125
|
-
if (el.nodeName.toLowerCase() !== "path") throw new Error("Need a <path> !")
|
|
126
|
-
|
|
127
|
-
beginDeg = (beginDeg / 180) * Math.PI
|
|
128
|
-
deg = (deg / 180) * Math.PI
|
|
129
|
-
|
|
130
|
-
beginDeg = beginDeg % (Math.PI * 2)
|
|
131
|
-
|
|
132
|
-
if (r1 > r2) {
|
|
133
|
-
const temp = r1
|
|
134
|
-
r1 = r2
|
|
135
|
-
r2 = temp
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
// 当|deg|>=2π的时候都认为是一个圆环
|
|
139
|
-
if (deg >= Math.PI * 1.999999 || deg <= -Math.PI * 1.999999) {
|
|
140
|
-
deg = Math.PI * 1.999999
|
|
141
|
-
} else {
|
|
142
|
-
deg = deg % (Math.PI * 2)
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
arc(
|
|
146
|
-
beginDeg,
|
|
147
|
-
deg,
|
|
148
|
-
cx,
|
|
149
|
-
cy,
|
|
150
|
-
r1,
|
|
151
|
-
r2,
|
|
152
|
-
function (
|
|
153
|
-
beginA: number,
|
|
154
|
-
endA: number,
|
|
155
|
-
begInnerX: number,
|
|
156
|
-
begInnerY: number,
|
|
157
|
-
begOuterX: number,
|
|
158
|
-
begOuterY: number,
|
|
159
|
-
endInnerX: number,
|
|
160
|
-
endInnerY: number,
|
|
161
|
-
endOuterX: number,
|
|
162
|
-
endOuterY: number,
|
|
163
|
-
r: number
|
|
164
|
-
) {
|
|
165
|
-
const f = endA - beginA > Math.PI ? 1 : 0
|
|
166
|
-
let d = "M" + begInnerX + " " + begInnerY
|
|
167
|
-
if (r < 0) r = -r
|
|
168
|
-
|
|
169
|
-
d +=
|
|
170
|
-
// 横半径 竖半径 x轴偏移角度 0小弧/1大弧 0逆时针/1顺时针 终点x 终点y
|
|
171
|
-
"A" + r1 + " " + r1 + " 0 " + f + " 1 " + endInnerX + " " + endInnerY
|
|
172
|
-
|
|
173
|
-
// 结尾
|
|
174
|
-
if (config.arcEndCap == "round")
|
|
175
|
-
d += "A" + r + " " + r + " " + " 0 1 0 " + endOuterX + " " + endOuterY
|
|
176
|
-
else if (config.arcEndCap == "-round")
|
|
177
|
-
d += "A" + r + " " + r + " " + " 0 1 1 " + endOuterX + " " + endOuterY
|
|
178
|
-
else d += "L" + endOuterX + " " + endOuterY
|
|
179
|
-
d +=
|
|
180
|
-
"A" + r2 + " " + r2 + " 0 " + f + " 0 " + begOuterX + " " + begOuterY
|
|
181
|
-
|
|
182
|
-
// 开头
|
|
183
|
-
if (config.arcStartCap == "round")
|
|
184
|
-
d += "A" + r + " " + r + " " + " 0 1 0 " + begInnerX + " " + begInnerY
|
|
185
|
-
else if (config.arcStartCap == "-round")
|
|
186
|
-
d += "A" + r + " " + r + " " + " 0 1 1 " + begInnerX + " " + begInnerY
|
|
187
|
-
else d += "L" + begInnerX + " " + begInnerY
|
|
188
|
-
|
|
189
|
-
if (config.arcStartCap == "butt") d += "Z"
|
|
190
|
-
|
|
191
|
-
setAttribute(el, "d", d)
|
|
192
|
-
}
|
|
193
|
-
)
|
|
194
|
-
}
|
|
1
|
+
import type SVGConfigType from "../../../types/SVGConfig"
|
|
2
|
+
|
|
3
|
+
import { setAttribute } from "./tool"
|
|
4
|
+
import setStyle from "../setStyle"
|
|
5
|
+
import arc from "../canvas/arc"
|
|
6
|
+
import { toNode } from "./tool"
|
|
7
|
+
|
|
8
|
+
export const initDefs = (el: SVGElement) => {
|
|
9
|
+
const defs = el.getElementsByTagName('defs')
|
|
10
|
+
if (defs.length <= 0) {
|
|
11
|
+
const newDefs = toNode("defs")
|
|
12
|
+
el.appendChild(newDefs)
|
|
13
|
+
return newDefs
|
|
14
|
+
} else {
|
|
15
|
+
return defs[0]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// 文字统一设置方法
|
|
20
|
+
export const initText = (
|
|
21
|
+
el: SVGElement,
|
|
22
|
+
config: SVGConfigType,
|
|
23
|
+
x: number,
|
|
24
|
+
y: number,
|
|
25
|
+
deg: number
|
|
26
|
+
) => {
|
|
27
|
+
if (el.nodeName.toLowerCase() !== "text") throw new Error("Need a <text> !")
|
|
28
|
+
|
|
29
|
+
// 垂直对齐采用dy实现
|
|
30
|
+
setAttribute(
|
|
31
|
+
el,
|
|
32
|
+
"dy",
|
|
33
|
+
({
|
|
34
|
+
top: (config["fontSize"] as number) * 0.5,
|
|
35
|
+
middle: 0,
|
|
36
|
+
bottom: -(config["fontSize"] as number) * 0.5,
|
|
37
|
+
} as {
|
|
38
|
+
[key: string]: number
|
|
39
|
+
})[config.textBaseline as string]
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
setStyle(el, {
|
|
43
|
+
// 文字对齐方式
|
|
44
|
+
"text-anchor": ({
|
|
45
|
+
left: "start",
|
|
46
|
+
right: "end",
|
|
47
|
+
center: "middle",
|
|
48
|
+
} as {
|
|
49
|
+
[key: string]: string
|
|
50
|
+
})[config.textAlign as string],
|
|
51
|
+
"dominant-baseline": "central",
|
|
52
|
+
|
|
53
|
+
// 文字大小和字体设置
|
|
54
|
+
"font-size": config["fontSize"] + "px",
|
|
55
|
+
"font-family": config["fontFamily"],
|
|
56
|
+
})
|
|
57
|
+
|
|
58
|
+
// 位置
|
|
59
|
+
setAttribute(el, "x", x)
|
|
60
|
+
setAttribute(el, "y", y)
|
|
61
|
+
|
|
62
|
+
// 旋转
|
|
63
|
+
if (typeof deg == "number") {
|
|
64
|
+
deg = deg % 360
|
|
65
|
+
setAttribute(el, "transform", "rotate(" + deg + "," + x + "," + y + ")")
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// 画圆统一设置方法
|
|
70
|
+
export const initCircle = (el: SVGElement, cx: number, cy: number, r: number) => {
|
|
71
|
+
if (el.nodeName.toLowerCase() !== "circle")
|
|
72
|
+
throw new Error("Need a <circle> !")
|
|
73
|
+
setAttribute(el, "cx", cx)
|
|
74
|
+
setAttribute(el, "cy", cy)
|
|
75
|
+
setAttribute(el, "r", r)
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// 路径统一设置方法
|
|
79
|
+
export const initPath = (el: SVGElement, path: string, config: SVGConfigType) => {
|
|
80
|
+
if (el.nodeName.toLowerCase() !== "path") throw new Error("Need a <path> !")
|
|
81
|
+
setAttribute(el, "d", path)
|
|
82
|
+
setAttribute(el, "stroke-dasharray", (config.lineDash as Array<number>).join(','))
|
|
83
|
+
setAttribute(el, "stroke-width", config.lineWidth + "")
|
|
84
|
+
setAttribute(el, "stroke-linecap", config.lineCap + "")
|
|
85
|
+
setAttribute(el, "stroke-linejoin", config.lineJoin + "")
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// 画矩形统一设置方法
|
|
89
|
+
export const initRect = (
|
|
90
|
+
el: SVGElement,
|
|
91
|
+
x: number,
|
|
92
|
+
y: number,
|
|
93
|
+
width: number,
|
|
94
|
+
height: number
|
|
95
|
+
) => {
|
|
96
|
+
if (el.nodeName.toLowerCase() !== "rect") throw new Error("Need a <rect> !")
|
|
97
|
+
|
|
98
|
+
// 由于高和宽不可以是负数,校对一下
|
|
99
|
+
if (height < 0) {
|
|
100
|
+
height *= -1
|
|
101
|
+
y -= height
|
|
102
|
+
}
|
|
103
|
+
if (width < 0) {
|
|
104
|
+
width *= -1
|
|
105
|
+
x -= width
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
setAttribute(el, "x", x)
|
|
109
|
+
setAttribute(el, "y", y)
|
|
110
|
+
setAttribute(el, "width", width)
|
|
111
|
+
setAttribute(el, "height", height)
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// 画弧统一设置方法
|
|
115
|
+
export const initArc = (
|
|
116
|
+
el: SVGElement,
|
|
117
|
+
config: SVGConfigType,
|
|
118
|
+
cx: number,
|
|
119
|
+
cy: number,
|
|
120
|
+
r1: number,
|
|
121
|
+
r2: number,
|
|
122
|
+
beginDeg: number,
|
|
123
|
+
deg: number
|
|
124
|
+
) => {
|
|
125
|
+
if (el.nodeName.toLowerCase() !== "path") throw new Error("Need a <path> !")
|
|
126
|
+
|
|
127
|
+
beginDeg = (beginDeg / 180) * Math.PI
|
|
128
|
+
deg = (deg / 180) * Math.PI
|
|
129
|
+
|
|
130
|
+
beginDeg = beginDeg % (Math.PI * 2)
|
|
131
|
+
|
|
132
|
+
if (r1 > r2) {
|
|
133
|
+
const temp = r1
|
|
134
|
+
r1 = r2
|
|
135
|
+
r2 = temp
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// 当|deg|>=2π的时候都认为是一个圆环
|
|
139
|
+
if (deg >= Math.PI * 1.999999 || deg <= -Math.PI * 1.999999) {
|
|
140
|
+
deg = Math.PI * 1.999999
|
|
141
|
+
} else {
|
|
142
|
+
deg = deg % (Math.PI * 2)
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
arc(
|
|
146
|
+
beginDeg,
|
|
147
|
+
deg,
|
|
148
|
+
cx,
|
|
149
|
+
cy,
|
|
150
|
+
r1,
|
|
151
|
+
r2,
|
|
152
|
+
function (
|
|
153
|
+
beginA: number,
|
|
154
|
+
endA: number,
|
|
155
|
+
begInnerX: number,
|
|
156
|
+
begInnerY: number,
|
|
157
|
+
begOuterX: number,
|
|
158
|
+
begOuterY: number,
|
|
159
|
+
endInnerX: number,
|
|
160
|
+
endInnerY: number,
|
|
161
|
+
endOuterX: number,
|
|
162
|
+
endOuterY: number,
|
|
163
|
+
r: number
|
|
164
|
+
) {
|
|
165
|
+
const f = endA - beginA > Math.PI ? 1 : 0
|
|
166
|
+
let d = "M" + begInnerX + " " + begInnerY
|
|
167
|
+
if (r < 0) r = -r
|
|
168
|
+
|
|
169
|
+
d +=
|
|
170
|
+
// 横半径 竖半径 x轴偏移角度 0小弧/1大弧 0逆时针/1顺时针 终点x 终点y
|
|
171
|
+
"A" + r1 + " " + r1 + " 0 " + f + " 1 " + endInnerX + " " + endInnerY
|
|
172
|
+
|
|
173
|
+
// 结尾
|
|
174
|
+
if (config.arcEndCap == "round")
|
|
175
|
+
d += "A" + r + " " + r + " " + " 0 1 0 " + endOuterX + " " + endOuterY
|
|
176
|
+
else if (config.arcEndCap == "-round")
|
|
177
|
+
d += "A" + r + " " + r + " " + " 0 1 1 " + endOuterX + " " + endOuterY
|
|
178
|
+
else d += "L" + endOuterX + " " + endOuterY
|
|
179
|
+
d +=
|
|
180
|
+
"A" + r2 + " " + r2 + " 0 " + f + " 0 " + begOuterX + " " + begOuterY
|
|
181
|
+
|
|
182
|
+
// 开头
|
|
183
|
+
if (config.arcStartCap == "round")
|
|
184
|
+
d += "A" + r + " " + r + " " + " 0 1 0 " + begInnerX + " " + begInnerY
|
|
185
|
+
else if (config.arcStartCap == "-round")
|
|
186
|
+
d += "A" + r + " " + r + " " + " 0 1 1 " + begInnerX + " " + begInnerY
|
|
187
|
+
else d += "L" + begInnerX + " " + begInnerY
|
|
188
|
+
|
|
189
|
+
if (config.arcStartCap == "butt") d += "Z"
|
|
190
|
+
|
|
191
|
+
setAttribute(el, "d", d)
|
|
192
|
+
}
|
|
193
|
+
)
|
|
194
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import type { arcCapType, textAlignType, textBaselineType, lineCapType, lineJoinType } from "../../../types/painterConfig"
|
|
2
|
-
|
|
3
|
-
export default function () {
|
|
4
|
-
return {
|
|
5
|
-
// 颜色
|
|
6
|
-
fillStyle: "#000",
|
|
7
|
-
strokeStyle: "#000",
|
|
8
|
-
|
|
9
|
-
// 文字对齐方式
|
|
10
|
-
textAlign: <textAlignType>"left",
|
|
11
|
-
textBaseline: <textBaselineType>"middle",
|
|
12
|
-
|
|
13
|
-
// 文字
|
|
14
|
-
"fontSize": 16,
|
|
15
|
-
"fontFamily": "sans-serif",
|
|
16
|
-
|
|
17
|
-
// arc二端闭合方式['butt':直线闭合,'round':圆帽闭合]
|
|
18
|
-
"arcStartCap": <arcCapType>"butt",
|
|
19
|
-
"arcEndCap": <arcCapType>"butt",
|
|
20
|
-
|
|
21
|
-
// 线条
|
|
22
|
-
lineDash: [],
|
|
23
|
-
lineWidth: 1,
|
|
24
|
-
lineCap: <lineCapType>"butt",
|
|
25
|
-
lineJoin: <lineJoinType>"miter"
|
|
26
|
-
}
|
|
1
|
+
import type { arcCapType, textAlignType, textBaselineType, lineCapType, lineJoinType } from "../../../types/painterConfig"
|
|
2
|
+
|
|
3
|
+
export default function () {
|
|
4
|
+
return {
|
|
5
|
+
// 颜色
|
|
6
|
+
fillStyle: "#000",
|
|
7
|
+
strokeStyle: "#000",
|
|
8
|
+
|
|
9
|
+
// 文字对齐方式
|
|
10
|
+
textAlign: <textAlignType>"left",
|
|
11
|
+
textBaseline: <textBaselineType>"middle",
|
|
12
|
+
|
|
13
|
+
// 文字
|
|
14
|
+
"fontSize": 16,
|
|
15
|
+
"fontFamily": "sans-serif",
|
|
16
|
+
|
|
17
|
+
// arc二端闭合方式['butt':直线闭合,'round':圆帽闭合]
|
|
18
|
+
"arcStartCap": <arcCapType>"butt",
|
|
19
|
+
"arcEndCap": <arcCapType>"butt",
|
|
20
|
+
|
|
21
|
+
// 线条
|
|
22
|
+
lineDash: [],
|
|
23
|
+
lineWidth: 1,
|
|
24
|
+
lineCap: <lineCapType>"butt",
|
|
25
|
+
lineJoin: <lineJoinType>"miter"
|
|
26
|
+
}
|
|
27
27
|
}
|
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
import { initDefs } from './config'
|
|
2
|
-
import { toNode, setAttribute } from "./tool"
|
|
3
|
-
|
|
4
|
-
let enhanceGradient = function (gradient: SVGElement, gradientId: string) {
|
|
5
|
-
const enhanceGradient = {
|
|
6
|
-
"value": function () {
|
|
7
|
-
return "url(#" + gradientId + ")";
|
|
8
|
-
},
|
|
9
|
-
"setColor": function (stop: number, color: string) {
|
|
10
|
-
|
|
11
|
-
const stopEl = toNode("stop")
|
|
12
|
-
gradient.appendChild(stopEl)
|
|
13
|
-
setAttribute(stopEl, "offset", (stop * 100) + "%")
|
|
14
|
-
setAttribute(stopEl, "style", "stop-color:" + color + ";")
|
|
15
|
-
|
|
16
|
-
return enhanceGradient
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
return enhanceGradient
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// 线性渐变
|
|
23
|
-
export const linearGradient = function (el: SVGElement, x0: number, y0: number, x1: number, y1: number) {
|
|
24
|
-
|
|
25
|
-
const defs = initDefs(el)
|
|
26
|
-
const gradientId = "vislite-lg-" + new Date().valueOf() + "-" + Math.random()
|
|
27
|
-
|
|
28
|
-
const linearGradient = toNode("linearGradient")
|
|
29
|
-
defs.appendChild(linearGradient)
|
|
30
|
-
setAttribute(linearGradient, "id", gradientId)
|
|
31
|
-
setAttribute(linearGradient, "x1", x0 + "%")
|
|
32
|
-
setAttribute(linearGradient, "y1", y0 + "%")
|
|
33
|
-
setAttribute(linearGradient, "x2", x1 + "%")
|
|
34
|
-
setAttribute(linearGradient, "y2", y1 + "%")
|
|
35
|
-
|
|
36
|
-
return enhanceGradient(linearGradient, gradientId)
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
// 环形渐变
|
|
40
|
-
export const radialGradient = function (el: SVGElement, cx: number, cy: number, r: number) {
|
|
41
|
-
|
|
42
|
-
const defs = initDefs(el)
|
|
43
|
-
const gradientId = "vislite-rg-" + new Date().valueOf() + "-" + Math.random()
|
|
44
|
-
|
|
45
|
-
const radialGradient = toNode("radialGradient")
|
|
46
|
-
defs.appendChild(radialGradient)
|
|
47
|
-
setAttribute(radialGradient, "id", gradientId)
|
|
48
|
-
setAttribute(radialGradient, "cx", cx + "%")
|
|
49
|
-
setAttribute(radialGradient, "cy", cy + "%")
|
|
50
|
-
setAttribute(radialGradient, "r", r + "%")
|
|
51
|
-
|
|
52
|
-
return enhanceGradient(radialGradient, gradientId)
|
|
53
|
-
}
|
|
1
|
+
import { initDefs } from './config'
|
|
2
|
+
import { toNode, setAttribute } from "./tool"
|
|
3
|
+
|
|
4
|
+
let enhanceGradient = function (gradient: SVGElement, gradientId: string) {
|
|
5
|
+
const enhanceGradient = {
|
|
6
|
+
"value": function () {
|
|
7
|
+
return "url(#" + gradientId + ")";
|
|
8
|
+
},
|
|
9
|
+
"setColor": function (stop: number, color: string) {
|
|
10
|
+
|
|
11
|
+
const stopEl = toNode("stop")
|
|
12
|
+
gradient.appendChild(stopEl)
|
|
13
|
+
setAttribute(stopEl, "offset", (stop * 100) + "%")
|
|
14
|
+
setAttribute(stopEl, "style", "stop-color:" + color + ";")
|
|
15
|
+
|
|
16
|
+
return enhanceGradient
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
return enhanceGradient
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// 线性渐变
|
|
23
|
+
export const linearGradient = function (el: SVGElement, x0: number, y0: number, x1: number, y1: number) {
|
|
24
|
+
|
|
25
|
+
const defs = initDefs(el)
|
|
26
|
+
const gradientId = "vislite-lg-" + new Date().valueOf() + "-" + Math.random()
|
|
27
|
+
|
|
28
|
+
const linearGradient = toNode("linearGradient")
|
|
29
|
+
defs.appendChild(linearGradient)
|
|
30
|
+
setAttribute(linearGradient, "id", gradientId)
|
|
31
|
+
setAttribute(linearGradient, "x1", x0 + "%")
|
|
32
|
+
setAttribute(linearGradient, "y1", y0 + "%")
|
|
33
|
+
setAttribute(linearGradient, "x2", x1 + "%")
|
|
34
|
+
setAttribute(linearGradient, "y2", y1 + "%")
|
|
35
|
+
|
|
36
|
+
return enhanceGradient(linearGradient, gradientId)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// 环形渐变
|
|
40
|
+
export const radialGradient = function (el: SVGElement, cx: number, cy: number, r: number) {
|
|
41
|
+
|
|
42
|
+
const defs = initDefs(el)
|
|
43
|
+
const gradientId = "vislite-rg-" + new Date().valueOf() + "-" + Math.random()
|
|
44
|
+
|
|
45
|
+
const radialGradient = toNode("radialGradient")
|
|
46
|
+
defs.appendChild(radialGradient)
|
|
47
|
+
setAttribute(radialGradient, "id", gradientId)
|
|
48
|
+
setAttribute(radialGradient, "cx", cx + "%")
|
|
49
|
+
setAttribute(radialGradient, "cy", cy + "%")
|
|
50
|
+
setAttribute(radialGradient, "r", r + "%")
|
|
51
|
+
|
|
52
|
+
return enhanceGradient(radialGradient, gradientId)
|
|
53
|
+
}
|