Liuyi
2024-11-26 53dc2bac460d2ff210aa9523717753ae1fd2c159
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
const cacheChart = {}
const fontSizeReg = /([\d\.]+)px/;
class EventEmit {
    constructor() {
        this.__events = {};
    }
    on(type, listener) {
        if (!type || !listener) {
            return;
        }
        const events = this.__events[type] || [];
        events.push(listener);
        this.__events[type] = events;
    }
    emit(type, e) {
        if (type.constructor === Object) {
            e = type;
            type = e && e.type;
        }
        if (!type) {
            return;
        }
        const events = this.__events[type];
        if (!events || !events.length) {
            return;
        }
        events.forEach((listener) => {
            listener.call(this, e);
        });
    }
    off(type, listener) {
        const __events = this.__events;
        const events = __events[type];
        if (!events || !events.length) {
            return;
        }
        if (!listener) {
            delete __events[type];
            return;
        }
        for (let i = 0, len = events.length; i < len; i++) {
            if (events[i] === listener) {
                events.splice(i, 1);
                i--;
            }
        }
    }
}
class Image {
    constructor() {
        this.currentSrc = null
        this.naturalHeight = 0
        this.naturalWidth = 0
        this.width = 0
        this.height = 0
        this.tagName = 'IMG'
    }
    set src(src) {
        this.currentSrc = src
        uni.getImageInfo({
            src,
            success: (res) => {
                this.naturalWidth = this.width = res.width
                this.naturalHeight = this.height = res.height
                this.onload()
            },
            fail: () => {
                this.onerror()
            }
        })
    }
    get src() {
        return this.currentSrc
    }
}
class OffscreenCanvas {
    constructor(ctx, com, canvasId) {
        this.tagName = 'canvas'
        this.com = com
        this.canvasId = canvasId
        this.ctx = ctx
    }
    set width(w) {
        this.com.offscreenWidth = w
    }
    set height(h) {
        this.com.offscreenHeight = h
    }
    get width() {
        return this.com.offscreenWidth || 0
    }
    get height() {
        return this.com.offscreenHeight || 0
    }
    getContext(type) {
        return this.ctx
    }
    getImageData() {
        return new Promise((resolve, reject) => {
            this.com.$nextTick(() => {
                uni.canvasGetImageData({
                    x:0,
                    y:0,
                    width: this.com.offscreenWidth,
                    height: this.com.offscreenHeight,
                    canvasId: this.canvasId,
                    success: (res) => {
                        resolve(res)
                    },
                    fail: (err) => {
                        reject(err)
                    },
                }, this.com)
            })
        })
    }
}
export class Canvas {
    constructor(ctx, com, isNew, canvasNode={}) {
        cacheChart[com.canvasId] = {ctx}
        this.canvasId = com.canvasId;
        this.chart = null;
        this.isNew = isNew
        this.tagName = 'canvas'
        this.canvasNode = canvasNode;
        this.com = com;
        if (!isNew) {
            this._initStyle(ctx)
        }
        this._initEvent();
        this._ee = new EventEmit()
    }
    getContext(type) {
        if (type === '2d') {
            return this.ctx;
        }
    }
    setAttribute(key, value) {
        if(key === 'aria-label') {
            this.com['ariaLabel'] = value
        }
    }
    setChart(chart) {
        this.chart = chart;
    }
    createOffscreenCanvas(param){
        if(!this.children) {
            this.com.isOffscreenCanvas = true
            this.com.offscreenWidth = param.width||300
            this.com.offscreenHeight = param.height||300
            const com = this.com
            const canvasId = this.com.offscreenCanvasId
            const context = uni.createCanvasContext(canvasId, this.com)
            this._initStyle(context)
            this.children = new OffscreenCanvas(context, com, canvasId)
        } 
        return this.children
    }
    appendChild(child) {
        console.log('child', child)
    }
    dispatchEvent(type, e) {
        if(typeof type == 'object') {
            this._ee.emit(type.type, type);
        } else {
            this._ee.emit(type, e);
        }
        return true
    }
    attachEvent() {
    }
    detachEvent() {
    }
    addEventListener(type, listener) {
        this._ee.on(type, listener)
    }
    removeEventListener(type, listener) {
        this._ee.off(type, listener)
    }
    _initCanvas(zrender, ctx) {
        // zrender.util.getContext = function() {
        //     return ctx;
        // };
        // zrender.util.$override('measureText', function(text, font) {
        //     ctx.font = font || '12px sans-serif';
        //     return ctx.measureText(text, font);
        // });
    }
    _initStyle(ctx, child) {
        const styles = [
            'fillStyle',
            'strokeStyle',
            'fontSize',
            'globalAlpha',
            'opacity',
            'textAlign',
            'textBaseline',
            'shadow',
            'lineWidth',
            'lineCap',
            'lineJoin',
            'lineDash',
            'miterLimit',
            // #ifdef H5
            'font',
            // #endif
        ];
        const colorReg = /#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])\b/g;
        styles.forEach(style => {
            Object.defineProperty(ctx, style, {
                set: value => {
                    // #ifdef H5
                    if (style === 'font' && fontSizeReg.test(value)) {
                        const match = fontSizeReg.exec(value);
                        ctx.setFontSize(match[1]);
                        return;
                    }
                    // #endif
                    
                    if (style === 'opacity') {
                        ctx.setGlobalAlpha(value)
                        return;
                    }
                    if (style !== 'fillStyle' && style !== 'strokeStyle' || value !== 'none' && value !== null) {
                        // #ifdef H5 || APP-PLUS || MP-BAIDU
                        if(typeof value == 'object') {
                            if (value.hasOwnProperty('colorStop') || value.hasOwnProperty('colors')) {
                                ctx['set' + style.charAt(0).toUpperCase() + style.slice(1)](value);
                            }
                            return
                        } 
                        // #endif
                        // #ifdef MP-TOUTIAO
                        if(colorReg.test(value)) {
                            value = value.replace(colorReg, '#$1$1$2$2$3$3')
                        }
                        // #endif
                        ctx['set' + style.charAt(0).toUpperCase() + style.slice(1)](value);
                    }
                }
            });
        });
        if(!this.isNew && !child) {
            ctx.uniDrawImage = ctx.drawImage
            ctx.drawImage = (...a) => {
                a[0] = a[0].src
                ctx.uniDrawImage(...a)
            }
        }
        if(!ctx.createRadialGradient) {
            ctx.createRadialGradient = function() {
                return ctx.createCircularGradient(...[...arguments].slice(-3))
            };
        }
        // 字节不支持
        if (!ctx.strokeText) {
            ctx.strokeText = (...a) => {
                ctx.fillText(...a)
            }
        }
        
        // 钉钉不支持 , 鸿蒙是异步
        if (!ctx.measureText || uni.getSystemInfoSync().osName == 'harmonyos') {
            ctx._measureText = ctx.measureText
            const strLen = (str) => {
                let len = 0;
                for (let i = 0; i < str.length; i++) {
                    if (str.charCodeAt(i) > 0 && str.charCodeAt(i) < 128) {
                        len++;
                    } else {
                        len += 2;
                    }
                }
                return len;
            }
            ctx.measureText = (text, font) => {
                let fontSize = ctx?.state?.fontSize || 12;
                if (font) {
                    fontSize = parseInt(font.match(/([\d\.]+)px/)[1])
                }
                fontSize /= 2;
                let isBold = fontSize >= 16;
                const widthFactor = isBold ? 1.3 : 1;
                // ctx._measureText(text, (res) => {})
                return {
                    width: strLen(text) * fontSize * widthFactor
                };
            }
        }
    }
 
    _initEvent(e) {
        this.event = {};
        const eventNames = [{
            wxName: 'touchStart',
            ecName: 'mousedown'
        }, {
            wxName: 'touchMove',
            ecName: 'mousemove'
        }, {
            wxName: 'touchEnd',
            ecName: 'mouseup'
        }, {
            wxName: 'touchEnd',
            ecName: 'click'
        }];
 
        eventNames.forEach(name => {
            this.event[name.wxName] = e => {
                const touch = e.touches[0];
                this.chart.getZr().handler.dispatch(name.ecName, {
                    zrX: name.wxName === 'tap' ? touch.clientX : touch.x,
                    zrY: name.wxName === 'tap' ? touch.clientY : touch.y
                });
            };
        });
    }
 
    set width(w) {
        this.canvasNode.width = w
    }
    set height(h) {
        this.canvasNode.height = h
    }
 
    get width() {
        return this.canvasNode.width || 0
    }
    get height() {
        return this.canvasNode.height || 0
    }
    get ctx() {
        return cacheChart[this.canvasId]['ctx'] || null
    }
    set chart(chart) {
        cacheChart[this.canvasId]['chart'] = chart
    }
    get chart() {
        return cacheChart[this.canvasId]['chart'] || null
    }
}
 
export function dispatch(name, {x,y, wheelDelta}) {
    this.dispatch(name, {
        zrX: x,
        zrY: y,
        zrDelta: wheelDelta,
        preventDefault: () => {},
        stopPropagation: () =>{}
    });
}
export function setCanvasCreator(echarts, {canvas, node}) {
    // echarts.setCanvasCreator(() => canvas);
    if(echarts && !echarts.registerPreprocessor) {
        return console.warn('echarts 版本不对或未传入echarts,vue3请使用esm格式')
    }
    echarts.registerPreprocessor(option => {
        if (option && option.series) {
            if (option.series.length > 0) {
                option.series.forEach(series => {
                    series.progressive = 0;
                });
            } else if (typeof option.series === 'object') {
                option.series.progressive = 0;
            }
        }
    });
    function loadImage(src, onload, onerror) {
        let img = null
        if(node && node.createImage) {
            img = node.createImage()
            img.onload = onload.bind(img);
            img.onerror = onerror.bind(img);
            img.src = src;
            return img
        } else {
            img = new Image()
            img.onload = onload.bind(img)
            img.onerror = onerror.bind(img);
            img.src = src
            return img
        }
    }
    if(echarts.setPlatformAPI) {
        echarts.setPlatformAPI({
            loadImage: canvas.setChart ? loadImage : null,
            createCanvas(){
                const key = 'createOffscreenCanvas'
                return uni.canIUse(key) && uni[key] ? uni[key]({type: '2d'}) : canvas
            }
        })
    }
}