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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<template>
    <view class="lime-echart" :style="customStyle" v-if="canvasId" ref="limeEchart" :aria-label="ariaLabel">
        <!-- #ifndef APP-NVUE -->
        <canvas
            class="lime-echart__canvas"
            v-if="use2dCanvas"
            type="2d"
            :id="canvasId"
            :style="canvasStyle"
            :disable-scroll="isDisableScroll"
            @touchstart="touchStart"
            @touchmove="touchMove"
            @touchend="touchEnd"
        />
        <canvas
            class="lime-echart__canvas"
            v-else
            :width="nodeWidth"
            :height="nodeHeight"
            :style="canvasStyle"
            :canvas-id="canvasId"
            :id="canvasId"
            :disable-scroll="isDisableScroll"
            @touchstart="touchStart"
            @touchmove="touchMove"
            @touchend="touchEnd"
        />
        <view class="lime-echart__mask"
            v-if="isPC"
            @mousedown="touchStart"
            @mousemove="touchMove"
            @mouseup="touchEnd"
            @touchstart="touchStart"
            @touchmove="touchMove"
            @touchend="touchEnd">
        </view>
        <canvas v-if="isOffscreenCanvas" :style="offscreenStyle" :canvas-id="offscreenCanvasId"></canvas>
        <!-- #endif -->
        <!-- #ifdef APP-NVUE -->
        <web-view
            class="lime-echart__canvas"
            :id="canvasId"
            :style="canvasStyle"
            :webview-styles="webviewStyles"
            ref="webview"
            src="/uni_modules/lime-echart/static/uvue.html?v=1"
            @pagefinish="finished = true"
            @onPostMessage="onMessage"
        ></web-view>
        <!-- #endif -->
    </view>
</template>
 
<script>
// #ifndef APP-NVUE
import {Canvas, setCanvasCreator, dispatch} from './canvas';
import {wrapTouch, convertTouchesToArray, devicePixelRatio ,sleep, canIUseCanvas2d, getRect} from './utils';
// #endif
// #ifdef APP-NVUE
import { base64ToPath, sleep } from './utils';
import {Echarts} from './nvue'
// #endif
const charts = {}
const echartsObj = {}
 
 
/**
 * LimeChart 图表
 * @description 全端兼容的eCharts
 * @tutorial https://ext.dcloud.net.cn/plugin?id=4899
 
 * @property {String} customStyle 自定义样式
 * @property {String} type 指定 canvas 类型
 * @value 2d 使用canvas 2d,部分小程序支持
 * @value '' 使用原生canvas,会有层级问题
 * @value bottom right    不缩放图片,只显示图片的右下边区域
 * @property {Boolean} isDisableScroll     
 * @property {number} beforeDelay = [30]  延迟初始化 (毫秒)
 * @property {Boolean} enableHover PC端使用鼠标悬浮
 
 * @event {Function} finished 加载完成触发
 */
export default {
    name: 'lime-echart',
    props: {
        // #ifdef MP-WEIXIN || MP-TOUTIAO
        type: {
            type: String,
            default: '2d'
        },
        // #endif
        // #ifdef APP-NVUE
        webviewStyles: Object,
        // hybrid: Boolean,
        // #endif
        customStyle: String,
        isDisableScroll: Boolean,
        isClickable: {
            type: Boolean,
            default: true
        },
        enableHover: Boolean,
        beforeDelay: {
            type: Number,
            default: 30
        }
    },
    data() {
        return {
            // #ifdef MP-WEIXIN || MP-TOUTIAO || MP-ALIPAY
            use2dCanvas: true,
            // #endif
            // #ifndef MP-WEIXIN || MP-TOUTIAO || MP-ALIPAY
            use2dCanvas: false,
            // #endif
            ariaLabel: '图表',
            width: null,
            height: null,
            nodeWidth: null,
            nodeHeight: null,
            // canvasNode: null,
            config: {},
            inited: false,
            finished: false,
            file: '',
            platform: '',
            isPC: false,
            isDown: false,
            isOffscreenCanvas: false,
            offscreenWidth: 0,
            offscreenHeight: 0
        };
    },
    computed: {
        canvasId() {
            return `lime-echart${this._ && this._.uid || this._uid}`
        },
        offscreenCanvasId() {
            return `${this.canvasId}_offscreen`
        },
        offscreenStyle() {
            return `width:${this.offscreenWidth}px;height: ${this.offscreenHeight}px; position: fixed; left: 99999px; background: red`
        },
        canvasStyle() {
            return  this.width && this.height ? ('width:' + this.width + 'px;height:' + this.height + 'px') : ''
        }
    },
    // #ifndef VUE3
    beforeDestroy() {
        this.clear()
        this.dispose()
        // #ifdef H5
        if(this.isPC) {
            document.removeEventListener('mousewheel', this.mousewheel)
        }
        // #endif
    },
    // #endif
    // #ifdef VUE3
    beforeUnmount() {
        this.clear()
        this.dispose()
        // #ifdef H5
        if(this.isPC) {
            document.removeEventListener('mousewheel', this.mousewheel)
        }
        // #endif
    },
    // #endif
    created() {
        // #ifdef H5
        if(!('ontouchstart' in window)) {
            this.isPC = true
            document.addEventListener('mousewheel', this.mousewheel)
        }
        // #endif
        // #ifdef MP-WEIXIN || MP-TOUTIAO || MP-ALIPAY
        const { platform } = uni.getSystemInfoSync();
        this.isPC = /windows/i.test(platform)
        // #endif
        this.use2dCanvas = this.type === '2d' && canIUseCanvas2d()
    },
    mounted() {
        this.$nextTick(() => {
            this.$emit('finished')
        })
    },
    methods: {
        // #ifdef APP-NVUE
        onMessage(e) {
            const detail = e?.detail?.data[0] || null;
            const data = detail?.data
            const key = detail?.event
            const options = data?.options
            const event = data?.event
            const file = detail?.file
            if (key == 'log' && data) {
                console.log(data)
            }
            if(event) {
                this.chart.dispatchAction(event.replace(/"/g,''), options)
            }
            if(file) {
                thie.file = file
            }
        },
        // #endif
        setChart(callback) {
            if(!this.chart) {
                console.warn(`组件还未初始化,请先使用 init`)
                return
            }
            if(typeof callback === 'function' && this.chart) {
                callback(this.chart);
            }
            // #ifdef APP-NVUE
            if(typeof callback === 'function') {
                this.$refs.webview.evalJs(`setChart(${JSON.stringify(callback.toString())}, ${JSON.stringify(this.chart.options)})`);
            }
            // #endif
        },
        setOption() {
            if (!this.chart || !this.chart.setOption) {
                console.warn(`组件还未初始化,请先使用 init`)
                return
            }
            this.chart.setOption(...arguments);
        },
        showLoading() {
            if(this.chart) {
                this.chart.showLoading(...arguments)
            }
        },
        hideLoading() {
            if(this.chart) {
                this.chart.hideLoading()
            }
        },
        clear() {
            if(this.chart) {
                this.chart.clear()
            }
        },
        dispose() {
            if(this.chart) {
                this.chart.dispose()
            }
        },
        resize(size) {
            if(size && size.width && size.height) {
                this.height = size.height
                this.width = size.width
                if(this.chart) {this.chart.resize(size)}
            } else {
                this.$nextTick(() => {
                    uni.createSelectorQuery()
                        .in(this)
                        .select(`.lime-echart`)
                        .boundingClientRect()
                        .exec(res => {
                            if (res) {
                                let { width, height } = res[0];
                                this.width = width = width || 300;
                                this.height = height = height || 300;
                                this.chart.resize({width, height})
                            }
                        });
                })
                
            }
            
        },
        canvasToTempFilePath(args = {}) {
            // #ifndef APP-NVUE
            const { use2dCanvas, canvasId } = this;
            return new Promise((resolve, reject) => {
                const copyArgs = Object.assign({
                    canvasId,
                    success: resolve,
                    fail: reject
                }, args);
                if (use2dCanvas) {
                    delete copyArgs.canvasId;
                    copyArgs.canvas = this.canvasNode;
                }
                uni.canvasToTempFilePath(copyArgs, this);
            });
            // #endif
            // #ifdef APP-NVUE
            this.file = ''
            this.$refs.webview.evalJs(`canvasToTempFilePath()`);
            return new Promise((resolve, reject) => {
                this.$watch('file', async (file) => {
                    if(file) {
                        const tempFilePath = await base64ToPath(file)
                        resolve(args.success({tempFilePath}))
                    } else {
                        reject(args.fail({error: ``}))
                    }
                })
            })
            // #endif
        },
        async init(echarts, ...args) {
            // #ifndef APP-NVUE
            if(args && args.length == 0 && !echarts) {
                console.error('缺少参数:init(echarts, theme?:string, opts?: object, callback?: function)')
                return
            }
            // #endif
            let theme=null,opts={},callback;
            
            Array.from(arguments).forEach(item => {
                if(typeof item === 'function') {
                    callback = item
                }
                if(['string'].includes(typeof item)) {
                    theme = item
                }
                if(typeof item === 'object') {
                    opts = item
                }
            })
            
            if(this.beforeDelay) {
                await sleep(this.beforeDelay)
            }
            let config = await this.getContext();
            // #ifndef APP-NVUE
            setCanvasCreator(echarts, config)
            try {
                this.chart = echarts.init(config.canvas, theme, Object.assign({}, config, opts))
                if(typeof callback === 'function') {
                    callback(this.chart)
                } else {
                    return this.chart
                }
            } catch(e) {
                console.error(e.messges)
                return null
            }
            // #endif
            // #ifdef APP-NVUE
            this.chart = new Echarts(this.$refs.webview)
            this.$refs.webview.evalJs(`init(null, null, ${JSON.stringify(opts)}, ${theme})`)
            if(callback) {
                callback(this.chart)
            } else {
                return this.chart
            }
            // #endif
        },
        getContext() {
            // #ifdef APP-NVUE
            if(this.finished) {
                return Promise.resolve(this.finished)
            }
            return new Promise(resolve => {
                this.$watch('finished', (val) => {
                    if(val) {
                        resolve(this.finished)
                    }
                })
            })
            // #endif
            // #ifndef APP-NVUE
            return getRect(`#${this.canvasId}`, {context: this, type: this.use2dCanvas ? 'fields': 'boundingClientRect'}).then(res => {
                if(res) {
                    let dpr = devicePixelRatio
                    let {width, height, node} = res
                    let canvas;
                    this.width = width = width || 300;
                    this.height = height = height || 300;
                    if(node) {
                        const ctx = node.getContext('2d');
                        canvas = new Canvas(ctx, this, true, node);
                        this.canvasNode = node
                    } else {
                        // #ifdef MP-TOUTIAO
                        dpr = !this.isPC ? devicePixelRatio : 1// 1.25
                        // #endif
                        // #ifndef MP-ALIPAY || MP-TOUTIAO
                        dpr = this.isPC ? devicePixelRatio : 1
                        // #endif
                        // #ifdef MP-ALIPAY || MP-LARK
                        dpr = devicePixelRatio
                        // #endif
                        // #ifdef WEB
                        dpr = 1
                        // #endif
                        this.rect = res
                        this.nodeWidth = width * dpr;
                        this.nodeHeight = height * dpr;
                        const ctx = uni.createCanvasContext(this.canvasId, this);
                        canvas =  new Canvas(ctx, this, false);
                    }
                    return { canvas, width, height, devicePixelRatio: dpr, node };
                } else {
                    return {}
                }
            })
            // #endif
        },
        // #ifndef APP-NVUE
        getRelative(e, touches) {
            let { clientX, clientY } = e
            if(!(clientX && clientY) && touches && touches[0]) {
                clientX = touches[0].clientX
                clientY = touches[0].clientY
            }
            return {x: clientX - this.rect.left, y: clientY - this.rect.top, wheelDelta: e.wheelDelta || 0}
        },
        getTouch(e, touches) {
            const {x} = touches && touches[0] || {}
            return x ? touches[0] : this.getRelative(e, touches);
        },
        touchStart(e) {
            this.isDown = true
            const next = () => {
                const touches = convertTouchesToArray(e.touches)
                if(this.chart) {
                    const touch = this.getTouch(e, touches)
                    this.startX = touch.x
                    this.startY = touch.y
                    this.startT = new Date()
                    const handler = this.chart.getZr().handler;
                    dispatch.call(handler, 'mousedown', touch)
                    dispatch.call(handler, 'mousemove', touch)
                    handler.processGesture(wrapTouch(e), 'start');
                    clearTimeout(this.endTimer);
                }
                
            }
            if(this.isPC) {
                getRect(`#${this.canvasId}`, {context: this}).then(res => {
                    this.rect = res
                    next()
                })
                return
            }
            next()
        },
        touchMove(e) {
            if(this.isPC && this.enableHover && !this.isDown) {this.isDown = true}
            const touches = convertTouchesToArray(e.touches)
            if (this.chart && this.isDown) {
                const handler = this.chart.getZr().handler;
                dispatch.call(handler, 'mousemove', this.getTouch(e, touches))
                handler.processGesture(wrapTouch(e), 'change');
            }
            
        },
        touchEnd(e) {
            this.isDown = false
            if (this.chart) {
                const touches = convertTouchesToArray(e.changedTouches)
                const {x} = touches && touches[0] || {}
                const touch = (x ? touches[0] : this.getRelative(e, touches)) || {};
                const handler = this.chart.getZr().handler;
                const isClick = Math.abs(touch.x - this.startX) < 10 && new Date() - this.startT < 200;
                dispatch.call(handler, 'mouseup', touch)
                handler.processGesture(wrapTouch(e), 'end');
                if(isClick) {
                    dispatch.call(handler, 'click', touch)
                } else {
                    this.endTimer = setTimeout(() => {
                        dispatch.call(handler, 'mousemove', {x: 999999999,y: 999999999});
                        dispatch.call(handler, 'mouseup', {x: 999999999,y: 999999999});
                    },50)
                }
            }
        },
        // #endif
        // #ifdef H5
        mousewheel(e){
            if(this.chart) {
                dispatch.call(this.chart.getZr().handler, 'mousewheel', this.getTouch(e))
            }
        }
        // #endif
    }
};
</script>
<style>    
.lime-echart {
    position: relative;
    /* #ifndef APP-NVUE */
    width: 100%;
    height: 100%;
    /* #endif */
    /* #ifdef APP-NVUE */
    flex: 1;
    /* #endif */
}
.lime-echart__canvas {
    /* #ifndef APP-NVUE */
    width: 100%;
    height: 100%;
    /* #endif */
    /* #ifdef APP-NVUE */
    flex: 1;
    /* #endif */
}
/* #ifndef APP-NVUE */
.lime-echart__mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
/* #endif */
</style>