all files / dom/event/ share.js

98.7% Statements 152/154
92.24% Branches 107/116
95.83% Functions 23/24
98.7% Lines 152/154
30 statements, 7 functions, 19 branches Ignored     
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          54× 54×               161× 159×     159× 159×   159×     159×     159× 159×   159× 143× 133×   10×     159×   159× 85×   159× 157× 157×     159×             166×         11×                   328× 328× 64× 64× 64× 52× 52×   64× 48×           328× 328× 328× 267×         61× 61× 61× 61× 61× 61×   61× 46× 46× 46× 50×     50× 50× 50× 50×     50×   50×                     133× 133×   11× 11× 11× 11×                                       63×   62× 3400× 3217×     62×   62× 62× 62× 62×                                                                            
import { avalon, _slice, eventHooks, modern, window, document, root, getShortID } from '../../seed/core'
import { canBubbleUp } from './canBubbleUp'
/* istanbul ignore if */
var hackSafari = avalon.modern && document.ontouchstart
 
//添加fn.bind, fn.unbind, bind, unbind
avalon.fn.bind = function(type, fn, phase) {
    Eif (this[0]) { //此方法不会链
        return avalon.bind(this[0], type, fn, phase)
    }
}
 
avalon.fn.unbind = function(type, fn, phase) {
    Eif (this[0]) {
        var args = _slice.call(arguments)
        args.unshift(this[0])
        avalon.unbind.apply(0, args)
    }
    return this
}
 
/*绑定事件*/
avalon.bind = function(elem, type, fn) {
    if (elem.nodeType === 1) {
        var value = elem.getAttribute('avalon-events') || ''
            //如果是使用ms-on-*绑定的回调,其uuid格式为e12122324,
            //如果是使用bind方法绑定的回调,其uuid格式为_12
        var uuid = getShortID(fn)
        var hook = eventHooks[type]
            /* istanbul ignore if */
        Iif (type === 'click' && hackSafari) {
            elem.addEventListener('click', avalon.noop)
        }
        /* istanbul ignore if */
        if (hook) {
            type = hook.type || type
            Iif (hook.fix) {
                fn = hook.fix(elem, fn)
                fn.uuid = uuid
            }
        }
        var key = type + ':' + uuid
        avalon.eventListeners[fn.uuid] = fn
            /* istanbul ignore if */
        if (value.indexOf(type + ':') === -1) { //同一种事件只绑定一次
            if (canBubbleUp[type] || (avalon.modern && focusBlur[type])) {
                delegateEvent(type)
            } else {
                avalon._nativeBind(elem, type, dispatch)
            }
        }
        var keys = value.split(',')
            /* istanbul ignore if */
        if (keys[0] === '') {
            keys.shift()
        }
        if (keys.indexOf(key) === -1) {
            keys.push(key)
            setEventId(elem, keys.join(','))
                //将令牌放进avalon-events属性中
        }
        return fn
    } else {
        /* istanbul ignore next */
        function cb(e) {
            fn.call(elem, new avEvent(e))
        }
        avalon._nativeBind(elem, type, cb)
        return cb
    }
}
 
function setEventId(node, value) {
    node.setAttribute('avalon-events', value)
}
/* istanbul ignore next */
avalon.unbind = function(elem, type, fn) {
    Eif (elem.nodeType === 1) {
        var value = elem.getAttribute('avalon-events') || ''
        switch (arguments.length) {
            case 1:
                avalon._nativeUnBind(elem, type, dispatch)
                elem.removeAttribute('avalon-events')
                break
            case 2:
                value = value.split(',').filter(function(str) {
                    return str.indexOf(type + ':') === -1
                }).join(',')
                setEventId(elem, value)
                break
            default:
                var search = type + ':' + fn.uuid
                value = value.split(',').filter(function(str) {
                    return str !== search
                }).join(',')
                setEventId(elem, value)
                delete avalon.eventListeners[fn.uuid]
                break
        }
    } else {
        avalon._nativeUnBind(elem, type, fn)
    }
}
 
var typeRegExp = {}
 
function collectHandlers(elem, type, handlers) {
    var value = elem.getAttribute('avalon-events')
    if (value && (elem.disabled !== true || type !== 'click')) {
        var uuids = []
        var reg = typeRegExp[type] || (typeRegExp[type] = new RegExp("\\b" + type + '\\:([^,\\s]+)', 'g'))
        value.replace(reg, function(a, b) {
            uuids.push(b)
            return a
        })
        if (uuids.length) {
            handlers.push({
                elem: elem,
                uuids: uuids
            })
        }
    }
    elem = elem.parentNode
    var g = avalon.gestureEvents || {}
    if (elem && elem.getAttribute && (canBubbleUp[type] || g[type])) {
        collectHandlers(elem, type, handlers)
    }
}
 
var rhandleHasVm = /^e/
 
function dispatch(event) {
    event = new avEvent(event)
    var type = event.type
    var elem = event.target
    var handlers = []
    collectHandlers(elem, type, handlers)
    var i = 0,
        j, uuid, handler
    while ((handler = handlers[i++]) && !event.cancelBubble) {
        var host = event.currentTarget = handler.elem
        j = 0
        while ((uuid = handler.uuids[j++])) {
            Iif (event.stopImmediate) {
                break
            }
            var fn = avalon.eventListeners[uuid]
            Eif (fn) {
                var vm = rhandleHasVm.test(uuid) ? handler.elem._ms_context_ : 0
                Iif (vm && vm.$hashcode === false) {
                    return avalon.unbind(elem, type, fn)
                }
                var ret = fn.call(vm || elem, event)
 
                if (ret === false) {
                    event.preventDefault()
                    event.stopPropagation()
                }
            }
        }
    }
}
 
var focusBlur = {
    focus: true,
    blur: true
}
 
function delegateEvent(type) {
    var value = root.getAttribute('delegate-events') || ''
    if (value.indexOf(type) === -1) {
        //IE6-8会多次绑定同种类型的同一个函数,其他游览器不会
        var arr = value.match(avalon.rword) || []
        arr.push(type)
        root.setAttribute('delegate-events', arr.join(','))
        avalon._nativeBind(root, type, dispatch, !!focusBlur[type])
    }
}
 
var eventProto = {
    webkitMovementY: 1,
    webkitMovementX: 1,
    keyLocation: 1,
    fixEvent: function() {},
    preventDefault: function() {
        var e = this.originalEvent || {}
        e.returnValue = this.returnValue = false
        if (modern && e.preventDefault) {
            e.preventDefault()
        }
    },
    stopPropagation: function() {
        var e = this.originalEvent || {}
        e.cancelBubble = this.cancelBubble = true
        if (modern && e.stopPropagation) {
            e.stopPropagation()
        }
    },
    stopImmediatePropagation: function() {
        this.stopPropagation()
        this.stopImmediate = true
    },
    toString: function() {
        return '[object Event]' //#1619
    }
}
 
export function avEvent(event) {
    if (event.originalEvent) {
        return event
    }
    for (var i in event) {
        if (!eventProto[i]) {
            this[i] = event[i]
        }
    }
    if (!this.target) {
        this.target = event.srcElement
    }
    var target = this.target
    this.fixEvent()
    this.timeStamp = new Date() - 0
    this.originalEvent = event
}
avEvent.prototype = eventProto
    //针对firefox, chrome修正mouseenter, mouseleave
    /* istanbul ignore if */
Iif (!('onmouseenter' in root)) {
    avalon.each({
        mouseenter: 'mouseover',
        mouseleave: 'mouseout'
    }, function(origType, fixType) {
        eventHooks[origType] = {
            type: fixType,
            fix: function(elem, fn) {
                return function(e) {
                    var t = e.relatedTarget
                    if (!t || (t !== elem && !(elem.compareDocumentPosition(t) & 16))) {
                        delete e.type
                        e.type = origType
                        return fn.apply(this, arguments)
                    }
                }
            }
        }
    })
}
//针对IE9+, w3c修正animationend
avalon.each({
    AnimationEvent: 'animationend',
    WebKitAnimationEvent: 'webkitAnimationEnd'
}, function(construct, fixType) {
    if (window[construct] && !eventHooks.animationend) {
        eventHooks.animationend = {
            type: fixType
        }
    }
})
 
/* istanbul ignore if */
Eif (!("onmousewheel" in document)) {
    /* IE6-11 chrome mousewheel wheelDetla 下 -120 上 120
     firefox DOMMouseScroll detail 下3 上-3
     firefox wheel detlaY 下3 上-3
     IE9-11 wheel deltaY 下40 上-40
     chrome wheel deltaY 下100 上-100 */
    var fixWheelType = document.onwheel !== void 0 ? 'wheel' : 'DOMMouseScroll'
    var fixWheelDelta = fixWheelType === 'wheel' ? 'deltaY' : 'detail'
    eventHooks.mousewheel = {
        type: fixWheelType,
        fix: function(elem, fn) {
            return function(e) {
                var delta = e[fixWheelDelta] > 0 ? -120 : 120
                e.wheelDelta = ~~elem._ms_wheel_ + delta
                elem._ms_wheel_ = e.wheelDeltaY = e.wheelDelta
                e.wheelDeltaX = 0
                if (Object.defineProperty) {
                    Object.defineProperty(e, 'type', {
                        value: 'mousewheel'
                    })
                }
                return fn.apply(this, arguments)
            }
        }
    }
}