vislite 1.3.0 → 1.4.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 +12 -5
- package/LICENSE +20 -20
- package/README.md +284 -284
- package/lib/BarLayout/index.es.d.ts +3 -0
- package/lib/BarLayout/index.es.js +467 -0
- package/lib/BarLayout/index.es.min.d.ts +3 -0
- package/lib/BarLayout/index.es.min.js +10 -0
- package/lib/Buffer/index.es.js +1 -1
- package/lib/Buffer/index.es.min.js +1 -1
- package/lib/Canvas/index.es.js +2 -2
- 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/MapCoordinate/index.es.js +1 -1
- package/lib/MapCoordinate/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/PieLayout/index.es.d.ts +3 -0
- package/lib/PieLayout/index.es.js +234 -0
- package/lib/PieLayout/index.es.min.d.ts +3 -0
- package/lib/PieLayout/index.es.min.js +9 -0
- package/lib/RawCanvas/index.es.js +2 -2
- package/lib/RawCanvas/index.es.min.js +1 -1
- package/lib/SVG/index.es.js +29 -6
- package/lib/SVG/index.es.min.js +2 -2
- 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 +109 -102
- package/lib/TreeLayout/index.es.min.js +6 -2
- package/lib/animation/index.es.js +114 -103
- package/lib/animation/index.es.min.js +6 -2
- 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 +510 -158
- package/lib/index.umd.min.js +12 -2
- 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 +55 -50
- package/lib/throttle/index.es.min.js +5 -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/BarLayout/index.ts +3 -0
- 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/MapCoordinate/index.ts +2 -2
- package/package/Matrix4/index.ts +2 -2
- package/package/Mercator/index.ts +2 -2
- package/package/PieLayout/index.ts +3 -0
- 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 +5 -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 +4 -0
- 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 +1 -1
- package/package.json +3 -3
- 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 +31 -0
- package/src/common/assemble.ts +22 -22
- package/src/common/canvas/arc.ts +51 -51
- package/src/common/canvas/config.ts +176 -176
- package/src/common/canvas/default.ts +64 -64
- package/src/common/canvas/gradient.ts +1 -1
- package/src/common/canvas/index.ts +188 -188
- package/src/common/canvas/painter.ts +443 -443
- package/src/common/canvas/texts.ts +18 -18
- package/src/common/map/getBoundary.ts +15 -15
- package/src/common/map/tool.ts +29 -29
- package/src/common/option.ts +29 -29
- package/src/common/setStyle.ts +5 -5
- package/src/common/svg/config.ts +213 -213
- package/src/common/svg/default.ts +2 -2
- package/src/common/svg/gradient.ts +2 -2
- package/src/common/svg/index.ts +1 -1
- package/src/common/svg/tool.ts +51 -51
- package/src/common/tree/index.ts +25 -25
- package/src/common/tree/toInnerTree.ts +61 -61
- package/src/common/tree/toPlainTree.ts +3 -0
- 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 +1 -0
- package/src/coordinate/MapCoordinate.ts +80 -80
- package/src/getLoopColors.ts +42 -42
- package/src/interpolation/Cardinal.ts +110 -110
- package/src/interpolation/Hermite.ts +65 -65
- package/src/layout/BarLayout.ts +249 -0
- package/src/layout/PieLayout.ts +142 -0
- package/src/layout/TreeLayout.ts +4 -1
- 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/Bar.d.ts +92 -0
- package/types/BarConfig.d.ts +5 -0
- package/types/BarLayout.d.ts +49 -0
- package/types/BarOption.d.ts +32 -0
- package/types/Buffer.d.ts +23 -23
- package/types/Canvas.d.ts +352 -352
- package/types/CanvasConfig.d.ts +88 -88
- 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/MapConfig.d.ts +27 -27
- package/types/MapCoordinate.d.ts +22 -22
- package/types/Matrix4.d.ts +47 -47
- package/types/Pie.d.ts +74 -0
- package/types/PieConfig.d.ts +27 -0
- package/types/PieLayout.d.ts +41 -0
- package/types/PieOption.d.ts +22 -0
- package/types/SVG.d.ts +4 -0
- package/types/SVGConfig.d.ts +71 -71
- package/types/Shader.d.ts +16 -16
- package/types/Texture.d.ts +16 -16
- package/types/Tree.d.ts +74 -74
- package/types/TreeConfig.d.ts +36 -36
- package/types/TreeLayout.d.ts +59 -59
- package/types/TreeOption.d.ts +48 -48
- package/types/animation.d.ts +7 -1
- 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 +16 -0
- 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 +1 -1
- package/types/throttleOption.d.ts +1 -1
- 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
package/types/animation.d.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
interface animationFun {
|
|
2
|
+
(deep: number): void
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
interface animationType {
|
|
6
|
+
(doback: animationFun, duration?: number, callback?: animationFun): Function
|
|
7
|
+
}
|
|
2
8
|
|
|
3
9
|
/**
|
|
4
10
|
* 轮询动画,返回一个函数,调用该函数,可以提前结束动画
|
package/types/assemble.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 步进生成器
|
|
3
|
-
*/
|
|
4
|
-
export default interface assembleType {
|
|
5
|
-
(begin: number, end: number, step: number, count: number): () => Array<number>
|
|
1
|
+
/**
|
|
2
|
+
* 步进生成器
|
|
3
|
+
*/
|
|
4
|
+
export default interface assembleType {
|
|
5
|
+
(begin: number, end: number, step: number, count: number): () => Array<number>
|
|
6
6
|
}
|
package/types/getLoopColors.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 获取一组循环色彩
|
|
3
|
-
*/
|
|
4
|
-
export default interface getLoopColorsType {
|
|
5
|
-
(num: number, alpha?: number, colorsFactory?: (alpha: number) => Array<string>): string[]
|
|
1
|
+
/**
|
|
2
|
+
* 获取一组循环色彩
|
|
3
|
+
*/
|
|
4
|
+
export default interface getLoopColorsType {
|
|
5
|
+
(num: number, alpha?: number, colorsFactory?: (alpha: number) => Array<string>): string[]
|
|
6
6
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export type WebGLmodeType = "scaleToFill" | "aspectFit" | "aspectFill"
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 获取WebGL上下文对象
|
|
5
|
-
*/
|
|
6
|
-
export default interface getWebGLContextType {
|
|
7
|
-
(el: HTMLElement | null, scale?: number, mode?: WebGLmodeType): WebGLRenderingContext
|
|
1
|
+
export type WebGLmodeType = "scaleToFill" | "aspectFit" | "aspectFill"
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 获取WebGL上下文对象
|
|
5
|
+
*/
|
|
6
|
+
export default interface getWebGLContextType {
|
|
7
|
+
(el: HTMLElement | null, scale?: number, mode?: WebGLmodeType): WebGLRenderingContext
|
|
8
8
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -33,6 +33,12 @@ import MapCoordinateType from './MapCoordinate'
|
|
|
33
33
|
import TreeConfigType from './TreeConfig'
|
|
34
34
|
import TreeLayoutType from './TreeLayout'
|
|
35
35
|
|
|
36
|
+
import PieConfigType from './PieConfig'
|
|
37
|
+
import PieLayoutType from './PieLayout'
|
|
38
|
+
|
|
39
|
+
import BarConfigType from './BarConfig'
|
|
40
|
+
import BarLayoutType from './BarLayout'
|
|
41
|
+
|
|
36
42
|
import { initOptionType, mergeOptionType } from './option'
|
|
37
43
|
|
|
38
44
|
// 插值
|
|
@@ -87,6 +93,12 @@ interface NewMapCoordinateType extends MapCoordinateType {
|
|
|
87
93
|
interface NewTreeLayoutType extends TreeLayoutType {
|
|
88
94
|
new(config?: TreeConfigType): this
|
|
89
95
|
}
|
|
96
|
+
interface NewPieLayoutType extends PieLayoutType {
|
|
97
|
+
new(config?: PieConfigType): this
|
|
98
|
+
}
|
|
99
|
+
interface NewBarLayoutType extends BarLayoutType {
|
|
100
|
+
new(config?: BarConfigType): this
|
|
101
|
+
}
|
|
90
102
|
|
|
91
103
|
export default class VISLite {
|
|
92
104
|
|
|
@@ -129,6 +141,8 @@ export default class VISLite {
|
|
|
129
141
|
|
|
130
142
|
// 布局
|
|
131
143
|
static TreeLayout: NewTreeLayoutType
|
|
144
|
+
static PieLayout: NewPieLayoutType
|
|
145
|
+
static BarLayout: NewBarLayoutType
|
|
132
146
|
|
|
133
147
|
// 配置项
|
|
134
148
|
static initOption: initOptionType
|
|
@@ -174,6 +188,8 @@ export let MapCoordinate: NewMapCoordinateType
|
|
|
174
188
|
|
|
175
189
|
// 布局
|
|
176
190
|
export let TreeLayout: NewTreeLayoutType
|
|
191
|
+
export let PieLayout: NewPieLayoutType
|
|
192
|
+
export let BarLayout: NewBarLayoutType
|
|
177
193
|
|
|
178
194
|
// 配置项
|
|
179
195
|
export let initOption: initOptionType
|
package/types/move.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 移动
|
|
3
|
-
*/
|
|
4
|
-
export default interface moveType {
|
|
5
|
-
(ax: number, ay: number, d: number, x: number, y: number): [number, number]
|
|
1
|
+
/**
|
|
2
|
+
* 移动
|
|
3
|
+
*/
|
|
4
|
+
export default interface moveType {
|
|
5
|
+
(ax: number, ay: number, d: number, x: number, y: number): [number, number]
|
|
6
6
|
}
|
package/types/option.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 初始化配置
|
|
3
|
-
*/
|
|
4
|
-
export interface initOptionType {
|
|
5
|
-
(setOption: any, defaultOption: any): any
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* 合并配置
|
|
10
|
-
*/
|
|
11
|
-
export interface mergeOptionType {
|
|
12
|
-
(oldOption: any, newOption: any): void
|
|
1
|
+
/**
|
|
2
|
+
* 初始化配置
|
|
3
|
+
*/
|
|
4
|
+
export interface initOptionType {
|
|
5
|
+
(setOption: any, defaultOption: any): any
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* 合并配置
|
|
10
|
+
*/
|
|
11
|
+
export interface mergeOptionType {
|
|
12
|
+
(oldOption: any, newOption: any): void
|
|
13
13
|
}
|
package/types/painterConfig.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export type arcCapType = "butt" | "round" | "-round"
|
|
2
|
-
export type textAlignType = "left" | "center" | "right"
|
|
3
|
-
export type textBaselineType = "top" | "middle" | "bottom"
|
|
4
|
-
export type lineCapType = "butt" | "round" | "square"
|
|
1
|
+
export type arcCapType = "butt" | "round" | "-round"
|
|
2
|
+
export type textAlignType = "left" | "center" | "right"
|
|
3
|
+
export type textBaselineType = "top" | "middle" | "bottom"
|
|
4
|
+
export type lineCapType = "butt" | "round" | "square"
|
|
5
5
|
export type lineJoinType = "miter" | "bevel" | "round"
|
package/types/rotate.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 旋转
|
|
3
|
-
*/
|
|
4
|
-
export default interface rotateType {
|
|
5
|
-
(cx: number, cy: number, deg: number, x: number, y: number): [number, number]
|
|
1
|
+
/**
|
|
2
|
+
* 旋转
|
|
3
|
+
*/
|
|
4
|
+
export default interface rotateType {
|
|
5
|
+
(cx: number, cy: number, deg: number, x: number, y: number): [number, number]
|
|
6
6
|
}
|
package/types/ruler.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export interface rulerOptionType {
|
|
2
|
-
max?: number
|
|
3
|
-
min?: number
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* 刻度尺刻度运算,返回一个数组,表示刻度尺上应该显示的刻度
|
|
8
|
-
*/
|
|
9
|
-
export default interface rulerType {
|
|
10
|
-
(maxValue: number, minValue: number, num: number, option?: rulerOptionType): number[]
|
|
1
|
+
export interface rulerOptionType {
|
|
2
|
+
max?: number
|
|
3
|
+
min?: number
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* 刻度尺刻度运算,返回一个数组,表示刻度尺上应该显示的刻度
|
|
8
|
+
*/
|
|
9
|
+
export default interface rulerType {
|
|
10
|
+
(maxValue: number, minValue: number, num: number, option?: rulerOptionType): number[]
|
|
11
11
|
}
|
package/types/scale.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 缩放
|
|
3
|
-
*/
|
|
4
|
-
export default interface scaleType {
|
|
5
|
-
(cx: number, cy: number, times: number, x: number, y: number): [number, number]
|
|
1
|
+
/**
|
|
2
|
+
* 缩放
|
|
3
|
+
*/
|
|
4
|
+
export default interface scaleType {
|
|
5
|
+
(cx: number, cy: number, times: number, x: number, y: number): [number, number]
|
|
6
6
|
}
|
package/types/throttle.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "oipage/
|
|
1
|
+
export * from "oipage/web/throttle/index"
|
package/types/ui-canvas.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import CanvasType from "./Canvas"
|
|
2
|
-
|
|
3
|
-
export default interface UiCanvasType {
|
|
4
|
-
fetch(): Promise<CanvasType>
|
|
1
|
+
import CanvasType from "./Canvas"
|
|
2
|
+
|
|
3
|
+
export default interface UiCanvasType {
|
|
4
|
+
fetch(): Promise<CanvasType>
|
|
5
5
|
}
|
package/types/uni-canvas.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ui-canvas
|
|
3
|
-
*/
|
|
1
|
+
/**
|
|
2
|
+
* ui-canvas
|
|
3
|
+
*/
|
|
4
4
|
declare module "vislite/uni-app/ui-canvas.vue";
|
package/uni-app/drawImage.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export default function (_this, drawImage) {
|
|
2
|
-
return function (imgUrl, x, y, w, h) {
|
|
3
|
-
return new Promise((resolve) => {
|
|
4
|
-
if (/^http/.test(imgUrl)) {
|
|
5
|
-
uni.downloadFile({
|
|
6
|
-
url: imgUrl,
|
|
7
|
-
success: function (res) {
|
|
8
|
-
drawImage.call(_this, res.tempFilePath, x, y, w, h, true).then(() => {
|
|
9
|
-
resolve({});
|
|
10
|
-
});
|
|
11
|
-
},
|
|
12
|
-
});
|
|
13
|
-
} else {
|
|
14
|
-
drawImage.call(_this, imgUrl, x, y, w, h, true).then(() => {
|
|
15
|
-
resolve({});
|
|
16
|
-
});
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
};
|
|
1
|
+
export default function (_this, drawImage) {
|
|
2
|
+
return function (imgUrl, x, y, w, h) {
|
|
3
|
+
return new Promise((resolve) => {
|
|
4
|
+
if (/^http/.test(imgUrl)) {
|
|
5
|
+
uni.downloadFile({
|
|
6
|
+
url: imgUrl,
|
|
7
|
+
success: function (res) {
|
|
8
|
+
drawImage.call(_this, res.tempFilePath, x, y, w, h, true).then(() => {
|
|
9
|
+
resolve({});
|
|
10
|
+
});
|
|
11
|
+
},
|
|
12
|
+
});
|
|
13
|
+
} else {
|
|
14
|
+
drawImage.call(_this, imgUrl, x, y, w, h, true).then(() => {
|
|
15
|
+
resolve({});
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
};
|
|
20
20
|
};
|