-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
599 lines (530 loc) · 15.6 KB
/
index.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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
import { curry, defaultTo, isNil, keys, mapObjIndexed, pipe, reject, values, tap, uniq, flatten, map, reduce, equals } from "ramda"
import Rx from "rx"
import { div, nav } from "cycle-snabbdom"
import toHTML from "snabbdom-to-html"
// import { StandardError } from "standard-error"
import formatObj from 'pretty-format'
const $ = Rx.Observable;
const ERROR_MESSAGE_PREFIX = 'ERROR : '
const DOM_SINK = 'DOM';
// Type checking typings
/**
* @typedef {String} ErrorMessage
*/
/**
* @typedef {Boolean|Array<ErrorMessage>} SignatureCheck
* Note : The booleam can only be true
*/
// Component typings
/**
* @typedef {String} SourceName
*/
/**
* @typedef {String} SinkName
*/
/**
* @typedef {Rx.Observable} Source
*/
/**
* @typedef {Rx.Observable|Null} Sink
*/
/**
* @typedef {Object.<string, Source>} Sources
*/
/**
* @typedef {Object.<string, Sink>} Sinks
*/
/**
* @typedef {?Object.<string, ?Object>} Settings
*/
/**
* @typedef {function(Sink, Array<Sink>, Settings):Sink} mergeSink
*/
/**
* @typedef {Object} DetailedComponentDef
* @property {?function(Sources, Settings)} makeLocalSources
* @property {?function(Settings)} makeLocalSettings
* @property {?function(Sources, Settings):Sinks} makeOwnSinks
* @property {Object.<SinkName, mergeSink> | function} mergeSinks
* @property {function(Sinks):Boolean} sinksContract
* @property {function(Sources):Boolean} sourcesContract
*/
/**
* @typedef {Object} ShortComponentDef
* @property {?function(Sources, Settings)} makeLocalSources
* @property {?function(Settings)} makeLocalSettings
* @property {?function(Sources, Settings):Sinks} makeOwnSinks
* @property {function(Component, Array<Component>, Sources, Settings)}
* computeSinks
* @property {function(Sinks):Boolean} sinksContract
* @property {function(Sources):Boolean} sourcesContract
*/
/**
* @typedef {function(Sources, Settings):Sinks} Component
*/
function isUndefined(obj) {
return typeof obj === 'undefined'
}
function removeEmptyVNodes(arrVNode) {
return reduce((accNonEmptyVNodes, vNode) => {
return (isNullVNode(vNode)) ?
accNonEmptyVNodes :
(accNonEmptyVNodes.push(vNode), accNonEmptyVNodes)
}, [], arrVNode)
}
function isNullVNode(vNode) {
return equals(vNode.children, []) &&
equals(vNode.data, {}) &&
isUndefined(vNode.elm) &&
isUndefined(vNode.key) &&
isUndefined(vNode.sel) &&
isUndefined(vNode.text)
}
/**
* For each element object of the array, returns the indicated property of
* that object, if it exists, null otherwise.
* For instance, `projectSinksOn('a', obj)` with obj :
* - [{a: ..., b: ...}, {b:...}]
* - result : [..., null]
* @param {String} prop
* @param {Array<*>} obj
* @returns {Array<*>}
*/
function projectSinksOn(prop, obj) {
return map(x => x ? x[prop] : null, obj)
}
/**
* Returns an array with the set of sink names extracted from an array of
* sinks. The ordering of those names should not be relied on.
* For instance:
* - [{DOM, auth},{DOM, route}]
* results in ['DOM','auth','route']
* @param {Array<Sinks>} aSinks
* @returns {Array<String>}
*/
function getSinkNamesFromSinksArray(aSinks) {
return uniq(flatten(map(getValidKeys, aSinks)))
}
function getValidKeys(obj) {
let validKeys = []
mapObjIndexed((value, key) => {
if (value != null) {
validKeys.push(key)
}
}, obj)
return validKeys
}
function makeDivVNode(x) {
return {
"children": undefined,
"data": {},
"elm": undefined,
"key": undefined,
"sel": "div",
"text": x
}
}
function vLift(vNode) {
return function vLift(sources, settings) {
return {
[DOM_SINK]: $.of(vNode)
}
}
}
/**
* Lifts a div function into a Div component which only has a DOM sink, whose only value emitted
* is computed from the arguments passed
* @returns {Component}
*/
function Div() {
return vLift(div.apply(null, arguments))
}
function Nav() {
return vLift(nav.apply(null, arguments))
}
/**
*
* @param {String} label
* @param {Rx.Observable} source
*/
function labelSourceWith(label, source) {
return source.map(x => ({ [label]: x }))
}
function EmptyComponent(sources, settings) {
return {
[DOM_SINK]: $.of(div(''))
}
}
function DummyComponent(sources, settings) {
return {
[DOM_SINK]: $.of(div('dummy content'))
}
}
/**
* Turns a sink which is empty into a sink which emits `Null`
* This is necessary for use in combination with `combineLatest`
* As a matter of fact, `combineLatest(obs1, obs2)` will block till both
* observables emit at least one value. So if `obs2` is empty, it will
* never emit anything
* @param sink
* @returns {Observable|*}
*/
function emitNullIfEmpty(sink) {
return isNil(sink)
? null
: $.create(function emitNullIfEmptyObs(observer) {
let isEmpty = true;
sink.subscribe(function next(x) {
isEmpty = false;
observer.onNext(x);
}, function error(e) {
console.error(`emitNullIfEmpty > Error!`, e);
observer.onError(e);
}, function completed() {
if (isEmpty) {
observer.onNext(null);
}
observer.onCompleted();
});
return function dispose() {
// No clean-up necessary
}
})
/*
return isNil(sink) ?
null :
$.merge(
sink,
sink.isEmpty().filter(x => x).map(x => null)
)
*/
}
/**
* Returns an object whose keys :
* - the first key found in `obj` for which the matching predicate was
* fulfilled. Predicates are tested in order of indexing of the array.
* - `_index` the index in the array where a predicate was fulfilled if
* any, undefined otherwise
* Ex : unfoldObjOverload('DOM', {sourceName: isString, predicate:
* isPredicate})
* Result : {sourceName : 'DOM'}
* @param obj
* @param {Array<Object.<string, Predicate>>} overloads
* @returns {{}}
*/
function unfoldObjOverload(obj, overloads) {
let result = {};
let index = 0;
overloads.some(overload => {
// can only be one property
const property = keys(overload)[0];
const predicate = values(overload)[0];
const predicateEval = predicate(obj);
if (predicateEval) {
result[property] = obj;
result._index = index
}
index++;
return predicateEval
});
return result
}
function isBoolean(obj) {
return typeof(obj) === 'boolean'
}
function isString(obj) {
return typeof(obj) === 'string'
}
// from https://github.com/substack/deep-freeze/blob/master/index.js
function deepFreeze(o) {
Object.freeze(o);
Object.getOwnPropertyNames(o).forEach(function (prop) {
if (o.hasOwnProperty(prop)
&& o[prop] !== null
&& (typeof o[prop] === "object" || typeof o[prop] === "function")
&& !Object.isFrozen(o[prop])) {
deepFreeze(o[prop]);
}
});
return o;
}
function makeErrorMessage(errorMessage) {
return ERROR_MESSAGE_PREFIX + errorMessage;
}
function removeNullsFromArray(arr) {
return reject(isNil, arr)
}
//IE workaround for lack of function name property on Functions
//getFunctionName :: (* -> *) -> String
const getFunctionName = (r => fn => {
return fn.name || ((('' + fn).match(r) || [])[1] || 'Anonymous');
})(/^\s*function\s*([^\(]*)/i);
// cf.
// http://stackoverflow.com/questions/9479046/is-there-any-non-eval-way-to-create-a-function-with-a-runtime-determined-name
function NamedFunction(name, args, body, scope, values) {
if (typeof args == "string")
values = scope, scope = body, body = args, args = [];
if (!Array.isArray(scope) || !Array.isArray(values)) {
if (typeof scope == "object") {
var keys = Object.keys(scope);
values = keys.map(function (p) { return scope[p]; });
scope = keys;
} else {
values = [];
scope = [];
}
}
return Function(scope, "function " + name + "(" + args.join(", ") + ") {\n" + body + "\n}\nreturn " + name + ";").apply(null, values);
}
// decorateWith(decoratingFn, fnToDecorate), where log :: fn -> fn such as both have same name
// and possibly throw exception if that make sense to decoratingFn
function decorateWithOne(decoratorSpec, fnToDecorate) {
const fnToDecorateName = getFunctionName(fnToDecorate);
return NamedFunction(fnToDecorateName, [], `
const args = [].slice.call(arguments);
const decoratingFn = makeFunctionDecorator(decoratorSpec);
return decoratingFn(args, fnToDecorateName, fnToDecorate);
`,
{ makeFunctionDecorator, decoratorSpec, fnToDecorate, fnToDecorateName });
}
const decorateWith = curry(function decorateWith(decoratingFnsSpecs, fnToDecorate) {
return decoratingFnsSpecs.reduce((acc, decoratingFn) => {
return decorateWithOne(decoratingFn, acc)
}, fnToDecorate)
});
/**
* NOTE : incorrect declaration... TODO : correct one day
* before(fnToDecorate, fnToDecorateName, args) or nil
* after(fnToDecorate, fnToDecorateName, result) or nil
* but not both nil
* @returns {function(fnToDecorate: Function, fnToDecorateName:String, args:Array<*>)}
*/
function makeFunctionDecorator({ before, after, name }) {
// we can have one of the two not specified, but if we have none, there is no decorator to make
if ((typeof before !== 'function') && (typeof after !== 'function')) {
throw `makeFunctionDecorator: you need to specify 'before' OR 'after' as decorating functions. You passed falsy values for both!`
}
const decoratorFnName = defaultTo('anonymousDecorator', name);
// trick to get the same name for the returned function
// cf.
// http://stackoverflow.com/questions/9479046/is-there-any-non-eval-way-to-create-a-function-with-a-runtime-determined-name
const obj = {
[decoratorFnName](args, fnToDecorateName, fnToDecorate) {
before && before(args, fnToDecorateName, fnToDecorate);
const result = fnToDecorate(...args);
return after
? after(result, fnToDecorateName, fnToDecorate)
: result;
}
};
return obj[decoratorFnName];
}
const assertFunctionContractDecoratorSpecs = fnContract => ({
before: (args, fnToDecorateName) => {
const checkDomain = fnContract.checkDomain;
const contractFnName = getFunctionName(checkDomain);
const passed = checkDomain(...args);
if (!isBoolean(passed) || (isBoolean(passed) && !passed)) {
// contract is failed
console.error(`assertFunctionContractDecorator: ${fnToDecorateName} fails contract ${contractFnName} \n
${isString(passed) ? passed : ''}`);
throw `assertFunctionContractDecorator: ${fnToDecorateName} fails contract ${contractFnName}`
}
},
after: (result, fnToDecorateName) => {
const checkCodomain = fnContract.checkCodomain;
const contractFnName = getFunctionName(checkCodomain);
const passed = checkCodomain(result);
if (!isBoolean(passed) || (isBoolean(passed) && !passed)) {
// contract is failed
console.error(`assertFunctionContractDecorator: ${fnToDecorateName} fails contract ${contractFnName} \n
${isString(passed) ? passed : ''}`);
throw `assertFunctionContractDecorator: ${fnToDecorateName} fails contract ${contractFnName}`
}
return result;
}
});
function preventDefault(ev) {
if (ev) ev.preventDefault()
}
function addPrefix(prefix) {
return function (str) {
return prefix + str
}
}
function noop() {
}
function toBoolean(x) {return !!x}
/**
* Returns a function which turns an object to be put at a given path location into an array of
* JSON patch operations
* @param {JSON_Pointer} path
* @returns {Function}
*/
function toJsonPatch(path) {
return pipe(
mapObjIndexed((value, key) => ({
op: "add",
path: [path, key].join('/'),
value: value
})),
values
);
}
function stripHtmlTags(html) {
let tmp = document.createElement("DIV");
tmp.innerHTML = html;
const strippedContent = tmp.textContent || tmp.innerText || "";
tmp.remove();
return strippedContent
}
/**
* Iterative tree traversal generic algorithm
* @param StoreConstructor a constructor for either a queue (breadth-first) or a stack
* structure (depth-first)
* @param {Function} pushFn queue or push instruction
* @param {Function} popFn dequeue or pop instruction
* @param {Function} isEmptyStoreFn check if the data structure used to store node to
* process is empty
* @param {Function} visitFn the visiting function on the node. Its results are accumulated
* into the final result of the traverseTree function
* @param {Function} getChildrenFn give the children for a given node
* @param root the root node of the tree to traverse
*/
function traverseTree({ StoreConstructor, pushFn, popFn, isEmptyStoreFn, visitFn, getChildrenFn },
root) {
const traversalResult = [];
const store = new StoreConstructor();
pushFn(store, root);
while ( !isEmptyStoreFn(store) ) {
const vnode = popFn(store);
traversalResult.push(visitFn(vnode));
getChildrenFn(vnode).forEach((child, index) => pushFn(store, child));
}
return traversalResult
}
function firebaseListToArray(fbList) {
// will have {key1:element, key2...}
return values(fbList)
}
function getInputValue(document, sel) {
const el = document.querySelector(sel);
return el ? el.value : ''
}
function filterNull(driver) {
return function filteredDOMDriver(sink$) {
return driver(sink$.filter(Boolean))
}
}
// debug
/**
* Adds `tap` logging/tracing information to all sinks
* @param {String} traceInfo
* @param {Sinks} sinks
* @returns {*}
*/
function traceSinks(traceInfo, sinks) {
return mapObjIndexed((sink$, sinkName) => {
return sink$
? sink$.tap(function log(x) {
console.debug(`traceSinks > ${traceInfo} > sink ${sinkName} emits :`, x)
})
// Pass on null and undefined values as they are, they will be filtered out downstream
: sink$
}, sinks)
}
const logFnTrace = (title, paramSpecs) => ({
before: (args, fnToDecorateName) =>
console.info(`==> ${title.toUpperCase()} | ${fnToDecorateName}(${paramSpecs.join(', ')}): `, args),
after: (result, fnToDecorateName) => {
console.info(`<== ${title.toUpperCase()} | ${fnToDecorateName} <- `, result);
return result
},
});
function toHTMLorNull(x) {
return x ? toHTML(x) : null
}
function convertVNodesToHTML(vNodeOrVnodes) {
if (Array.isArray(vNodeOrVnodes)) {
console.debug(`toHTML: ${vNodeOrVnodes.map(x => x ? toHTML(x) : null)}`)
return vNodeOrVnodes.map(toHTMLorNull)
}
else {
console.debug(`toHTML: ${toHTMLorNull(vNodeOrVnodes)}`)
return toHTMLorNull(vNodeOrVnodes)
}
}
function formatArrayObj(arr, separator) {
return arr.map(format).join(separator)
}
function format(obj) {
// basically if obj is an object, use formatObj, else use toString
if (obj === 'null') {
return '<null>'
}
else if (obj === 'undefined') {
return '<undefined>'
}
else if (typeof(obj) === 'string' && obj.length === 0) {
return '<empty string>'
}
else if (Array.isArray(obj)) {
return formatArrayObj(obj, ' ; ')
}
else if (typeof(obj) === 'object') {
if (keys(obj).length === 0) {
// i.e. object is {}
return '<empty object>'
}
else return formatObj(obj, {maxDepth : 3})
}
else {
return "" + obj
}
}
function traceFn(fn, text) {
return pipe(fn, tap(console.warn.bind(console, text ? text + ":" : "")))
}
export {
// Helpers
emitNullIfEmpty,
EmptyComponent,
DummyComponent,
vLift,
Div,
Nav,
DOM_SINK,
projectSinksOn,
getSinkNamesFromSinksArray,
removeEmptyVNodes,
makeDivVNode,
labelSourceWith,
// Misc. utils
unfoldObjOverload,
removeNullsFromArray,
deepFreeze,
makeErrorMessage,
decorateWithOne,
decorateWith,
makeFunctionDecorator,
assertFunctionContractDecoratorSpecs,
preventDefault,
addPrefix,
noop,
toJsonPatch,
toBoolean,
stripHtmlTags,
ERROR_MESSAGE_PREFIX,
traverseTree,
firebaseListToArray,
getInputValue,
filterNull,
// debug
traceSinks,
getFunctionName,
logFnTrace,
convertVNodesToHTML,
formatArrayObj,
format,
traceFn
}