-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajaxQueue.coffee
52 lines (43 loc) · 1.06 KB
/
ajaxQueue.coffee
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
$ = jQuery
settings =
onError: (err) ->
alert "An error occured, please refresh the page: " + err
hasErrored = false
queue = []
isFlush = true
flushFncs = []
nextItem = () ->
if isFlush and queue.length > 0
isFlush = false
nextItemRec ->
for fnc in flushFncs
fnc()
flushFncs = []
isFlush = true
# Might have added some items in response
nextItem()
nextItemRec = (cb) ->
ajaxFnc = queue.shift()
ajaxFnc().fail(settings.onError).done ->
if queue.length == 0
cb()
else
nextItemRec cb
methods =
init: (options) ->
alert 'init'
settings = $.extend settings, options
return this
add: (ajaxFnc) ->
alert 'add'
queue.push ajaxFnc
nextItem()
return this
flush: (cb) ->
alert 'flush'
if isFlush then cb() else flushFncs.push(cb)
return this
$.fn.ajaxQueue = (method) ->
return methods[method].apply this, Array.prototype.slice.call( arguments, 1 ) if method of methods
return methods.init.apply this, arguments if typeof method is 'object' or !method
return $.error "Method #{method} does not exist on jQuery.ajaxQueue"