This repository has been archived by the owner on Aug 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Platform.js
494 lines (367 loc) · 9.15 KB
/
Platform.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
/*
import Elm.Kernel.Error exposing (throw)
import Elm.Kernel.Json exposing (run, wrap)
import Elm.Kernel.List exposing (Cons, Nil)
import Elm.Kernel.Scheduler exposing (andThen, binding, rawSend, rawSpawn, receive, send, succeed)
import Elm.Kernel.Utils exposing (Tuple0)
import Result exposing (isOk)
*/
// PROGRAMS
var _Platform_worker = F4(function(impl, flagDecoder, debugMetadata, object)
{
object['worker'] = function(flags)
{
return _Platform_initialize(
flagDecoder,
flags,
impl.__$init,
impl.__$update,
impl.__$subscriptions,
function() { return function() {} }
);
};
return object;
});
// INITIALIZE A PROGRAM
function _Platform_initialize(flagDecoder, flags, init, update, subscriptions, stepperBuilder)
{
var result = A2(__Json_run, flagDecoder, __Json_wrap(flags));
__Result_isOk(result) || __Error_throw(2, result.a);
var managers = {};
result = init(result.a);
var model = result.a;
var stepper = stepperBuilder(sendToApp, model);
var ports = _Platform_setupEffects(managers, sendToApp);
function sendToApp(msg, viewMetadata)
{
result = A2(update, msg, model);
stepper(model = result.a, viewMetadata);
_Platform_dispatchEffects(managers, result.b, subscriptions(model));
}
_Platform_dispatchEffects(managers, result.b, subscriptions(model));
return ports ? { ports: ports } : {};
}
// TRACK PRELOADS
//
// This is used by code in elm-lang/browser and elm-lang/http
// to register any HTTP requests that are triggered by init.
//
var _Platform_preload;
function _Platform_registerPreload(url)
{
_Platform_preload.add(url);
}
// EFFECT MANAGERS
var _Platform_effectManagers = {};
function _Platform_setupEffects(managers, sendToApp)
{
var ports;
// setup all necessary effect managers
for (var key in _Platform_effectManagers)
{
var manager = _Platform_effectManagers[key];
if (manager.__portSetup)
{
ports = ports || {};
ports[key] = manager.__portSetup(key, sendToApp);
}
managers[key] = _Platform_instantiateManager(manager, sendToApp);
}
return ports;
}
function _Platform_createManager(init, onEffects, onSelfMsg, cmdMap, subMap)
{
return {
__init: init,
__onEffects: onEffects,
__onSelfMsg: onSelfMsg,
__cmdMap: cmdMap,
__subMap: subMap
};
}
function _Platform_instantiateManager(info, sendToApp)
{
var router = {
__sendToApp: sendToApp,
__selfProcess: undefined
};
var onEffects = info.__onEffects;
var onSelfMsg = info.__onSelfMsg;
var cmdMap = info.__cmdMap;
var subMap = info.__subMap;
function loop(state)
{
return A2(__Scheduler_andThen, loop, __Scheduler_receive(function(msg)
{
var value = msg.a;
if (msg.$ === __2_SELF)
{
return A3(onSelfMsg, router, value, state);
}
return cmdMap && subMap
? A4(onEffects, router, value.__cmds, value.__subs, state)
: A3(onEffects, router, cmdMap ? value.__cmds : value.__subs, state);
}));
}
return router.__selfProcess = __Scheduler_rawSpawn(A2(__Scheduler_andThen, loop, info.__init));
}
// ROUTING
var _Platform_sendToApp = F2(function(router, msg)
{
return __Scheduler_binding(function(callback)
{
router.__sendToApp(msg);
callback(__Scheduler_succeed(__Utils_Tuple0));
});
});
var _Platform_sendToSelf = F2(function(router, msg)
{
return A2(__Scheduler_send, router.__selfProcess, {
$: __2_SELF,
a: msg
});
});
// BAGS
function _Platform_leaf(home)
{
return function(value)
{
return {
$: __2_LEAF,
__home: home,
__value: value
};
};
}
function _Platform_batch(list)
{
return {
$: __2_NODE,
__bags: list
};
}
var _Platform_map = F2(function(tagger, bag)
{
return {
$: __2_MAP,
__func: tagger,
__bag: bag
}
});
// PIPE BAGS INTO EFFECT MANAGERS
function _Platform_dispatchEffects(managers, cmdBag, subBag)
{
var effectsDict = {};
_Platform_gatherEffects(true, cmdBag, effectsDict, null);
_Platform_gatherEffects(false, subBag, effectsDict, null);
for (var home in managers)
{
__Scheduler_rawSend(managers[home], {
$: 'fx',
a: effectsDict[home] || _Platform_noFx
});
}
}
var _Platform_noFx = { __cmds: __List_Nil, __subs: __List_Nil };
function _Platform_gatherEffects(isCmd, bag, effectsDict, taggers)
{
switch (bag.$)
{
case __2_LEAF:
var home = bag.__home;
var effect = _Platform_toEffect(isCmd, home, taggers, bag.__value);
effectsDict[home] = _Platform_insert(isCmd, effect, effectsDict[home]);
return;
case __2_NODE:
for (var list = bag.__bags; list.b; list = list.b) // WHILE_CONS
{
_Platform_gatherEffects(isCmd, list.a, effectsDict, taggers);
}
return;
case __2_MAP:
_Platform_gatherEffects(isCmd, bag.__bag, effectsDict, {
__tagger: bag.__func,
__rest: taggers
});
return;
}
}
function _Platform_toEffect(isCmd, home, taggers, value)
{
function applyTaggers(x)
{
for (var temp = taggers; temp; temp = temp.__rest)
{
x = temp.__tagger(x);
}
return x;
}
var map = isCmd
? _Platform_effectManagers[home].__cmdMap
: _Platform_effectManagers[home].__subMap;
return A2(map, applyTaggers, value)
}
function _Platform_insert(isCmd, newEffect, effects)
{
effects = effects || { __cmds: __List_Nil, __subs: __List_Nil };
isCmd
? (effects.__cmds = __List_Cons(newEffect, effects.__cmds))
: (effects.__subs = __List_Cons(newEffect, effects.__subs));
return effects;
}
// PORTS
function _Platform_checkPortName(name)
{
if (_Platform_effectManagers[name])
{
__Error_throw(3, name)
}
}
// OUTGOING PORTS
function _Platform_outgoingPort(name, converter)
{
_Platform_checkPortName(name);
_Platform_effectManagers[name] = {
__cmdMap: _Platform_outgoingPortMap,
__converter: converter,
__portSetup: _Platform_setupOutgoingPort
};
return _Platform_leaf(name);
}
var _Platform_outgoingPortMap = F2(function(tagger, value) { return value; });
function _Platform_setupOutgoingPort(name)
{
var subs = [];
var converter = _Platform_effectManagers[name].__converter;
// CREATE MANAGER
var init = __Scheduler_succeed(null);
_Platform_effectManagers[name].__init = init;
_Platform_effectManagers[name].__onEffects = F3(function(router, cmdList, state)
{
for ( ; cmdList.b; cmdList = cmdList.b) // WHILE_CONS
{
// grab a separate reference to subs in case unsubscribe is called
var currentSubs = subs;
var value = converter(cmdList.a);
for (var i = 0; i < currentSubs.length; i++)
{
currentSubs[i](value);
}
}
return init;
});
// PUBLIC API
function subscribe(callback)
{
subs.push(callback);
}
function unsubscribe(callback)
{
// copy subs into a new array in case unsubscribe is called within a
// subscribed callback
subs = subs.slice();
var index = subs.indexOf(callback);
if (index >= 0)
{
subs.splice(index, 1);
}
}
return {
subscribe: subscribe,
unsubscribe: unsubscribe
};
}
// INCOMING PORTS
function _Platform_incomingPort(name, converter)
{
_Platform_checkPortName(name);
_Platform_effectManagers[name] = {
__subMap: _Platform_incomingPortMap,
__converter: converter,
__portSetup: _Platform_setupIncomingPort
};
return _Platform_leaf(name);
}
var _Platform_incomingPortMap = F2(function(tagger, finalTagger)
{
return function(value)
{
return tagger(finalTagger(value));
};
});
function _Platform_setupIncomingPort(name, sendToApp)
{
var subs = __List_Nil;
var converter = _Platform_effectManagers[name].__converter;
// CREATE MANAGER
var init = __Scheduler_succeed(null);
_Platform_effectManagers[name].__init = init;
_Platform_effectManagers[name].__onEffects = F3(function(router, subList, state)
{
subs = subList;
return init;
});
// PUBLIC API
function send(incomingValue)
{
var result = A2(__Json_run, converter, incomingValue);
__Result_isOk(result) || __Error_throw(4, name, result.a);
var value = result.a;
for (var temp = subs; temp.b; temp = temp.b) // WHILE_CONS
{
sendToApp(temp.a(value));
}
}
return { send: send };
}
// EXPORT ELM MODULES
//
// Have DEBUG and PROD versions so that we can (1) give nicer errors in
// debug mode and (2) not pay for the bits needed for that in prod mode.
//
function _Platform_export__PROD(exports)
{
(typeof define === 'function' && define['amd'])
? define([], function() { return exports; })
:
(typeof module === 'object')
? module['exports'] = exports
:
scope['Elm']
? _Platform_mergeExportsProd(scope['Elm'], exports)
: scope['Elm'] = exports;
}
function _Platform_mergeExportsProd(obj, exports)
{
for (var name in exports)
{
(name in obj)
? (typeof name === 'function')
? __Error_throw(6)
: _Platform_mergeExportsProd(obj[name], exports[name])
: (obj[name] = exports[name]);
}
}
function _Platform_export__DEBUG(exports)
{
(typeof define === 'function' && define['amd'])
? define([], function() { return exports; })
:
(typeof module === 'object')
? module['exports'] = exports
:
scope['Elm']
? _Platform_mergeExportsDebug('Elm', scope['Elm'], exports)
: scope['Elm'] = exports;
}
function _Platform_mergeExportsDebug(moduleName, obj, exports)
{
for (var name in exports)
{
(name in obj)
? (typeof name === 'function')
? __Error_throw(6, moduleName)
: _Platform_mergeExportsDebug(moduleName + '.' + name, obj[name], exports[name])
: (obj[name] = exports[name]);
}
}