-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIO.Browser.js
223 lines (203 loc) · 8.05 KB
/
IO.Browser.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
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
console.assert(IO);
(function (Browser) {
//////////////////////////////////////
// Binding UI elements to IO actions.
// 'on' associates an action with an event generated
// by a GUI element. Use the IO.Browser.off action within
// the triggered action sequence to dissociate the action from
// the GUI element.
//
// Ex:
// IO.Browser.on('sendButton', 'click', IO.log('button clicked'));
//
// // One-time action
// IO.Browser.on('sendButton', 'click', IO.do([
// IO.log('Rocket launched .. won't happen again!'),
// IO.Browser.off
// ]));
//
// // html
// <button id="sendButton">Send</button>
Browser.on = function (element, eventName, action) {
if (typeof element === 'string') {
// Use getElementById to resolve. Works only in a browser.
element = document.getElementById(element);
// Try selector if the specified string is not an id.
if (!element) {
element = document.querySelector(element);
}
}
// It is a programming error to bind an action to a non-existent element.
console.assert(element);
// Support both DOM-style UI elements as well as
// Backbone.js-style event emitters.
var off;
if (element.removeEventListener) {
off = function () {
element.removeEventListener(eventName, listener);
};
} else if (element.off) {
off = function () {
element.off(eventName, listener);
};
}
console.assert(off);
function listener(event) {
var Ex = Object.create(IO.Ex);
Ex.off = off;
Ex.run(event, action);
}
if (element.addEventListener) {
element.addEventListener(eventName, listener);
} else if (element.on) {
element.on(eventName, listener);
} else {
console.assert(false);
}
};
// When run within an action sequence bound to a UI element,
// this will dissociate the action from it.
Browser.off = function (Ex, input, success, failure) {
console.assert(Ex.off);
Ex.off();
Ex.call(success, input, Ex.drain, failure);
};
// Sets the UI element's 'value' to the received input.
// Passes the input through.
//
// @param element HTMLElement instance.
// @param setter Must be either a string naming one of the builtin setters
// or a function of the form function (element, input) { ... }
// Default is 'value'.
// @param formatter
//
// Available built-in setters are 'value', 'innerText', 'innerHTML' and 'children'.
// If you want the input to be appended, you can suffix the names with
// a '+', so 'innerText+' will result in the input being appended as text
// to the contents of the element. Prefixing with '+' will result in the
// input being prepended to the contents. Note that in the case of 'value',
// '+' may be interpreted as numeric addition or string concatenation depending
// on the element type.
//
// Ex:
// IO.run('start', IO.do([
// IO.clock(1000),
// IO.Browser.show('counter', 'innerText')
// ]));
//
// <span id='counter'></span>
//
Browser.show = function (element, setter, formatter) {
if (typeof element === 'string') {
// Use getElementById to resolve. Works only in a browser.
element = document.getElementById(element);
}
console.assert(element);
formatter = formatter || function (input) { return input; };
if (setter === null || setter === undefined) {
setter = commonElementSetters.value;
} else {
if (typeof setter === 'string') {
setter = commonElementSetters[setter];
console.assert(setter);
} else {
console.assert(typeof setter === 'function');
}
}
return function show_(M, input, success, failure) {
setter(element, formatter(input));
// We continue, so that multiple shows can be setup
// for the same input.
M.call(success, input, M.drain, failure);
};
};
var commonElementSetters = {
'value': function (element, input) {
element.value = input;
},
'value+': function (element, input) {
element.value += input;
},
'+value': function (element, input) {
element.value = input + element.value;
},
'innerText': function (element, input) {
element.innerText = input;
},
'+innerText': function (element, input) {
element.innerText = input + element.innerText;
},
'innerText+': function (element, input) {
element.innerText += input;
},
'innerHTML': function (element, input) {
element.innerHTML = input;
},
'+innerHTML': function (element, input) {
element.innerHTML = input + element.innerHTML;
},
'innerHTML+': function (element, input) {
element.innerHTML += input;
},
'children': function (element, input) {
console.assert(input instanceof HTMLElement);
while (element.childElementCount > 0) {
element.removeChild(element.lastElementChild);
}
element.insertAdjacentElement('beforeend', input);
},
'children+': function (element, input) {
console.assert(input instanceof HTMLElement);
element.insertAdjacentElement('beforeend', input);
},
'+children': function (element, input) {
console.assert(input instanceof HTMLElement);
element.insertAdjacentElement('afterbegin', input);
}
};
// IO.Browser.get('url://somewhere/something', undefined, 'responseText')
//
// Will fetch the URL and pass the contents to the next stage.
// Simple wrapper fro XMLHttpRequest.
//
// The returned action has a property named 'interrupt'. This is an
// action which when run will cause the sequence (and the orchestrator
// that's running it) executing the get action to abort with the
// 'interrupted' condition. This uses IO.interruptible. Note that
// the interrupt action can be run within any orchestrator.
Browser.get = function (url, responseType, responseKey) {
return IO.interruptible(function (oninterrupt) {
return function xmlhttprequest_(M, input, success, failure) {
var request = new XMLHttpRequest();
var thisResponseKey = responseKey;
var done = false;
request.open('GET', url, true);
if (responseType) {
request.responseType = responseType;
thisResponseKey = thisResponseKey || 'response';
}
thisResponseKey = thisResponseKey || 'responseText';
request.onload = function () {
var response = request[thisResponseKey];
done = true;
if (response) {
M.call(success, response, M.drain, failure);
} else {
request.onerror();
}
};
request.onerror = function () {
done = true;
M.call(IO.raise('XMLHttpRequestFailed', url, responseType, thisResponseKey), input, success, failure);
};
oninterrupt(function () {
if (!done) {
request.abort();
M.delay(0, IO.raise('interrupted'), {reason: 'XMLHttpRequestInterrupted', input: input}, success, failure);
}
});
request.send();
};
});
};
}(IO.Browser = {}));