-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.js
467 lines (431 loc) · 10.4 KB
/
core.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*
* core.js -- JavaScript core extensions
*
* author: Dale Schumacher <[email protected]>
* website: dalnefre.com
*/
var version = '0.8.1 2024-02-03';
var id = function (el) { // shorthand element lookup
if (typeof el === 'string') {
el = document.getElementById(el);
}
return el;
};
var println = function (el, msg) {
if (el) {
el.appendChild(document.createTextNode(msg + "\n"));
}
};
var log = function (msg) {
println(id('log'), msg);
};
var debug = function (msg) {
println(id('debug'), msg);
};
var trace = function (msg) {
println(id('trace'), msg);
};
var equal = function (x, y) {
if (x === y) {
return true; // trivial (fast) case
}
if ((typeof x === 'object') && (x !== null)
&& (typeof y === 'object') && (y !== null)) {
if (typeof x.equals === 'function') {
return x.equals(y);
}
}
return false;
};
var create = function (o) { // Crockford object creation pattern
var _ = function () {};
_.prototype = o;
return new _();
};
var later = function (msec, method) { // per Crockford
var self = this;
var args = Array.prototype.slice.apply(arguments, [2]);
if (typeof method === 'string') {
method = self[method];
}
setTimeout(function () {
method.apply(self, args);
}, msec);
return self;
};
var hasProperties = function (o) {
return o && ((typeof o === 'object') || (typeof o === 'function'));
};
var noOverwrite = function (dst, src, key) {
return !dst.hasOwnProperty(key);
};
var noOverride = function (dst, src, key) {
return !(key in dst);
};
var ownProperties = function (dst, src, key) {
return src.hasOwnProperty(key);
};
var copyAll = function () {
return true;
};
// copy properties to <dst> from <src> if <pred> holds
var extend = function (dst, src, pred) {
var key;
if (!hasProperties(dst)) {
throw Error('Object.extend requires a target object');
}
if (hasProperties(src)) {
pred = pred || copyAll;
for (key in src) {
if (pred(dst, src, key)) {
dst[key] = src[key];
}
}
}
return dst;
};
// add <value> as field <name> on a constructor function without redefinition
var field = function (name, value) {
if (name in this.prototype) {
throw Error("Can't redefine " + name + " on " + this);
}
this.prototype[name] = value;
return this;
};
// add <fn> as method <name> on a constructor function without redefinition
var method = function (name, fn) {
if (typeof fn !== 'function') {
throw Error("Function required in method('" + name + "', " + fn + ")");
}
return this.field(name, fn);
};
extend(extend, {
noOverwrite: noOverwrite,
noOverride: noOverride,
ownProperties: ownProperties,
copyAll: copyAll
});
extend(Object, {
create: create,
later: later,
hasProperties: hasProperties,
extend: extend
}, noOverride);
field.apply(Function, ['field', field]);
method.apply(Function, ['method', method]);
Function
.method('override', function (name, fn) {
if (typeof fn !== 'function') {
throw Error("Function required in override('" + name + "', " + fn + ")");
}
if (!(name in this.prototype)) {
throw Error(name + " not defined on " + this);
}
this.prototype[name] = fn;
return this;
})
.method('subclass', function (superclass) {
extend(this.prototype, superclass.prototype, noOverwrite);
this.superclass = superclass;
return this;
});
var Dictionary = (function () {
var factory;
var forDefaultFn = function (item, acc) {
acc.push(item);
return acc;
};
var constructor = function Dictionary(data) {
Object.extend(this, data, Object.extend.ownProperties);
}
.method('forEach', function (fn, acc) {
var p;
fn = fn || forDefaultFn;
if (acc === undefined) {
acc = [];
}
for (p in this) {
if (this.hasOwnProperty(p)) {
acc = fn(p, acc);
}
}
return acc;
})
.method('forEachData', function (fn, acc) {
var self = this;
fn = fn || forDefaultFn;
return this.forEach(function (key, acc) {
if (typeof self[key] !== 'function') {
acc = fn(key, acc);
}
return acc;
}, acc);
})
.method('equals', function (other) {
var self = this;
if (typeof other !== 'object') {
return false;
} else {
return this.forEachData(function (key, acc) {
return acc && equal(self[key], other[key]);
}, true);
}
})
.override('toString', function () {
var self = this;
var a = this.forEachData(function (key, acc) {
acc.push(key + ':' + self[key]);
return acc;
}, []);
return '{' + a.join(', ') + '}';
});
factory = function (data) {
var self = new constructor(data);
self.constructor = constructor;
return self;
};
factory.class = constructor;
return factory;
})();
var AbstractMembersArray = (function () {
return function MembersArray(data) {
this.members = data || [];
}
.method('forEach', function (fn, acc) {
var i;
fn = fn || function (item, acc) {
acc.push(item);
return acc;
};
if (acc === undefined) {
acc = [];
}
for (i = 0; i < this.members.length; i += 1) {
acc = fn(this.members[i], acc);
}
return acc;
});
})();
var Set = (function () {
var factory;
var constructor = function Set() {
AbstractMembersArray.call(this);
}
.subclass(AbstractMembersArray)
.method('cardinality', function () {
return this.members.length;
})
.method('add', function (item) {
if (!this.contains(item)) {
this.members.push(item);
}
return this;
})
.method('contains', function (match) {
return this.forEach(function (item, acc) {
return acc || equal(item, match);
}, false);
})
.method('remove', function (item) {
var i;
for (i = 0; i < this.members.length; i += 1) {
if (equal(item, this.members[i])) {
this.members.splice(i, 1); // delete this member
break;
}
}
return this;
})
.override('toString', function () {
return '{' + this.members.join(',') + '}';
});
factory = function () {
var self = new constructor();
self.constructor = constructor;
return self;
};
factory.class = constructor;
return factory;
})();
var Queue = (function () {
var factory;
var constructor = function Queue() {
AbstractMembersArray.call(this);
}
.subclass(AbstractMembersArray)
.method('size', function () {
return this.members.length;
})
.method('put', function (item) {
this.members.push(item);
return this;
})
.method('take', function () {
return this.members.shift();
})
.override('toString', function () {
return '[' + this.members.join(',') + ']';
});
factory = function () {
var self = new constructor();
self.constructor = constructor;
return self;
};
factory.class = constructor;
return factory;
})();
var Sequence = (function () {
var factory;
var constructor = function Sequence(data) {
AbstractMembersArray.call(this, data);
}
.subclass(AbstractMembersArray)
.method('length', function () {
return this.members.length;
})
.method('item', function (index) {
if (index < this.members.length) {
return this.members[index];
}
})
.method('indexOf', function (pred) {
var i;
pred = pred || function (item) {
return false;
};
for (i = 0; i < this.members.length; i += 1) {
if (pred(this.members[i])) {
return i;
}
}
return -1; // not found
})
.method('add', function (item) {
this.members.push(item);
return this;
})
.method('insert', function (index, item) {
this.members.splice(index, 0, item);
return this;
})
.method('remove', function (match) {
var i = this.indexOf(function (item) {
return equal(match, item);
});
if (i >= 0) {
this.members.splice(i, 1); // delete this member
}
return this;
})
.method('clone', function () {
var i, target;
target = factory();
for (i = 0; i < this.members.length; i += 1) {
target.add(this.members[i]);
}
return target;
})
.method('shuffle', function () {
var r, data, N;
data = this.members;
N = data.length;
this.members = [];
while (N > 0) {
// debug('shuffle: <'+this.members.join(',')+'> '+N+' <'+data.join(',')+'> ');
r = Math.floor(Math.random() * N);
this.members.push(data[r]);
data.splice(r, 1); // delete this entry
N -= 1; // shrink data range
}
return this;
})
.override('toString', function () {
return '<' + this.members.join(',') + '>';
});
factory = function (data) {
var self = new constructor(data);
self.constructor = constructor;
return self;
};
factory.class = constructor;
factory.created = function (instance) {
return ((typeof instance === 'object')
&& (instance !== null)
&& (instance.constructor === constructor));
};
return factory;
})();
var HtmlBuilder = (function () { // HTML element factory
var factory;
var constructor = function HtmlBuilder(node, parent) {
Dictionary.class.call(this);
if (typeof node === 'object') {
this.node = node;
if ((typeof parent === 'object')
&& (parent.constructor === constructor)) {
this.parent = parent;
}
}
}
.subclass(Dictionary.class)
.method('child', function (child) {
if (this.node) {
this.node.appendChild(child);
}
return new constructor(child, this);
})
.method('setAttrs', function (attrs) {
if (this.node/* instanceof Element*/) {
var p;
for (p in attrs) {
if (attrs.hasOwnProperty(p)) {
if (typeof attrs[p] !== 'function') {
this.node.setAttribute(p, attrs[p]);
}
}
}
}
return this;
})
.method('text', function (value) {
return this.child(document.createTextNode(value));
})
.method('element', function (name, attrs) {
var child = this.child(document.createElement(name));
return child.setAttrs(attrs);
})
.method('div', function (attrs) {
return this.element('div', attrs);
})
.method('span', function (attrs) {
return this.element('span', attrs);
})
.method('empty', function () {
if (this.node/* instanceof HTMLElement*/) {
this.node.innerHTML = '';
}
return this;
});
factory = function (data) {
var self = new constructor(data);
self.constructor = constructor;
return self;
};
factory.class = constructor;
return factory;
})();
export default Object.freeze({
id,
println,
log,
debug,
trace,
equal,
Dictionary,
AbstractMembersArray,
Set,
Queue,
Sequence,
HtmlBuilder,
version
});