anima-yocto-touch
Advanced tools
Comparing version 2.0.6 to 2.0.7
@@ -5,6 +5,2 @@ # History | ||
## 2.0.6 | ||
`refactor` 底层切换为Fastclick,用法保持不变 | ||
## 2.0.5 | ||
@@ -11,0 +7,0 @@ |
{ | ||
"name": "anima-yocto-touch", | ||
"version": "2.0.6", | ||
"version": "2.0.7", | ||
"description": "the touch from yocto", | ||
@@ -28,4 +28,3 @@ "keywords": [ | ||
"anima-yocto-core": "^2.0.0", | ||
"anima-yocto-event": "^2.0.0", | ||
"fastclick": "^1.0.6" | ||
"anima-yocto-event": "^2.0.0" | ||
}, | ||
@@ -32,0 +31,0 @@ "devDependencies": { |
@@ -8,38 +8,28 @@ var $ = require('anima-yocto-core'); | ||
var self = this, | ||
gesture = self[name] || {}, | ||
handler = gesture.handler || {}; | ||
gesture = self[name]; | ||
function move(event) { | ||
handler.touchmove && handler.touchmove(event); | ||
} | ||
function end(event) { | ||
handler.touchend && handler.touchend(event); | ||
document.removeEventListener("touchmove", move, false); | ||
document.removeEventListener("touchend", end, false); | ||
document.removeEventListener("touchcancel", cancel, false); | ||
} | ||
function cancel(event) { | ||
handler.touchcancel && handler.touchcancel(event); | ||
document.removeEventListener("touchmove", move, false); | ||
document.removeEventListener("touchend", end, false); | ||
document.removeEventListener("touchcancel", cancel, false); | ||
} | ||
var bindEvent = function (element) { | ||
if (!element[name]) { //防止同一重复绑定函数 | ||
element[name] = true; | ||
el.addEventListener("touchstart", function (event) { | ||
gesture.handler.touchstart(event); | ||
var $el = $(element); | ||
document.addEventListener("touchmove", move, false); | ||
if (!$el.data(name)) { //防止同一重复绑定函数 | ||
document.addEventListener("touchend", end, false); | ||
$el | ||
.data(name, 1) | ||
.forEach(function (el) { | ||
el.addEventListener("touchstart", function (event) { | ||
gesture.handler.touchstart(event); | ||
}, false); | ||
document.addEventListener("touchcancel", cancel, false); | ||
el.addEventListener("touchmove", function(event){ | ||
gesture.handler.touchmove(event); | ||
}, false); | ||
el.addEventListener("touchend", function(event){ | ||
gesture.handler.touchend(event); | ||
}, false); | ||
// event.preventDefault(); | ||
}, false); | ||
el.addEventListener("touchcancel", function(event){ | ||
gesture.handler.touchcancel(event); | ||
}, false); | ||
}); | ||
} | ||
@@ -46,0 +36,0 @@ }; |
324
src/tap.js
var $ = require('anima-yocto-core'); | ||
var FastClick = require('fastclick'); | ||
var util = require('./util'); | ||
@@ -9,40 +7,312 @@ require('anima-yocto-event'); | ||
var passiveFlag = util.supportPassive(); | ||
var oldFocus = FastClick.prototype.focus; | ||
var Scroll = require('./scroll'); | ||
// iOS11.3 fastclick.js相关bug,详见:https://www.jianshu.com/p/5b578e656966 | ||
FastClick.prototype.focus = function(...args) { | ||
var Gesture = $.gestures; | ||
oldFocus(...args); | ||
var deviceIsAndroid = navigator.userAgent.toLowerCase().indexOf('android') > 0, | ||
deviceIsIOS = /ip(ad|hone|od)/.test(navigator.userAgent.toLowerCase()); | ||
const targetElement = args[0]; | ||
var yoctoTouch = { | ||
trackingClick: false, | ||
trackingClickStart: 0, | ||
targetElement: null, | ||
touchStartX: 0, | ||
touchStartY: 0, | ||
touchBoundary: 10, | ||
tapDelay: 200, | ||
sendClick: function (targetElement, event) { | ||
// 在click之前触发tap事件 | ||
var tap = $.Event('tap', {animaTap: true}) | ||
$(targetElement).trigger(tap); | ||
// 如果支持passive,需要强制进行facus唤起键盘 | ||
if (util.deviceIsIOS && passiveFlag && targetElement.setSelectionRange && targetElement.type.indexOf('date') !== 0 && targetElement.type !== 'time' && targetElement.type !== 'month') { | ||
targetElement.focus && targetElement.focus(); | ||
var clickEvent, touch; | ||
// On some Android devices activeElement needs to be blurred otherwise the synthetic click will have no effect (#24) | ||
if (document.activeElement && document.activeElement !== targetElement) { | ||
document.activeElement.blur(); | ||
} | ||
touch = event.changedTouches[0]; | ||
// Synthesise a click event, with an extra attribute so it can be tracked | ||
clickEvent = document.createEvent('MouseEvents'); | ||
clickEvent.initMouseEvent('click', true, true, window, 1, touch.screenX, touch.screenY, touch.clientX, touch.clientY, false, false, false, false, 0, null); | ||
clickEvent.animaClick = true; | ||
targetElement.dispatchEvent(clickEvent); | ||
}, | ||
needClick: function (target) { | ||
switch (target.nodeName.toLowerCase()) { | ||
// Don't send a synthetic click to disabled inputs (issue #62) | ||
case 'button': | ||
case 'select': | ||
case 'textarea': | ||
if (target.disabled) { | ||
return true; | ||
} | ||
break; | ||
case 'input': | ||
// File inputs need real clicks on iOS 6 due to a browser bug (issue #68) | ||
if ((deviceIsIOS && target.type === 'file') || target.disabled) { | ||
return true; | ||
} | ||
break; | ||
case 'iframe': | ||
case 'video': | ||
return true; | ||
} | ||
return false; | ||
}, | ||
focus: function (targetElement) { | ||
var length; | ||
// on iOS 7, some input elements (e.g. date datetime) throw a vague TypeError on setSelectionRange. These elements don't have an integer value for the selectionStart and selectionEnd properties, but unfortunately that can't be used for detection because accessing the properties also throws a TypeError. Just check the type instead. Filed as Apple bug #15122724. | ||
if (deviceIsIOS && targetElement.setSelectionRange && targetElement.type.indexOf('date') !== 0 && targetElement.type !== 'time') { | ||
length = targetElement.value.length; | ||
targetElement.setSelectionRange(length, length); | ||
} else { | ||
targetElement.focus(); | ||
} | ||
}, | ||
needFocus: function (target) { | ||
switch (target.nodeName.toLowerCase()) { | ||
case 'textarea': | ||
case 'select': //实测android下select也需要 | ||
return true; | ||
case 'input': | ||
switch (target.type) { | ||
case 'button': | ||
case 'checkbox': | ||
case 'file': | ||
case 'image': | ||
case 'radio': | ||
case 'submit': | ||
return false; | ||
} | ||
// No point in attempting to focus disabled inputs | ||
return !target.disabled && !target.readOnly; | ||
default: | ||
return false; | ||
} | ||
}, | ||
updateScrollParent: function (targetElement) { | ||
var scrollParent, parentElement; | ||
scrollParent = targetElement.yoctoTouchScrollParent; | ||
// Attempt to discover whether the target element is contained within a scrollable layer. Re-check if the | ||
// target element was moved to another parent. | ||
if (!scrollParent || !scrollParent.contains(targetElement)) { | ||
parentElement = targetElement; | ||
do { | ||
if (parentElement.scrollHeight > parentElement.offsetHeight) { | ||
scrollParent = parentElement; | ||
targetElement.yoctoTouchScrollParent = parentElement; | ||
break; | ||
} | ||
parentElement = parentElement.parentElement; | ||
} while (parentElement); | ||
} | ||
// Always update the scroll top tracker if possible. | ||
if (scrollParent) { | ||
scrollParent.yoctoTouchLastScrollTop = scrollParent.scrollTop; | ||
} | ||
}, | ||
findControl: function (labelElement) { | ||
// Fast path for newer browsers supporting the HTML5 control attribute | ||
if (labelElement.control !== undefined) { | ||
return labelElement.control; | ||
} | ||
// All browsers under test that support touch events also support the HTML5 htmlFor attribute | ||
if (labelElement.htmlFor) { | ||
return document.getElementById(labelElement.htmlFor); | ||
} | ||
// If no for attribute exists, attempt to retrieve the first labellable descendant element | ||
// the list of which is defined here: http://www.w3.org/TR/html5/forms.html#category-label | ||
return labelElement.querySelector('button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea'); | ||
}, | ||
touchHasMoved: function (event) { | ||
var touch = event.changedTouches[0], boundary = yoctoTouch.touchBoundary; | ||
if (Math.abs(touch.pageX - yoctoTouch.touchStartX) > boundary || Math.abs(touch.pageY - yoctoTouch.touchStartY) > boundary) { | ||
return true; | ||
} | ||
return false; | ||
}, | ||
fixTarget: function (target) { | ||
if (window.SVGElementInstance && (target instanceof SVGElementInstance)) { | ||
target = target.correspondingUseElement; | ||
} | ||
return target; | ||
} | ||
}; | ||
document.addEventListener('DOMContentLoaded', function() { | ||
FastClick.attach(document.body); | ||
}, false); | ||
Gesture.tap = { | ||
events: ['tap', 'click'], | ||
handler: { | ||
touchstart: function (event) { | ||
var targetElement, touch, selection; | ||
$.gestures.list.tap = function() { | ||
var element = document.body; | ||
if (!element.tap) { | ||
element.tap = true; | ||
element.addEventListener('click', function(event){ | ||
var target = event.target || event.srcElement; | ||
var tapEvent = document.createEvent('MouseEvents'); | ||
tapEvent.initMouseEvent('tap', true, true, window, 1, event.screenX, event.screenY, event.clientX, event.clientY, false, false, false, false, 0, null); | ||
tapEvent.animaTap = true; | ||
target.dispatchEvent(tapEvent); | ||
}, false); | ||
// Ignore multiple touches, otherwise pinch-to-zoom is prevented if both fingers are on the yoctoTouch element (issue #111). | ||
if (event.targetTouches.length > 1) { | ||
return true; | ||
} | ||
targetElement = yoctoTouch.fixTarget(event.target); | ||
touch = event.targetTouches[0]; | ||
if (deviceIsIOS) { | ||
// Only trusted events will deselect text on iOS (issue #49) | ||
selection = window.getSelection(); | ||
if (selection.rangeCount && !selection.isCollapsed) { | ||
return true; | ||
} | ||
yoctoTouch.updateScrollParent(targetElement); | ||
} | ||
yoctoTouch.trackingClick = true; | ||
yoctoTouch.trackingClickStart = event.timeStamp; | ||
yoctoTouch.targetElement = targetElement; | ||
// var now = Date.now(), | ||
// delta = now - (yoctoTouch.last || now); | ||
// if(delta > 0 && delta <= 250){ | ||
// yoctoTouch.isDouleTap = true; | ||
// } | ||
// yoctoTouch.last = now; | ||
yoctoTouch.touchStartX = touch.pageX; | ||
yoctoTouch.touchStartY = touch.pageY; | ||
// Prevent phantom clicks on fast double-tap (issue #36) | ||
if ((event.timeStamp - yoctoTouch.lastClickTime) < yoctoTouch.tapDelay) { | ||
event.preventDefault(); | ||
} | ||
return true; | ||
}, | ||
touchmove: function (event) { | ||
if (!yoctoTouch.trackingClick) { | ||
return true; | ||
} | ||
// If the touch has moved, cancel the click tracking | ||
if (yoctoTouch.targetElement !== yoctoTouch.fixTarget(event.target) || yoctoTouch.touchHasMoved(event)) { | ||
yoctoTouch.trackingClick = false; | ||
yoctoTouch.targetElement = null; | ||
} | ||
return true; | ||
}, | ||
touchend: function (event) { | ||
if(Scroll.scrolling){ | ||
return true; | ||
} | ||
Scroll.judge($(window).scrollTop()); | ||
var forElement, trackingClickStart, targetTagName, scrollParent, touch, targetElement = yoctoTouch.targetElement; | ||
if (!yoctoTouch.trackingClick) { | ||
return true; | ||
} | ||
// Prevent phantom clicks on fast double-tap (issue #36) | ||
if ((event.timeStamp - yoctoTouch.lastClickTime) < yoctoTouch.tapDelay) { | ||
yoctoTouch.cancelNextClick = true; | ||
return true; | ||
} | ||
// Reset to prevent wrong click cancel on input (issue #156). | ||
yoctoTouch.cancelNextClick = false; | ||
yoctoTouch.lastClickTime = event.timeStamp; | ||
trackingClickStart = yoctoTouch.trackingClickStart; | ||
yoctoTouch.trackingClick = false; | ||
yoctoTouch.trackingClickStart = 0; | ||
targetTagName = targetElement.tagName.toLowerCase(); | ||
if (targetTagName === 'label') { | ||
forElement = yoctoTouch.findControl(targetElement); | ||
if (forElement) { | ||
yoctoTouch.focus(targetElement); | ||
if (deviceIsAndroid) { | ||
return false; | ||
} | ||
targetElement = forElement; | ||
} | ||
} else if (yoctoTouch.needFocus(targetElement)) { | ||
// Case 1: If the touch started a while ago (best guess is 100ms based on tests for issue #36) then focus will be triggered anyway. Return early and unset the target element reference so that the subsequent click will be allowed through. | ||
// Case 2: Without this exception for input elements tapped when the document is contained in an iframe, then any inputted text won't be visible even though the value attribute is updated as the user types (issue #37). | ||
if ((event.timeStamp - trackingClickStart) > 100 || (deviceIsIOS && window.top !== window && targetTagName === 'input')) { | ||
yoctoTouch.targetElement = null; | ||
return false; | ||
} | ||
yoctoTouch.focus(targetElement); | ||
deviceIsAndroid && yoctoTouch.sendClick(targetElement, event); | ||
return false; | ||
} | ||
if (deviceIsIOS) { | ||
// Don't send a synthetic click event if the target element is contained within a parent layer that was scrolled | ||
// and this tap is being used to stop the scrolling (usually initiated by a fling - issue #42). | ||
scrollParent = targetElement.yoctoTouchScrollParent; | ||
if (scrollParent && scrollParent.yoctoTouchLastScrollTop !== scrollParent.scrollTop) { | ||
return true; | ||
} | ||
} | ||
// Prevent the actual click from going though - unless the target node is marked as requiring | ||
// real clicks or if it is in the whitelist in which case only non-programmatic clicks are permitted. | ||
if (!yoctoTouch.needClick(targetElement)) { | ||
event.preventDefault(); | ||
yoctoTouch.sendClick(targetElement, event); | ||
} | ||
return false; | ||
}, | ||
touchcancel: function () { | ||
yoctoTouch.trackingClick = false; | ||
yoctoTouch.targetElement = null; | ||
} | ||
} | ||
}; | ||
$.fn.tap = function(callback) { | ||
return this.on('tap', callback); | ||
Gesture.init('tap'); | ||
// 重写initEvent事件,确保模拟出来的click事件带有animaClick标识 | ||
var oldInitEvent = Event.prototype.initEvent; | ||
Event.prototype.initEvent = function () { | ||
var args = Array.prototype.slice.call(arguments); | ||
oldInitEvent.apply(this, args) | ||
if (args[0] === 'click') { | ||
this.animaClick = true | ||
} | ||
}; | ||
module.exports = $; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
47834
2
394
- Removedfastclick@^1.0.6
- Removedfastclick@1.0.6(transitive)