-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.js
168 lines (149 loc) · 5 KB
/
node.js
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
define(["heya-has/sniff", "heya-dom/dom", "heya-events/EventSource"],
function(has, dom, EventSource){
"use strict";
has.add("event-orientationchange", has("touch") && !has("android")); // TODO: how do we detect this?
has.add("event-stopimmediatepropagation", function(global){
return global.Event && global.Event.prototype && !!global.Event.prototype.stopImmediatePropagation;
});
has.add("event-focusin", function(global, doc, element){
// All browsers except firefox support focusin, but too hard to feature test webkit since element.onfocusin
// is undefined. Just return true for IE and use fallback path for other browsers.
return !!element.attachEvent;
});
// assumption: all modern browsers support stopImmediatePropagation() per MDN
var touchEvents = /^touch/, captures = {focusin: "focus", focusout: "blur"};
function NodeEvents(source, type, filter){
EventSource.call(this);
this.source = dom.byId(source);
this._removals = [];
if(this.source && type){
var self = this;
if(typeof type == "string"){
type.replace(/\b\w+\b/g, function(name){
self.attach(name);
return "";
});
}else if(type instanceof Array){
type.forEach(function(name){
self.attach(name);
});
}
}
if(filter){
this.micro.callback = EventSource.makeMultiplexer(this, filter);
}
}
NodeEvents.prototype = Object.create(EventSource.prototype);
NodeEvents.prototype.destroy =
NodeEvents.prototype.remove =
NodeEvents.prototype.release = function release(){
this.remove();
EventSource.prototype.release.call(this);
};
NodeEvents.prototype.attach = function(type){
if(typeof type == "function"){
return type(this);
}
var source = this.source, cb = listener, capture = false;
// test to see if it a touch event right now, so we don't have to do it every time it fires
if(has("touch")){
if(touchEvents.test(type)){
// touch event, fix it
cb = _touchListener;
}else if(!has("event-orientationchange") && (type == "orientationchange")){
//"orientationchange" not supported <= Android 2.1,
//but works through "resize" on window
type = "resize";
source = window;
cb = touchListener;
}
}
// the source has addEventListener, which should be used if available (might or might not be a node, non-nodes can implement this method as well)
// check for capture conversions
if(!has("event-focusin") && captures[type]){
type = captures[type];
capture = true;
}
cb = cb.bind(this);
source.addEventListener(type, cb, capture);
this._removals.push(function(){
source.removeEventListener(type, cb, capture);
});
};
NodeEvents.prototype.dispatch = function(evt){
this.micro.send(new EventSource.Value(evt));
};
NodeEvents.prototype.remove = function(){
this._removals.forEach(function(f){ f(); });
this._removals = [];
};
// utilities
function listener(evt){
this.dispatch(evt);
}
var windowOrientation = window.orientation;
function PseudoEvent(){}
function touchListener(evt){
//Event normalization(for ontouchxxx and resize):
//1.incorrect e.pageX|pageY in iOS
//2.there are no "e.rotation", "e.scale" and "onorientationchange" in Android
//3.More TBD e.g. force | screenX | screenX | clientX | clientY | radiusX | radiusY
// see if it has already been corrected
if(evt.corrected){
evt = evt.corrected;
}else{
var type = evt.type, newEvt;
try{
delete evt.type; // on some JS engines (android), deleting properties make them mutable
}catch(e){}
if(evt.type){
// deleting properties doesn't work (older iOS), have to use delegation
if(has("mozilla")){
// Firefox doesn't like delegated properties, so we have to copy
newEvt = {};
for(var name in evt){
newEvt[name] = evt[name];
}
}else{
// old iOS branch
PseudoEvent.prototype = evt;
newEvt = new PseudoEvent;
}
// have to delegate methods to make them work
newEvt.preventDefault = function(){
evt.preventDefault();
};
newEvt.stopPropagation = function(){
evt.stopPropagation();
};
}else{
// deletion worked, use property as is
newEvt = evt;
newEvt.type = type;
}
evt.corrected = newEvt;
if(type == "resize"){
if(windowOrientation === window.orientation){
return; //double tap causes an unexpected 'resize' in Android
}
windowOrientation = window.orientation;
newEvt.type = "orientationchange";
}else{
// We use the original event and augment, rather than doing an expensive mixin operation
if(!("rotation" in newEvt)){ // test to see if it has rotation
newEvt.rotation = 0;
newEvt.scale = 1;
}
//use newEvt.changedTouches[0].pageX|pageY|screenX|screenY|clientX|clientY|target
var firstChangeTouch = newEvt.changedTouches[0];
for(var i in firstChangeTouch){ // use for-in, we don't need to have dependency on dojo/_base/lang here
delete newEvt[i]; // delete it first to make it mutable
newEvt[i] = firstChangeTouch[i];
}
}
evt = newEvt;
}
this.dispatch(evt);
}
return NodeEvents;
});