-
Notifications
You must be signed in to change notification settings - Fork 124
/
noscript-sucks.html
153 lines (132 loc) · 4.82 KB
/
noscript-sucks.html
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
<script>
(function(exports) {
exports = exports || {};
var handlers = {}, createChain, add;
createChain = function (context, stack, lastMethod) {
var inHandler = context.halt = false;
//The default error handler
context.error = function (e) {
throw e;
};
//Run the next method in the chain
context.next = function (exit) {
if (exit) {
inHandler = false;
}
if (!context.halt && stack && stack.length) {
var args = stack.shift(), method = args.shift();
inHandler = true;
try {
handlers[method].apply(context, [args, args.length, method]);
} catch (e) {
context.error(e);
}
}
return context;
};
//Bind each method to the context
for (var alias in handlers) {
if (typeof context[alias] === 'function') {
continue;
}
(function (alias) {
context[alias] = function () {
var args = Array.prototype.slice.call(arguments);
if (alias === 'onError') {
if (stack) {
handlers.onError.apply(context, [args, args.length]);
return context;
}
var new_context = {};
handlers.onError.apply(new_context, [args, args.length]);
return createChain(new_context, null, 'onError');
}
args.unshift(alias);
if (!stack) {
return createChain({}, [args], alias);
}
context.then = context[alias];
stack.push(args);
return inHandler ? context : context.next();
};
}(alias));
}
//'then' is an alias for the last method that was called
if (lastMethod) {
context.then = context[lastMethod];
}
//Used to call run(), chain() or another existing method when defining a new method
//See load.js (https://github.com/chriso/load.js/blob/master/load.js) for an example
context.call = function (method, args) {
args.unshift(method);
stack.unshift(args);
context.next(true);
};
return context.next();
};
//Add a custom method/handler (see below)
add = exports.addMethod = function (method /*, alias1, alias2, ..., callback */) {
var args = Array.prototype.slice.call(arguments),
handler = args.pop();
for (var i = 0, len = args.length; i < len; i++) {
if (typeof args[i] === 'string') {
handlers[args[i]] = handler;
}
}
//When no aliases have been defined, automatically add 'then<Method>'
//e.g. adding 'run' also adds 'thenRun' as a method
if (!--len) {
handlers['then' + method.substr(0,1).toUpperCase() + method.substr(1)] = handler;
}
createChain(exports);
};
//run() - Run each function in parallel and progress once all functions are complete
add('run', function (args, arg_len) {
var self = this, chain = function () {
if (self.halt) {
return;
} else if (!--arg_len) {
self.next(true);
}
};
var error = function (e) {
self.error(e);
};
for (var i = 0, len = arg_len; !self.halt && i < len; i++) {
if (null != args[i].call(self, chain, error)) {
chain();
}
}
});
}(this));
var head = document.getElementsByTagName('head')[0] || document.documentElement;
addMethod('load', function (args, argc) {
for (var queue = [], i = 0; i < argc; i++) {
(function (i) {
queue.push(asyncLoadScript(args[i]));
}(i));
}
this.call('run', queue);
});
function asyncLoadScript(src) {
return function (onload, onerror) {
console.log('still ok');
var script = document.createElement('script');
script.src = src;
script.onload = onload;
script.onerror = onerror;
script.onreadystatechange = function () {
console.log('no ok anymore');
var state = this.readyState;
if (state === 'loaded' || state === 'complete') {
script.onreadystatechange = null;
onload();
}
};
head.insertBefore(script, head.firstChild);
}
}
load('http://raw.github.com/bryanwoods/autolink-js/master/autolink.js').thenRun(function() {
console.log("http://www.mozilla.com".autoLink());
});
</script>