wx-canvas.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. export default class WxCanvas {
  2. constructor(ctx, canvasId) {
  3. this.ctx = ctx;
  4. this.canvasId = canvasId;
  5. this.chart = null;
  6. // this._initCanvas(zrender, ctx);
  7. this._initStyle(ctx);
  8. this._initEvent();
  9. }
  10. getContext(contextType) {
  11. if (contextType === '2d') {
  12. return this.ctx;
  13. }
  14. }
  15. // canvasToTempFilePath(opt) {
  16. // if (!opt.canvasId) {
  17. // opt.canvasId = this.canvasId;
  18. // }
  19. // return wx.canvasToTempFilePath(opt, this);
  20. // }
  21. setChart(chart) {
  22. this.chart = chart;
  23. }
  24. attachEvent() {
  25. // noop
  26. }
  27. detachEvent() {
  28. // noop
  29. }
  30. _initCanvas(zrender, ctx) {
  31. zrender.util.getContext = function () {
  32. return ctx;
  33. };
  34. zrender.util.$override('measureText', function (text, font) {
  35. ctx.font = font || '12px sans-serif';
  36. return ctx.measureText(text);
  37. });
  38. }
  39. _initStyle(ctx) {
  40. var styles = ['fillStyle', 'strokeStyle', 'globalAlpha', 'textAlign', 'textBaseAlign', 'shadow', 'lineWidth', 'lineCap', 'lineJoin', 'lineDash', 'miterLimit', 'fontSize'];
  41. styles.forEach((style) => {
  42. Object.defineProperty(ctx, style, {
  43. set: (value) => {
  44. if ((style !== 'fillStyle' && style !== 'strokeStyle') || (value !== 'none' && value !== null)) {
  45. ctx['set' + style.charAt(0).toUpperCase() + style.slice(1)](value);
  46. }
  47. }
  48. });
  49. });
  50. ctx.createRadialGradient = () => {
  51. return ctx.createCircularGradient(arguments);
  52. };
  53. }
  54. _initEvent() {
  55. this.event = {};
  56. const eventNames = [
  57. {
  58. wxName: 'touchStart',
  59. ecName: 'mousedown'
  60. },
  61. {
  62. wxName: 'touchMove',
  63. ecName: 'mousemove'
  64. },
  65. {
  66. wxName: 'touchEnd',
  67. ecName: 'mouseup'
  68. },
  69. {
  70. wxName: 'touchEnd',
  71. ecName: 'click'
  72. }
  73. ];
  74. eventNames.forEach((name) => {
  75. this.event[name.wxName] = (e) => {
  76. const touch = e.touches[0];
  77. this.chart.getZr().handler.dispatch(name.ecName, {
  78. zrX: name.wxName === 'tap' ? touch.clientX : touch.x,
  79. zrY: name.wxName === 'tap' ? touch.clientY : touch.y
  80. });
  81. };
  82. });
  83. }
  84. }