ec-canvas.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <view>
  3. <canvas
  4. class="ec-canvas"
  5. :canvas-id="canvasId"
  6. @init="init"
  7. @touchstart="parseEventDynamicCode($event, ec.disableTouch ? '' : 'touchStart')"
  8. @touchmove="parseEventDynamicCode($event, ec.disableTouch ? '' : 'touchMove')"
  9. @touchend="parseEventDynamicCode($event, ec.disableTouch ? '' : 'touchEnd')"
  10. ></canvas>
  11. </view>
  12. </template>
  13. <script>
  14. import WxCanvas from './wx-canvas';
  15. import * as echarts from './echarts';
  16. let ctx;
  17. export default {
  18. data() {
  19. return {};
  20. },
  21. props: {
  22. canvasId: {
  23. type: String,
  24. default: 'ec-canvas'
  25. },
  26. ec: {
  27. type: Object
  28. }
  29. },
  30. mounted() {
  31. // 处理小程序 ready 生命周期
  32. this.$nextTick(() => this.ready());
  33. },
  34. methods: {
  35. ready: function () {
  36. if (!this.ec) {
  37. console.warn('组件需绑定 ec 变量,例:<ec-canvas id="mychart-dom-bar" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas>');
  38. return;
  39. }
  40. if (!this.ec.lazyLoad) {
  41. this.init();
  42. }
  43. },
  44. init: function (callback) {
  45. const version = uni.version.version.split('.').map((n) => parseInt(n, 10));
  46. const isValid = version[0] > 1 || (version[0] === 1 && version[1] > 9) || (version[0] === 1 && version[1] === 9 && version[2] >= 91);
  47. if (!isValid) {
  48. console.error(
  49. '\u5FAE\u4FE1\u57FA\u7840\u5E93\u7248\u672C\u8FC7\u4F4E\uFF0C\u9700\u5927\u4E8E\u7B49\u4E8E 1.9.91\u3002\u53C2\u89C1\uFF1Ahttps://github.com/ecomfe/echarts-for-weixin#%E5%BE%AE%E4%BF%A1%E7%89%88%E6%9C%AC%E8%A6%81%E6%B1%82'
  50. );
  51. return;
  52. }
  53. ctx = uni.createCanvasContext(this.canvasId, this);
  54. const canvas = new WxCanvas(ctx, this.canvasId);
  55. echarts.setCanvasCreator(() => {
  56. return canvas;
  57. });
  58. var query = uni.createSelectorQuery().in(this);
  59. query
  60. .select('.ec-canvas')
  61. .boundingClientRect((res) => {
  62. if (typeof callback === 'function') {
  63. this.chart = callback(canvas, res.width, res.height);
  64. } else if (this.ec && typeof this.ec.onInit === 'function') {
  65. this.chart = this.ec.onInit(canvas, res.width, res.height);
  66. } else {
  67. this.$emit('init', {
  68. detail: {
  69. canvas: canvas,
  70. width: res.width,
  71. height: res.height
  72. }
  73. });
  74. }
  75. })
  76. .exec();
  77. },
  78. canvasToTempFilePath(opt) {
  79. if (!opt.canvasId) {
  80. opt.canvasId = this.canvasId;
  81. }
  82. ctx.draw(true, () => {
  83. uni.canvasToTempFilePath(opt, this);
  84. });
  85. },
  86. touchStart(e) {
  87. if (this.chart && e.touches.length > 0) {
  88. var touch = e.touches[0];
  89. var handler = this.chart.getZr().handler;
  90. handler.dispatch('mousedown', {
  91. zrX: touch.x,
  92. zrY: touch.y
  93. });
  94. handler.dispatch('mousemove', {
  95. zrX: touch.x,
  96. zrY: touch.y
  97. });
  98. handler.processGesture(wrapTouch(e), 'start');
  99. }
  100. },
  101. touchMove(e) {
  102. if (this.chart && e.touches.length > 0) {
  103. var touch = e.touches[0];
  104. var handler = this.chart.getZr().handler;
  105. handler.dispatch('mousemove', {
  106. zrX: touch.x,
  107. zrY: touch.y
  108. });
  109. handler.processGesture(wrapTouch(e), 'change');
  110. }
  111. },
  112. touchEnd(e) {
  113. if (this.chart) {
  114. const touch = e.changedTouches ? e.changedTouches[0] : {};
  115. var handler = this.chart.getZr().handler;
  116. handler.dispatch('mouseup', {
  117. zrX: touch.x,
  118. zrY: touch.y
  119. });
  120. handler.dispatch('click', {
  121. zrX: touch.x,
  122. zrY: touch.y
  123. });
  124. handler.processGesture(wrapTouch(e), 'end');
  125. }
  126. }
  127. },
  128. created: function () {}
  129. };
  130. function wrapTouch(event) {
  131. for (let i = 0; i < event.touches.length; ++i) {
  132. const touch = event.touches[i];
  133. touch.offsetX = touch.x;
  134. touch.offsetY = touch.y;
  135. }
  136. return event;
  137. }
  138. </script>
  139. <style>
  140. @import './ec-canvas.css';
  141. </style>