forked from Evercoder/appseeds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appseeds.js
845 lines (774 loc) · 31.2 KB
/
appseeds.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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
// AppSeeds (c) 2012 Dan Burzo
// AppSeeds can be freely distributed under the MIT license.
// Elegant JavaScript components for modern web applications. Made by [@danburzo](https://twitter.com/#!/danburzo).
//
// Fork & contribute at [github.com/danburzo/appseeds](https://github.com/danburzo/appseeds).
//
// Download [zip](https://github.com/danburzo/appseeds/zipball/master), [tar](https://github.com/danburzo/appseeds/tarball/master).
//
// The guiding principles were: speed, terseness and progressive disclosure.
//
// API / Annotated source code
// ===========================
//
// What you're seeing below is the annotated source code slash makeshift API reference for AppSeeds.
// It was automatically generated with [docco](http://jashkenas.github.com/docco/). Here goes:
// Encapsulate the library to protect global scope.
/*globals exports define require console*/
(function(){
var root = this;
// Export AppSeeds for CommonJS and the browser.
var AppSeeds, Seeds;
if (typeof exports !== 'undefined') {
AppSeeds = Seeds = exports;
} else {
AppSeeds = Seeds = root.AppSeeds = root.Seeds = {};
}
// Current version of the application, using [semantic versioning](http://semver.org/).
Seeds.version = '0.7.0';
// Polyfills, mostly for IE, around missing Array methods like [indexOf](https://gist.github.com/1034425).
if(!Array.isArray) {
Array.isArray = function (vArg) { return Object.prototype.toString.call(vArg) === "[object Array]"; };
}
if(!Array.prototype.indexOf) {
Array.prototype.indexOf = function(a,b,c){
for(c=this.length,b=(c+~~b)%c;b<c&&(!(b in this)||this[b]!==a);b++);
return b^c?b:-1;
};
}
// Seeds.PubSub
// ============
// Alias: *Seeds.PS*
//
// Simple Publish/Subscribe implementation for the Mediator pattern.
// It supports namespaced events like: `namespace:event`.
Seeds.PubSub = Seeds.PS = {
// Create a PubSub instance.
//
// * *options* a configuration object for the PubSub instance.
create: function(options) {
var ps = Seeds.o.beget(this._instanceMethods);
Seeds.o.mixin(ps, options, {
_pubsubEvents: {},
_pubsubHappened: {}
});
return ps;
},
// ### Seeds.PubSub API
_instanceMethods: {
// Publish an event.
//
// * **pub(event, [arg1, [arg2 ...]])**
// * *event* the event to trigger;
// * *arg1 ... argN* (optional) any number of additional params to pass to the event subscribers.
pub: function(eventString) {
var eventComponents = this._parseEventNamespace(eventString);
var eventArray, i, ilen, j, jlen, args, subscriber, ret, event;
for (i = 0, ilen = eventComponents.length; i < ilen; i++) {
eventArray = this._pubsubEvents[event = eventComponents[i]] || [];
args = Array.prototype.slice.call(arguments, 1);
for (j = 0, jlen = eventArray.length; j < jlen; j++) {
subscriber = eventArray[j];
ret = subscriber[0].apply(subscriber[1] || this, args);
if (subscriber[2] && ret !== false) {
this.unsub(event, subscriber[0]);
}
}
this._pubsubHappened[event] = args;
}
return this;
},
// Parses the namespaced event string to identify its components.
_parseEventNamespace: function(event) {
var events = [], str = '', ch;
for (var i = 0; i < event.length; i++) {
if ((ch = event.charAt(i)) === ':') events.push(str);
str += ch;
}
events.push(str);
return events;
},
// Subscribe a function to one or more events.
//
// * **sub(eventString, method, [thisArg, [flags]])**
// * *eventString* one or more space-separated events;
// * *method* the function to subscribe to the events;
// * *thisArg* (optional) context for the method;
// * *flags* (optional) boleans to configure the subscribers's behavior:
// * *once* if true, the subscriber will self-unsubscribe after the first successful execution. You'll usually use *PubSub.once()* for this;
// * *recoup* if true, the subscriber will execute immediately if the event it subscribes to already happened. You'll usually use *PubSub.recoup()* for this.
//
// *Careful!* When subscribing a method to multiple events, if the events don't get published
// with compatible parameters, you can end up with weird behavior. To avoid this, it's best to
// keep a common interface for all events in the list.
sub: function(eventStr, method, thisArg, flags) {
var events = eventStr.split(/\s+/), event, eventArray, i, len, oldArgs;
flags = flags || { once: false, recoup: false };
for (i = 0, len = events.length; i < len; i++) {
eventArray = this._pubsubEvents[event = events[i]];
if (eventArray) {
eventArray.push([method, thisArg, flags.once]);
} else {
this._pubsubEvents[event] = [[method, thisArg, flags.once]];
}
if (flags.recoup && (oldArgs = this._pubsubHappened[event])) {
method.apply(thisArg || this, oldArgs);
}
}
return this;
},
// Unsubscribe a function from one or more events.
//
// * **unsub(eventString, method)**
// * *eventString* one or more space-separated events;
// * *method* the function to unsubscribe
unsub: function(eventStr, method) {
var events = eventStr.split(/\s+/), event, eventArray, newEventArray, i, j;
for (i = 0; i < events.length; i++) {
eventArray = this._pubsubEvents[event = events[i]];
newEventArray = [];
for (j = 0; j < eventArray.length; j++) {
if (eventArray[j][0] !== method) {
newEventArray.push(eventArray[j]);
}
}
this._pubsubEvents[event] = newEventArray;
}
return this;
},
// Subscribe to an event once.
//
// The function will be unsubscribed upon successful exectution.
// To mark the function execution as unsuccessful
// (and thus keep it subscribed), make it return `false`.
//
// * **once(eventString, method, thisArg)** identical to *PubSub.sub()*.
once: function(eventStr, method, thisArg) {
return this.sub(eventStr, method, thisArg, { once: true });
},
// Subscribe to an event, and execute immediately if that event was ever published before.
//
// If executed immediately, the subscriber will get as parameters the last values sent with the event.
//
// * **recoup(eventString, method, thisArg)** identical to *PubSub.sub()*.
recoup: function(eventStr, method, thisArg) {
return this.sub(eventStr, method, thisArg, { recoup: true });
},
// Schedule an event to publish, using *Seeds.Lambda*.
//
// * **schedule(eventString, [arg1, ... [argN]])** identical to *PubSub.pub()*.
//
// While pub() publishes an event immediately, schedule() returns a scheduled task
// which you need to trigger by using `now()`, `delay()` etc.
schedule: function() {
if (!Seeds.Lambda) return null;
return Seeds.Lambda.create.apply(
Seeds.Lambda,
[this.pub, this].concat(Array.prototype.slice.call(arguments))
);
}
},
// #### PubSub Constants
PUBLIC_API: ['pub', 'sub', 'unsub', 'once', 'recoup']
};
// Seeds.StateManager
// ==================
// Alias: *Seeds.SM*
//
// *StateManager* implements a hierarchical state chart closely aligned with David Harel's definition
// from hi seminal paper *Statecharts: A Visual Formalism For Complex Systems*.
//
// Using a state chart to organize your application helps your modules react to state-specific events
// in a clear, maintainable way.
Seeds.StateManager = Seeds.SM = {
// Creates a new instance of State Manager. Used as follows:
//
// * **create(states)**
// * *states* (optional) one or more space-separated state names, or an array of such strings;
// convenience method for *StateManager.add(states)*
create: function(options) {
var stateManager = Seeds.o.beget(this._instanceMethods);
// Mix in a *Seeds.PubSub* instance to use in dispatching events.
var pubsub = Seeds.o.facade(Seeds.PS.create(), Seeds.PS.PUBLIC_API, stateManager);
Seeds.o.mixin(stateManager, pubsub, {
_status: Seeds.StateManager.STATUS_READY,
root: 'root',
_states: {},
_actions: {},
_queue: {}
});
stateManager.state(stateManager.root, {
parent: null,
context: {},
defaultSubstate: null
});
stateManager.context = stateManager.state(stateManager.root).context;
stateManager.current = stateManager.root;
options = options || {};
if (typeof options === 'string' || Array.isArray(options)) {
stateManager.add(options);
}
return stateManager;
},
// #### State Manager constants
// The state manager can accept a new transition.
STATUS_READY: 0x01,
// The state manager is currently in a transition, and therefore is locked.
STATUS_TRANSITIONING: 0x02,
// The state manager was paused as part of an asynchronous transition.
STATUS_ASYNC: 0x03,
// The flag to return in *enter*/*exit* to enter asynchronous mode and pause the state manager.
ASYNC: false,
// ### Seeds.StateManager API
_instanceMethods: {
// Name of the root state.
root: 'root',
// Current state. This should not be manually overwritten!
current: null,
// Hash for the collection of states, with state name as key and an object
// as value to keep information about the state:
//
// * *parent* parent state
// * *defaultSubstate* default substate
// * *context* the collection of actions associated with the state
_states: {},
// The context of the current state, contains the actions and other 'private' methods
// defined with when() for that state.
context: null,
// The current status of the state manager.
_status: null,
// Where we left off when going into ASYNC mode. We need this in order to resume.
_queue: null,
// Get/set information about a state.
//
// * *stateName* name of the state
// * *val* (optional) object to set as new value for state
//
// Returns the state object.
state: function(stateName, val) {
if (val !== undefined) this._states[stateName] = val;
return this._states[stateName];
},
// Gets the substates for a state.
//
// * *stateName* name of the state
//
// Returns an array containing the names of the child states.
children: function(stateName) {
var substates = [];
for (var i in this._states) {
if (this._states.hasOwnProperty(i) && this._states[i].parent === stateName) {
substates.push(i);
}
}
return substates;
},
// Navigates from the current state up to the root state,
// returning the list of state names that make up the branch.
_toRoot: function(stateName) {
var route = [];
while(stateName) {
route.push(stateName);
stateName = this.state(stateName).parent;
}
return route;
},
// Find the LCA (Lowest Common Ancestor) between two states.
_lca: function(startState, endState) {
var exits = this._toRoot(startState), entries = this._toRoot(endState), lca;
for (var i = 0; i < exits.length; i++) {
var idx = entries.indexOf(exits[i]);
if (idx !== -1) {
lca = exits[i];
exits = exits.slice(0, i);
entries = entries.slice(0, idx).reverse();
break;
}
}
return { exits: exits, entries: entries, lca: lca };
},
// Parse a state string. See *StateManager.add()* for expected formats.
_getStatePairs: function(str) {
var tmp = str.split('->');
var parentState, childStates;
switch(tmp.length) {
case 0:
childStates = [];
break;
case 1:
parentState = this.root;
childStates = tmp[0].split(/\s+/);
break;
case 2:
parentState = tmp[0].replace(/^\s\s*/, '').replace(/\s\s*$/, ''); // trim
childStates = tmp[1].split(/\s+/);
break;
default:
this.pub('error', 'String ' + str + ' is an invalid state pair and has been dropped.');
childStates = [];
break;
}
var pairs = [], childState, defaultSubstateRegex = /^!/;
for (var i = 0; i < childStates.length; i++) {
if (childStates[i]) {
pairs.push([
parentState,
childStates[i].replace(defaultSubstateRegex, ''),
defaultSubstateRegex.test(childStates[i])
]);
}
}
return pairs;
},
// Transition to a new state in the manager.
//
// Attempting to transition to an inexistent state does nothing and publishes a warning.
// Likewise, attempting to transition to the same state as the current one will do nothing.
//
// Parameters:
//
// * *stateName* the name of the state to which to transition
go: function(stateName) {
var state = this.state(stateName),
args = Array.prototype.slice.call(arguments, 1) || [];
if (state === undefined) {
this.pub('error', 'State ' + stateName + ' not defined');
return;
}
if (this.current !== stateName && this._status === Seeds.SM.STATUS_READY) {
var states = this._lca(this.current, stateName);
args.unshift(states);
this._walk.apply(this, args);
}
return this;
},
_walk: function(states) {
var i, action, args = Array.prototype.slice.call(arguments, 1);
this._status = Seeds.SM.STATUS_TRANSITIONING;
/* exit to common ancestor */
for (i = 0; i < states.exits.length; i++) {
this.current = states.exits[i];
this.context = this.state(states.exits[i]).context;
if (typeof this.context.exit === 'function') {
if (this.context.exit.call(this) === Seeds.SM.ASYNC) {
this._status = Seeds.SM.STATUS_ASYNC;
this._queue = { exits: states.exits.slice(i+1), entries: states.entries, lca: states.lca, args: args };
return this;
}
}
this.pub('exit', this.current);
}
/* set common ancestor as current state */
this.current = states.lca;
this.context = this.state(this.current).context;
/* enter to desired state */
for (i = 0; i < states.entries.length; i++) {
this.current = states.entries[i];
this.context = this.state(states.entries[i]).context;
if (typeof this.context.enter === 'function') {
if (this.context.enter.call(this) === Seeds.SM.ASYNC) {
this._status = Seeds.SM.STATUS_ASYNC;
this._queue = { exits: [], entries: states.entries.slice(i+1), lca: states.entries[i], args: args };
return this;
}
}
this.pub('enter', this.current);
}
this._status = Seeds.SM.STATUS_READY;
var defaultSubstate = this.state(this.current).defaultSubstate;
if (defaultSubstate) {
/* go to default substate */
args.unshift(defaultSubstate);
this.go.apply(this, args);
} else {
/* execute 'stay' */
if (typeof this.context.stay === 'function') {
this.context.stay.apply(this, args);
}
args.unshift('stay', this.current);
this.pub.apply(this, args);
}
},
resume: function() {
var args = this._queue.args;
delete this._queue.args;
if (this._status === Seeds.SM.STATUS_ASYNC) {
args.unshift(this._queue);
this._walk.apply(this, args);
} else {
this.pub('error', 'State manager is not paused.');
}
},
// Add states to the manager.
//
// All state names need to be unique. Attempting to add a state with an existing name
// will show a warning and the state will not be added. Likewise, attempting to add a state
// to an inexisting parent will show a warning and the state will not be added.
//
// Signatures:
//
// * **add(stateString)**
// * **add(stateString1, ..., stateStringN)**
// * **add(stateHash)** where the key is the name of the parent state and the value is a list
// of space-separated state names.
//
// Expected format for the state strings:
//
// * `parentState -> state1 state2 state3` or
// * `state1 state2 state3` in which case the root state is the implied parent.
//
// To specify a default substate, use `!` like this:
//
// parentState -> state1 !state2 state3
//
// TODO would be cool to add `=>` instead of `->` if the substates are meant to be parallel.
add: function(stateConnection) {
var i, parentState, childState, isDefaultSubstate;
if (arguments.length > 1) {
for (i = 0; i < arguments.length; i++) {
this.add(arguments[i]);
}
} else {
if (Array.isArray(stateConnection)) {
for (i = 0; i < stateConnection.length; i++) {
this.add(stateConnection[i]);
}
} else if (typeof stateConnection === 'string') {
var pairs = this._getStatePairs(stateConnection);
for (i = 0; i < pairs.length; i++) {
parentState = pairs[i][0];
childState = pairs[i][1];
isDefaultSubstate = pairs[i][2];
if (!this.state(parentState)) {
this.pub('error', 'State ' + parentState +
' is not included in the tree. State not added.');
return;
}
if (this.state(childState)) {
this.pub('error', 'State ' + childState +
' is already defined. New state not added.');
}
this.state(childState, {
context: {},
defaultSubstate: null,
parent: parentState
});
if (isDefaultSubstate) {
if (this.state(parentState).defaultSubstate) {
this.pub('error', 'State ' + parentState +
' already has a default substate ' + this.state(parentState).defaultSubstate +
'. It will be overwritten with ' + childState);
}
this.state(parentState).defaultSubstate = childState;
}
}
} else if (typeof stateConnection === 'object') {
for (i in stateConnection) {
if (stateConnection.hasOwnProperty(i)) {
this.add(i + " -> " + stateConnection[i]);
}
}
}
}
return this;
},
// Perform an action within the state manager.
//
// The manager will look through the entire state chain,
// starting from the current state and up to the root, for matching actions.
//
// You can break this chain by returning false in one of the actions,
// to prevent it from bubbling to the ancestor states.
//
// You can send any number of additional parameters to the action:
//
// * **act(actionName, [arg1, [arg2, ..., argN]])**
// * *actionName* the name of the action;
// * *arg1, ... argN* (optional) additional parameters to pass to the action.
act: function() {
if (this._status !== Seeds.SM.ASYNC) {
// Don't forget to regenerate the context to current state
// after the recursive call ends.
this.context = this._act(this.current, arguments);
} else {
this.pub('error', 'State manager is paused, can\'t perform action ' + arguments[0]);
}
return this;
},
// Get a reference to a state manager action.
//
// * **act(actionName)**
// * *actionName* name of the action
//
// Returns a reference to the appropriate invocation of *act()*.
action: function(actionName) {
var that = this;
if (!this._actions[actionName]) {
this._actions[actionName] = function() {
return that.act.apply(that, [actionName].concat(Array.prototype.slice.call(arguments)));
};
}
return this._actions[actionName];
},
// Act recursively up the state tree until an action returns `false`.
_act: function(state, args) {
this.context = this.state(state).context;
var action = this.context[args[0]];
if (typeof action === 'function') {
var ret = action.apply(this, Array.prototype.slice.call(args, 1));
this.pub('act', args[0], state);
if (ret === false) return;
}
var parentState = this.state(state).parent;
if (parentState) this._act(parentState, args);
return this.context;
},
// Attach a set of actions for one or more states.
//
// Subsequent declarations of the same action for a state will overwrite the previous ones.
// Signatures:
//
// * **when(stateNames, actionsHash)**
// * *stateNames* one or more space-separated stata names;
// * *actionsHash* an object containing the actions to add to this state.
// There are three reserved action names with special meaning:
// * *enter* is executed when the manager enters the state;
// * *exit* is executed when the manager leaves the state;
// * *stay* is executed when the manager arrives in the state as its destination;
// * **when(stateNames, actionName, action)** a simpler way to add a single action at a time to the state;
// * **when(stateNames, stayFunction)** even simpler: if the second parameter is a function,
// it will be interpreted as the *stay* action for the state;
// * **when(stateHash)** you can even have multiple state action declarations in the same call.
//
// For example:
//
// when({
// 'state1 state2': { /* some actions */ },
// 'state3': { /* some other actions */ }
// });
//
// Actions defined here will receive all the parameters sent with *StateManager.act()*.
// `this` inside the action refers to the state manager. `this.context` refers to the actions hash
// defined for the state and can be used to reference other actions from the same state directly.
when: function(stateString, actions, action) {
var i;
if (typeof stateString === 'object') {
for (i in stateString) {
this.when(i, stateString[i]);
}
} else {
var states = stateString.split(/\s+/);
for (i = 0; i < states.length; i++) {
var stateName = states[i];
if (stateName) {
var state = this.state(stateName);
if (!state) {
this.pub('error', 'State ' + stateName + ' doesn\'t exist. Actions not added.');
return;
}
/* interpret single function as `stay` method */
if (typeof actions === 'function') {
actions = { stay: actions };
} else if (typeof actions === 'string') {
/*
interpret add('stateName', 'actionName', function(){ ... })
as add('stateName', { actionName: function() {...}})
*/
var tmp = actions;
actions = {};
actions[tmp] = action;
}
if (!state.context) state.context = {};
for (i in actions) {
if (actions.hasOwnProperty(i)) state.context[i] = actions[i];
}
}
}
}
return this;
}
}
};
// Seeds.Lambda
// ============
// *Lambda* supercharges your functions, providing a clear API for delaying, repeating, and limiting their execution.
Seeds.Lambda = {
// Create a task.
//
// * **create(callback, thisArg, [arg1, [arg2 ... ])**
// * *callback* the function to schedule;
// * *thisArg* (optional) context for the function;
// * *arg1 ... argN* (optional) additional parameters to send to the function.
//
// Returns a *StateManager.Lambda* task. Can also be invoked as *Seeds.f()*, for convenience.
create: function(callback, thisArg) {
var f = function() {
return f.reset.apply(f, arguments);
};
Seeds.o.mixin(f, this._instanceMethods, {
callback: callback,
args: Array.prototype.slice.call(arguments, 2),
thisArg: thisArg || this,
limit: null,
_lastCalled: null,
_timerId: null,
period: null,
type: null
});
return f;
},
// ### Seeds.Lambda API
_instanceMethods: {
// Execute the task immediately. If the task is throttled (see *Lambda.throttle()*),
// it will not be executed with higher frequency than the one imposed by the throttle limit.
//
// If you provide parameters to this call, they will override the ones declared on *create()*.
run: function() {
var now = (new Date()).getTime();
if (!this.limit || !this._lastCalled || (now - this._lastCalled > this.limit)) {
this.callback.apply(this.thisArg, arguments.length ? arguments : this.args);
this._lastCalled = now;
}
return this;
},
// Stop the scheduled task.
stop: function() {
if (this._timerId) {
if (this.type === 'delay') {
window.clearTimeout(this._timerId);
} else if (this.type === 'interval') {
window.clearInterval(this._timerId);
}
}
return this;
},
// Reset the timer of the schedule task, effectively postponing its execution.
reset: function() {
this.stop();
var that = this, f = function() { that.run(); };
if (this.type === 'delay') {
this._timerId = window.setTimeout(f, this.period);
} else if (this.type == 'interval') {
this._timerId = window.setInterval(f, this.period);
} else {
this.run.apply(this, arguments);
}
return this;
},
// Delay task execution with a number of milliseconds.
//
// * **delay(timeout)**
// * *timeout* delay of execution, in milliseconds.
delay: function(timeout) {
this.type = 'delay';
this.period = timeout;
return this;
},
// Like *delay*, but also starts the timer.
delayed: function(timeout) {
return this.delay(timeout).start();
},
// Repeat the execution of the task at a fixed interval.
//
// * **repeat(interval)**
// * *interval* the execution interval
repeat: function(interval) {
this.type = 'interval';
this.period = interval;
return this;
},
// Like *repeat*, but also starts the timer.
repeated: function(interval) {
return this.repeat(interval).start();
},
// Limit the execution frequency of a task.
//
// * **throttle(limit)**
// * *limit* the maximum frequency of execution, in milliseconds.
// send `0` or `null` to cancel the throttling.
throttle: function(limit) {
this.limit = limit;
return this;
}
}
};
// Utility methods
// ===============
// ## Seeds.o
// *Seeds.o* implements useful methods for object manipulation.
Seeds.o = {
// *guid* generates random GUIDs (Global Unique IDs) for things.
guid: function() {
var S4 = function() { return (((1+Math.random())*0x10000)|0).toString(16).substring(1); };
return (S4()+S4()+"-"+S4()+"-"+S4()+"-"+S4()+"-"+S4()+S4()+S4());
},
// *mixin* takes an arbitrary number of objects as arguments and mixes them into the first object.
mixin: function() {
var obj = arguments[0];
for (var i = 1; i < arguments.length; i++) {
var ext = arguments[i];
if (ext) {
for (var j in ext) {
if (ext.hasOwnProperty(j)) obj[j] = ext[j];
}
}
}
return obj;
},
// *beget* implements prototypal inheritance, as suggested in
// [this article](http://javascript.crockford.com/prototypal.html) by Douglas Crockford.
beget: function(o) {
var C = function() {};
C.prototype = o;
return new C();
},
// *facade* returns a facade for a source object containing the desired subset of methods.
//
// * **facade(sourceObj, api, destObj)**
// * *sourceObj* the source object containing the methods;
// * *api* a mapping for the methods to include in the facade:
// * if it's an array, the facade method names will have the same name
// as the ones in the source object;
// * if it's a hash, the key will be the method name from the source object
// and the value will be the name to use in the facade;
// * *destObj* (optional) the destination object to which to bind the methods;
// if ommited, the methods will be re-bound to the facade itself.
facade: function(sourceObj, api, destObj) {
var facade = {}, i;
if (Array.isArray(api)) {
for (i = 0; i < api.length; i++) {
facade[api[i]] = Seeds.o.bind(sourceObj, api[i], destObj || facade);
}
} else if (typeof api === 'object') {
for (i in api) {
if (api.hasOwnProperty(i)) {
facade[api[i]] = Seeds.o.bind(sourceObj, i, destObj || facade);
}
}
}
return facade;
},
// *bind* implements functionality similar to *Function.bind*
// in that it attaches a method to a different context.
//
// * **bind(sourceObj, methodName, destObj)**
// * *sourceObj* the original object where the method was defined;
// * *methodName* the name of the property to bind;
// * *destObj* destination object to which to bind the function.
//
// In addition to the usual bind behavior, *bind* detects method chaining
// and keeps it intact with the new context.
bind: function(sourceObj, methodName, destObj) {
return function() {
var ret = sourceObj[methodName].apply(sourceObj, arguments);
/* detect method chaining */
return ret === sourceObj ? destObj : ret;
};
}
};
// ## Seeds.f
// Use this as an alias for *Seeds.Lambda.create*.
Seeds.f = function() {
return Seeds.Lambda.create.apply(Seeds.Lambda, arguments);
};
})(this);