RoamController.ts 8.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

S
sushuang 已提交
20 21 22
import * as zrUtil from 'zrender/src/core/util';
import Eventful from 'zrender/src/mixin/Eventful';
import * as eventTool from 'zrender/src/core/event';
S
sushuang 已提交
23
import * as interactionMutex from './interactionMutex';
S
sushuang 已提交
24 25 26 27 28 29 30 31 32

/**
 * @alias module:echarts/component/helper/RoamController
 * @constructor
 * @mixin {module:zrender/mixin/Eventful}
 *
 * @param {module:zrender/zrender~ZRender} zr
 */
function RoamController(zr) {
L
lang 已提交
33 34

    /**
S
sushuang 已提交
35
     * @type {Function}
L
lang 已提交
36
     */
S
sushuang 已提交
37
    this.pointerChecker;
L
lang 已提交
38

S
sushuang 已提交
39 40 41 42
    /**
     * @type {module:zrender}
     */
    this._zr = zr;
L
lang 已提交
43

S
sushuang 已提交
44 45 46 47
    /**
     * @type {Object}
     */
    this._opt = {};
P
pah100 已提交
48

S
sushuang 已提交
49 50 51 52 53 54 55
    // Avoid two roamController bind the same handler
    var bind = zrUtil.bind;
    var mousedownHandler = bind(mousedown, this);
    var mousemoveHandler = bind(mousemove, this);
    var mouseupHandler = bind(mouseup, this);
    var mousewheelHandler = bind(mousewheel, this);
    var pinchHandler = bind(pinch, this);
P
pah100 已提交
56

S
sushuang 已提交
57
    Eventful.call(this);
P
pah100 已提交
58

S
sushuang 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
    /**
     * @param {Function} pointerChecker
     *                   input: x, y
     *                   output: boolean
     */
    this.setPointerChecker = function (pointerChecker) {
        this.pointerChecker = pointerChecker;
    };

    /**
     * Notice: only enable needed types. For example, if 'zoom'
     * is not needed, 'zoom' should not be enabled, otherwise
     * default mousewheel behaviour (scroll page) will be disabled.
     *
     * @param  {boolean|string} [controlType=true] Specify the control type,
     *                          which can be null/undefined or true/false
     *                          or 'pan/move' or 'zoom'/'scale'
     * @param {Object} [opt]
S
sushuang 已提交
77 78 79
     * @param {Object} [opt.zoomOnMouseWheel=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
     * @param {Object} [opt.moveOnMouseMove=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
     * @param {Object} [opt.moveOnMouseWheel=false] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
S
sushuang 已提交
80 81 82 83 84 85 86 87 88 89
     * @param {Object} [opt.preventDefaultMouseMove=true] When pan.
     */
    this.enable = function (controlType, opt) {

        // Disable previous first
        this.disable();

        this._opt = zrUtil.defaults(zrUtil.clone(opt) || {}, {
            zoomOnMouseWheel: true,
            moveOnMouseMove: true,
S
sushuang 已提交
90
            // By default, wheel do not trigger move.
91
            moveOnMouseWheel: false,
S
sushuang 已提交
92 93 94 95 96
            preventDefaultMouseMove: true
        });

        if (controlType == null) {
            controlType = true;
P
pah100 已提交
97 98
        }

S
sushuang 已提交
99 100 101 102
        if (controlType === true || (controlType === 'move' || controlType === 'pan')) {
            zr.on('mousedown', mousedownHandler);
            zr.on('mousemove', mousemoveHandler);
            zr.on('mouseup', mouseupHandler);
103
        }
S
sushuang 已提交
104 105 106 107 108
        if (controlType === true || (controlType === 'scale' || controlType === 'zoom')) {
            zr.on('mousewheel', mousewheelHandler);
            zr.on('pinch', pinchHandler);
        }
    };
P
pah100 已提交
109

S
sushuang 已提交
110 111 112 113 114 115 116
    this.disable = function () {
        zr.off('mousedown', mousedownHandler);
        zr.off('mousemove', mousemoveHandler);
        zr.off('mouseup', mouseupHandler);
        zr.off('mousewheel', mousewheelHandler);
        zr.off('pinch', pinchHandler);
    };
P
pah100 已提交
117

S
sushuang 已提交
118
    this.dispose = this.disable;
P
pah100 已提交
119

S
sushuang 已提交
120 121 122
    this.isDragging = function () {
        return this._dragging;
    };
P
pah100 已提交
123

S
sushuang 已提交
124 125 126 127
    this.isPinching = function () {
        return this._pinching;
    };
}
P
pah100 已提交
128

S
sushuang 已提交
129
zrUtil.mixin(RoamController, Eventful);
P
pah100 已提交
130

S
sushuang 已提交
131 132

function mousedown(e) {
S
sushuang 已提交
133
    if (eventTool.isMiddleOrRightButtonOnMouseUpDown(e)
S
sushuang 已提交
134 135 136
        || (e.target && e.target.draggable)
    ) {
        return;
P
pah100 已提交
137 138
    }

S
sushuang 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151
    var x = e.offsetX;
    var y = e.offsetY;

    // Only check on mosedown, but not mousemove.
    // Mouse can be out of target when mouse moving.
    if (this.pointerChecker && this.pointerChecker(e, x, y)) {
        this._x = x;
        this._y = y;
        this._dragging = true;
    }
}

function mousemove(e) {
S
sushuang 已提交
152
    if (!this._dragging
S
sushuang 已提交
153
        || !isAvailableBehavior('moveOnMouseMove', e, this._opt)
S
sushuang 已提交
154 155 156 157
        || e.gestureEvent === 'pinch'
        || interactionMutex.isTaken(this._zr, 'globalPan')
    ) {
        return;
P
pah100 已提交
158 159
    }

S
sushuang 已提交
160 161
    var x = e.offsetX;
    var y = e.offsetY;
P
pah100 已提交
162

S
sushuang 已提交
163 164 165 166 167 168 169 170 171 172 173
    var oldX = this._x;
    var oldY = this._y;

    var dx = x - oldX;
    var dy = y - oldY;

    this._x = x;
    this._y = y;

    this._opt.preventDefaultMouseMove && eventTool.stop(e.event);

S
sushuang 已提交
174 175 176
    trigger(this, 'pan', 'moveOnMouseMove', e, {
        dx: dx, dy: dy, oldX: oldX, oldY: oldY, newX: x, newY: y
    });
S
sushuang 已提交
177 178 179
}

function mouseup(e) {
S
sushuang 已提交
180
    if (!eventTool.isMiddleOrRightButtonOnMouseUpDown(e)) {
S
sushuang 已提交
181
        this._dragging = false;
P
pah100 已提交
182
    }
S
sushuang 已提交
183
}
P
pah100 已提交
184

S
sushuang 已提交
185
function mousewheel(e) {
S
sushuang 已提交
186 187
    var shouldZoom = isAvailableBehavior('zoomOnMouseWheel', e, this._opt);
    var shouldMove = isAvailableBehavior('moveOnMouseWheel', e, this._opt);
188 189
    var wheelDelta = e.wheelDelta;
    var absWheelDeltaDelta = Math.abs(wheelDelta);
S
sushuang 已提交
190 191
    var originX = e.offsetX;
    var originY = e.offsetY;
192

S
sushuang 已提交
193
    // wheelDelta maybe -0 in chrome mac.
194
    if (wheelDelta === 0 || (!shouldZoom && !shouldMove)) {
S
sushuang 已提交
195
        return;
P
pah100 已提交
196
    }
S
sushuang 已提交
197 198 199 200 201

    // If both `shouldZoom` and `shouldMove` is true, trigger
    // their event both, and the final behavior is determined
    // by event listener themselves.

202 203 204 205 206 207 208 209 210 211 212 213
    if (shouldZoom) {
        // Convenience:
        // Mac and VM Windows on Mac: scroll up: zoom out.
        // Windows: scroll up: zoom in.

        // FIXME: Should do more test in different environment.
        // wheelDelta is too complicated in difference nvironment
        // (https://developer.mozilla.org/en-US/docs/Web/Events/mousewheel),
        // although it has been normallized by zrender.
        // wheelDelta of mouse wheel is bigger than touch pad.
        var factor = absWheelDeltaDelta > 3 ? 1.4 : absWheelDeltaDelta > 1 ? 1.2 : 1.1;
        var scale = wheelDelta > 0 ? factor : 1 / factor;
S
sushuang 已提交
214 215 216
        checkPointerAndTrigger(this, 'zoom', 'zoomOnMouseWheel', e, {
            scale: scale, originX: originX, originY: originY
        });
217
    }
S
sushuang 已提交
218

219 220 221 222
    if (shouldMove) {
        // FIXME: Should do more test in different environment.
        var absDelta = Math.abs(wheelDelta);
        // wheelDelta of mouse wheel is bigger than touch pad.
S
sushuang 已提交
223
        var scrollDelta = (wheelDelta > 0 ? 1 : -1) * (absDelta > 3 ? 0.4 : absDelta > 1 ? 0.15 : 0.05);
S
sushuang 已提交
224 225 226
        checkPointerAndTrigger(this, 'scrollMove', 'moveOnMouseWheel', e, {
            scrollDelta: scrollDelta, originX: originX, originY: originY
        });
227
    }
S
sushuang 已提交
228
}
P
pah100 已提交
229

S
sushuang 已提交
230 231 232
function pinch(e) {
    if (interactionMutex.isTaken(this._zr, 'globalPan')) {
        return;
P
pah100 已提交
233
    }
234
    var scale = e.pinchScale > 1 ? 1.1 : 1 / 1.1;
S
sushuang 已提交
235 236 237
    checkPointerAndTrigger(this, 'zoom', null, e, {
        scale: scale, originX: e.pinchX, originY: e.pinchY
    });
S
sushuang 已提交
238 239
}

S
sushuang 已提交
240
function checkPointerAndTrigger(controller, eventName, behaviorToCheck, e, contollerEvent) {
S
sushuang 已提交
241 242 243
    if (controller.pointerChecker
        && controller.pointerChecker(e, contollerEvent.originX, contollerEvent.originY)
    ) {
S
sushuang 已提交
244 245 246 247 248
        // When mouse is out of roamController rect,
        // default befavoius should not be be disabled, otherwise
        // page sliding is disabled, contrary to expectation.
        eventTool.stop(e.event);

S
sushuang 已提交
249
        trigger(controller, eventName, behaviorToCheck, e, contollerEvent);
P
pah100 已提交
250
    }
S
sushuang 已提交
251 252
}

S
sushuang 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
function trigger(controller, eventName, behaviorToCheck, e, contollerEvent) {
    // Also provide behavior checker for event listener, for some case that
    // multiple components share one listener.
    contollerEvent.isAvailableBehavior = zrUtil.bind(isAvailableBehavior, null, behaviorToCheck, e);
    controller.trigger(eventName, contollerEvent);
}

// settings: {
//     zoomOnMouseWheel
//     moveOnMouseMove
//     moveOnMouseWheel
// }
// The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
function isAvailableBehavior(behaviorToCheck, e, settings) {
    var setting = settings[behaviorToCheck];
    return !behaviorToCheck || (
        setting && (!zrUtil.isString(setting) || e.event[setting + 'Key'])
    );
S
sushuang 已提交
271
}
P
pah100 已提交
272

S
sushuang 已提交
273
export default RoamController;