]>
Commit | Line | Data |
---|---|---|
fd7853a6 JF |
1 | /* XXX: this message is ultra-lame */ |
2 | var _assert = function (expr, value) { | |
6f1a15d9 | 3 | if (!expr) { |
fd7853a6 JF |
4 | var message = "_assert(" + value + ")"; |
5 | console.log(message); | |
6f1a15d9 JF |
6 | throw message; |
7 | } | |
8 | } | |
fd7853a6 | 9 | |
6f1a15d9 JF |
10 | // Compatibility {{{ |
11 | if (typeof Array.prototype.push != "function") | |
12 | Array.prototype.push = function (value) { | |
13 | this[this.length] = value; | |
14 | }; | |
15 | // }}} | |
16 | ||
17 | var $ = function (arg, doc) { | |
18 | if (this.magic_ != $.prototype.magic_) | |
19 | return new $(arg); | |
20 | ||
fd7853a6 JF |
21 | if (arg == null) |
22 | arg = []; | |
23 | ||
6f1a15d9 JF |
24 | var type = $.type(arg); |
25 | ||
26 | if (type == "function") | |
27 | $.ready(arg); | |
28 | else if (type == "string") { | |
fd7853a6 | 29 | if (typeof doc == 'undefined') |
6f1a15d9 | 30 | doc = document; |
25a2158d | 31 | if (arg.charAt(0) == '#') { |
fd7853a6 JF |
32 | /* XXX: this is somewhat incorrect-a-porter */ |
33 | var element = doc.getElementById(arg.substring(1)); | |
34 | return $(element == null ? [] : [element]); | |
35 | } else if (arg.charAt(0) == '.') | |
36 | return $(doc.getElementsByClassName(arg.substring(1))); | |
37 | else | |
6f1a15d9 | 38 | return $([doc]).descendants(arg); |
fd7853a6 JF |
39 | } else if (typeof arg.length != 'undefined') { |
40 | _assert(typeof doc == 'undefined', "non-query with document to $"); | |
41 | this.set(arg); | |
6f1a15d9 | 42 | return this; |
fd7853a6 | 43 | } else _assert(false, "unknown argument to $: " + typeof arg); |
6f1a15d9 JF |
44 | }; |
45 | ||
affeffc7 JF |
46 | $.xml = function (value) { |
47 | return value | |
48 | .replace(/&/, "&") | |
49 | .replace(/</, "<") | |
50 | .replace(/>/, ">") | |
51 | .replace(/"/, """) | |
52 | .replace(/'/, "'") | |
53 | ; | |
54 | } | |
55 | ||
6f1a15d9 JF |
56 | $.type = function (value) { |
57 | var type = typeof value; | |
58 | ||
fd7853a6 JF |
59 | if ((type == "function" || type == "object") && value.toString != null) { |
60 | var string = value.toString(); | |
61 | if (string.substring(0, 8) == "[object ") | |
62 | return string.substring(8, string.length - 1); | |
63 | } | |
64 | ||
65 | return type; | |
6f1a15d9 JF |
66 | }; |
67 | ||
68 | (function () { | |
69 | var ready_ = null; | |
70 | ||
71 | $.ready = function (_function) { | |
72 | if (ready_ == null) { | |
73 | ready_ = []; | |
74 | ||
75 | document.addEventListener("DOMContentLoaded", function () { | |
76 | for (var i = 0; i != ready_.length; ++i) | |
77 | ready_[i](); | |
78 | }, false); | |
79 | } | |
80 | ||
81 | ready_.push(_function); | |
82 | }; | |
83 | })(); | |
84 | ||
85 | /* XXX: verify arg3 overflow */ | |
86 | $.each = function (values, _function, arg0, arg1, arg2) { | |
87 | for (var i = 0, e = values.length; i != e; ++i) | |
88 | _function(values[i], arg0, arg1, arg2); | |
89 | }; | |
90 | ||
91 | /* XXX: verify arg3 overflow */ | |
92 | $.map = function (values, _function, arg0, arg1, arg2) { | |
93 | var mapped = []; | |
94 | for (var i = 0, e = values.length; i != e; ++i) | |
95 | mapped.push(_function(values[i], arg0, arg1, arg2)); | |
96 | return mapped; | |
97 | }; | |
98 | ||
99 | $.array = function (values) { | |
100 | if (values.constructor == Array) | |
101 | return values; | |
fd7853a6 | 102 | _assert(typeof values.length != 'undefined', "$.array on underlying non-array"); |
6f1a15d9 JF |
103 | var array = []; |
104 | for (var i = 0; i != values.length; ++i) | |
105 | array.push(values[i]); | |
106 | return array; | |
107 | }; | |
108 | ||
109 | $.document = function (node) { | |
110 | for (;;) { | |
111 | var parent = node.parentNode; | |
112 | if (parent == null) | |
113 | return node; | |
114 | node = parent; | |
115 | } | |
116 | }; | |
117 | ||
fd7853a6 JF |
118 | $.reclass = function (_class) { |
119 | return new RegExp('(\\s|^)' + _class + '(\\s|$)'); | |
120 | }; | |
121 | ||
6f1a15d9 JF |
122 | $.prototype = { |
123 | magic_: 2041085062, | |
124 | ||
125 | add: function (nodes) { | |
fd7853a6 JF |
126 | Array.prototype.push.apply(this, $.array(nodes)); |
127 | }, | |
128 | ||
129 | at: function (name, value) { | |
130 | if (typeof value == 'undefined') | |
131 | return $.map(this, function (node) { | |
132 | return node.getAttribute(name); | |
133 | }); | |
134 | else if (value == null) | |
135 | $.each(this, function (node) { | |
136 | node.removeAttribute(); | |
137 | }); | |
138 | else | |
139 | $.each(this, function (node) { | |
140 | node.setAttribute(name, value); | |
141 | }); | |
6f1a15d9 JF |
142 | }, |
143 | ||
144 | set: function (nodes) { | |
145 | this.length = 0; | |
146 | this.add(nodes); | |
147 | }, | |
148 | ||
fd7853a6 JF |
149 | /* XXX: verify arg3 overflow */ |
150 | each: function (_function, arg0, arg1, arg2) { | |
151 | $.each(this, function (node) { | |
152 | _function($([node]), arg0, arg1, arg2); | |
153 | }); | |
154 | }, | |
155 | ||
6f1a15d9 JF |
156 | css: function (name, value) { |
157 | $.each(this, function (node) { | |
158 | node.style[name] = value; | |
159 | }); | |
160 | }, | |
161 | ||
fd7853a6 JF |
162 | addClass: function (_class) { |
163 | $.each(this, function (node) { | |
164 | if (!$([node]).hasClass(_class)[0]) | |
165 | node.className += " " + _class; | |
166 | }); | |
167 | }, | |
168 | ||
169 | blur: function () { | |
170 | $.each(this, function (node) { | |
171 | node.blur(); | |
172 | }); | |
173 | }, | |
174 | ||
175 | focus: function () { | |
176 | $.each(this, function (node) { | |
177 | node.focus(); | |
178 | }); | |
179 | }, | |
180 | ||
181 | removeClass: function (_class) { | |
182 | $.each(this, function (node) { | |
183 | node.className = node.className.replace($.reclass(_class), ' '); | |
184 | }); | |
185 | }, | |
186 | ||
187 | hasClass: function (_class) { | |
188 | return $.map(this, function (node) { | |
189 | return node.className.match($.reclass(_class)); | |
190 | }); | |
191 | }, | |
192 | ||
9dd60d81 JF |
193 | append: function (children) { |
194 | if ($.type(children) == "string") | |
195 | $.each(this, function (node) { | |
196 | var doc = $.document(node); | |
197 | ||
198 | // XXX: implement wrapper system | |
199 | var div = doc.createElement("div"); | |
200 | div.innerHTML = children; | |
201 | ||
202 | while (div.childNodes.length != 0) { | |
203 | var child = div.childNodes[0]; | |
204 | node.appendChild(child); | |
205 | } | |
206 | }); | |
207 | else | |
208 | $.each(this, function (node) { | |
209 | $.each(children, function (child) { | |
210 | node.appendChild(child); | |
211 | }); | |
212 | }); | |
213 | }, | |
214 | ||
215 | xpath: function (expression) { | |
216 | var value = $([]); | |
217 | ||
fd7853a6 | 218 | $.each(this, function (node) { |
6f1a15d9 | 219 | var doc = $.document(node); |
9dd60d81 JF |
220 | var results = doc.evaluate(expression, node, null, XPathResult.ANY_TYPE, null); |
221 | var result; | |
222 | while (result = results.iterateNext()) | |
223 | value.add([result]); | |
224 | }); | |
6f1a15d9 | 225 | |
9dd60d81 JF |
226 | return value; |
227 | }, | |
6f1a15d9 | 228 | |
9dd60d81 JF |
229 | clone: function (deep) { |
230 | return $($.map(this, function (node) { | |
231 | return node.cloneNode(deep); | |
232 | })); | |
6f1a15d9 JF |
233 | }, |
234 | ||
235 | descendants: function (expression) { | |
236 | var descendants = $([]); | |
237 | ||
238 | $.each(this, function (node) { | |
fd7853a6 JF |
239 | var nodes = node.getElementsByTagName(expression); |
240 | descendants.add(nodes); | |
6f1a15d9 JF |
241 | }); |
242 | ||
243 | return descendants; | |
244 | }, | |
245 | ||
246 | remove: function () { | |
247 | $.each(this, function (node) { | |
248 | node.parentNode.removeChild(node); | |
249 | }); | |
6f1a15d9 JF |
250 | } |
251 | }; | |
252 | ||
253 | $.scroll = function (x, y) { | |
254 | window.scrollTo(x, y); | |
255 | }; | |
256 | ||
257 | // XXX: document.all? | |
258 | $.all = function (doc) { | |
fd7853a6 | 259 | if (typeof doc == 'undefined') |
6f1a15d9 JF |
260 | doc = document; |
261 | return $(doc.getElementsByTagName("*")); | |
262 | }; | |
263 | ||
264 | $.inject = function (a, b) { | |
265 | if ($.type(a) == "string") { | |
266 | $.prototype[a] = function (value) { | |
fd7853a6 | 267 | if (typeof value == 'undefined') |
6f1a15d9 JF |
268 | return $.map(this, function (node) { |
269 | return b.get(node); | |
270 | }); | |
271 | else | |
272 | $.each(this, function (node, value) { | |
273 | b.set(node, value); | |
274 | }, value); | |
275 | }; | |
276 | } else for (var name in a) | |
277 | $.inject(name, a[name]); | |
278 | }; | |
279 | ||
280 | $.inject({ | |
fd7853a6 JF |
281 | _default: { |
282 | get: function (node) { | |
283 | return node.style.defaultValue; | |
284 | }, | |
285 | set: function (node, value) { | |
286 | node.style.defaultValue = value; | |
287 | } | |
288 | }, | |
289 | ||
f79a4512 JF |
290 | height: { |
291 | get: function (node) { | |
292 | return node.height; | |
293 | }, | |
294 | set: function (node, value) { | |
295 | node.height = value; | |
296 | } | |
297 | }, | |
298 | ||
6f1a15d9 JF |
299 | html: { |
300 | get: function (node) { | |
301 | return node.innerHTML; | |
302 | }, | |
303 | set: function (node, value) { | |
304 | node.innerHTML = value; | |
305 | } | |
306 | }, | |
307 | ||
308 | href: { | |
309 | get: function (node) { | |
310 | return node.href; | |
311 | }, | |
312 | set: function (node, value) { | |
313 | node.href = value; | |
314 | } | |
315 | }, | |
316 | ||
fd7853a6 | 317 | name: { |
affeffc7 | 318 | get: function (node) { |
fd7853a6 | 319 | return node.name; |
affeffc7 JF |
320 | }, |
321 | set: function (node, value) { | |
fd7853a6 JF |
322 | node.name = value; |
323 | } | |
324 | }, | |
325 | ||
326 | parent: { | |
327 | get: function (node) { | |
328 | return node.parentNode; | |
affeffc7 JF |
329 | } |
330 | }, | |
331 | ||
25a2158d JF |
332 | src: { |
333 | get: function (node) { | |
334 | return node.src; | |
335 | }, | |
336 | set: function (node, value) { | |
337 | node.src = value; | |
338 | } | |
339 | }, | |
340 | ||
fd7853a6 JF |
341 | type: { |
342 | get: function (node) { | |
343 | return node.localName; | |
344 | } | |
345 | }, | |
346 | ||
6f1a15d9 JF |
347 | value: { |
348 | get: function (node) { | |
349 | return node.value; | |
350 | }, | |
351 | set: function (node, value) { | |
fd7853a6 JF |
352 | // XXX: do I really need this? |
353 | if (true || node.localName != "select") | |
354 | node.value = value; | |
355 | else { | |
356 | var options = node.options; | |
357 | for (var i = 0, e = options.length; i != e; ++i) | |
358 | if (options[i].value == value) { | |
359 | if (node.selectedIndex != i) | |
360 | node.selectedIndex = i; | |
361 | break; | |
362 | } | |
363 | } | |
364 | } | |
365 | }, | |
366 | ||
367 | width: { | |
368 | get: function (node) { | |
369 | return node.offsetWidth; | |
6f1a15d9 JF |
370 | } |
371 | } | |
372 | }); | |
373 | ||
fd7853a6 JF |
374 | // Query String Parsing {{{ |
375 | $.query = function () { | |
376 | var args = {}; | |
377 | ||
378 | var search = location.search; | |
379 | if (search != null) { | |
380 | _assert(search[0] == "?", "query string without ?"); | |
381 | ||
382 | var values = search.substring(1).split("&"); | |
383 | for (var index in values) { | |
384 | var value = values[index] | |
385 | var equal = value.indexOf("="); | |
386 | var name; | |
387 | ||
388 | if (equal == -1) { | |
389 | name = value; | |
390 | value = null; | |
391 | } else { | |
392 | name = value.substring(0, equal); | |
393 | value = value.substring(equal + 1); | |
394 | value = decodeURIComponent(value); | |
395 | } | |
396 | ||
397 | name = decodeURIComponent(name); | |
398 | if (typeof args[name] == "undefined") | |
399 | args[name] = []; | |
400 | if (value != null) | |
401 | args[name].push(value); | |
402 | } | |
403 | } | |
404 | ||
405 | return args; | |
406 | }; | |
407 | // }}} | |
6f1a15d9 JF |
408 | // Event Registration {{{ |
409 | // XXX: unable to remove registration | |
410 | $.prototype.event = function (event, _function) { | |
411 | $.each(this, function (node) { | |
412 | // XXX: smooth over this pointer ugliness | |
413 | if (node.addEventListener) | |
414 | node.addEventListener(event, _function, false); | |
415 | else if (node.attachEvent) | |
416 | node.attachEvent("on" + event, _function); | |
417 | else | |
418 | // XXX: multiple registration SNAFU | |
419 | node["on" + event] = _function; | |
420 | }); | |
421 | }; | |
422 | ||
423 | $.each([ | |
424 | "click", "load", "submit" | |
425 | ], function (event) { | |
426 | $.prototype[event] = function (_function) { | |
fd7853a6 JF |
427 | if (typeof _function == 'undefined') |
428 | _assert(false, "undefined function to $.[event]"); | |
6f1a15d9 JF |
429 | else |
430 | this.event(event, _function); | |
431 | }; | |
432 | }); | |
433 | // }}} | |
434 | // Timed Animation {{{ | |
435 | $.interpolate = function (duration, event) { | |
436 | var start = new Date(); | |
437 | ||
438 | var next = function () { | |
439 | setTimeout(update, 0); | |
440 | }; | |
441 | ||
442 | var update = function () { | |
443 | var time = new Date() - start; | |
444 | ||
445 | if (time >= duration) | |
446 | event(1); | |
447 | else { | |
448 | event(time / duration); | |
449 | next(); | |
450 | } | |
451 | }; | |
452 | ||
453 | next(); | |
454 | }; | |
455 | // }}} | |
456 | // AJAX Requests {{{ | |
457 | // XXX: abstract and implement other cases | |
458 | $.xhr = function (url, method, headers, data, events) { | |
459 | var xhr = new XMLHttpRequest(); | |
460 | xhr.open(method, url, true); | |
461 | ||
462 | for (var name in headers) | |
463 | xhr.setRequestHeader(name.replace(/_/, "-"), headers[name]); | |
464 | ||
465 | if (events == null) | |
466 | events = {}; | |
467 | ||
468 | xhr.onreadystatechange = function () { | |
22f8bed9 JF |
469 | if (xhr.readyState == 4) { |
470 | var status = xhr.status; | |
471 | var text = xhr.responseText; | |
472 | if (events.response != null) | |
473 | events.response(status, text); | |
d6dad1b4 JF |
474 | if (status == 200) { |
475 | if (events.success != null) | |
22f8bed9 | 476 | events.success(text); |
d6dad1b4 JF |
477 | } else { |
478 | if (events.failure != null) | |
479 | events.failure(status); | |
480 | } | |
22f8bed9 | 481 | } |
6f1a15d9 JF |
482 | }; |
483 | ||
484 | xhr.send(data); | |
485 | }; | |
486 | ||
487 | $.call = function (url, post, onsuccess) { | |
488 | var events = {}; | |
489 | ||
490 | if (onsuccess != null) | |
491 | events.complete = function (text) { | |
492 | onsuccess(eval(text)); | |
493 | }; | |
494 | ||
495 | if (post == null) | |
496 | $.xhr(url, "POST", null, null, events); | |
497 | else | |
498 | $.xhr(url, "POST", { | |
499 | Content_Type: "application/json" | |
500 | }, $.json(post), events); | |
501 | }; | |
502 | // }}} | |
503 | // WWW Form URL Encoder {{{ | |
504 | $.form = function (parameters) { | |
505 | var data = ""; | |
506 | ||
507 | var ampersand = false; | |
508 | for (var name in parameters) { | |
509 | if (!ampersand) | |
510 | ampersand = true; | |
511 | else | |
512 | data += "&"; | |
513 | ||
514 | var value = parameters[name]; | |
515 | ||
516 | data += escape(name); | |
517 | data += "="; | |
518 | data += escape(value); | |
519 | } | |
520 | ||
521 | return data; | |
522 | }; | |
523 | // }}} | |
524 | // JSON Serializer {{{ | |
525 | $.json = function (value) { | |
526 | if (value == null) | |
527 | return "null"; | |
528 | ||
529 | var type = $.type(value); | |
530 | ||
531 | if (type == "number") | |
532 | return value; | |
533 | else if (type == "string") | |
534 | return "\"" + value | |
535 | .replace(/\\/, "\\\\") | |
536 | .replace(/\t/, "\\t") | |
537 | .replace(/\r/, "\\r") | |
538 | .replace(/\n/, "\\n") | |
539 | .replace(/"/, "\\\"") | |
540 | + "\""; | |
541 | else if (value.constructor == Array) { | |
542 | var json = "["; | |
543 | var comma = false; | |
544 | ||
545 | for (var i = 0; i != value.length; ++i) { | |
546 | if (!comma) | |
547 | comma = true; | |
548 | else | |
549 | json += ","; | |
550 | ||
551 | json += $.json(value[i]); | |
552 | } | |
553 | ||
554 | return json + "]"; | |
555 | } else if ( | |
556 | value.constructor == Object && | |
557 | value.toString() == "[object Object]" | |
558 | ) { | |
559 | var json = "{"; | |
560 | var comma = false; | |
561 | ||
562 | for (var name in value) { | |
563 | if (!comma) | |
564 | comma = true; | |
565 | else | |
566 | json += ","; | |
567 | ||
568 | json += name + ":" + $.json(value[name]); | |
569 | } | |
570 | return json + "}"; | |
571 | } else { | |
572 | return value; | |
573 | } | |
574 | }; | |
575 | // }}} |