forked from ds300/tabangular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabangular.coffee
466 lines (367 loc) · 11.8 KB
/
tabangular.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
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
###*
# Tabangular.js v1.0.0
# License: http://www.apache.org/licenses/LICENSE-2.0
# Copyright (c) 2014 David Sheldrick
###
tabangular = angular.module "tabangular", []
# get a display: none; style in ther somewhere
tabangular.run ->
head = angular.element document.head
head.ready ->
head.append "<style type='text/css'>.tabangular-hide {display: none;}</style>"
###########
# Helpers #
###########
removeFromArray = (arr, item) ->
if (i = arr.indexOf item) isnt -1
arr.splice i, 1
true
else
false
lastItem = (arr) ->
arr[arr.length-1]
#################
# Events system #
#################
attach = (ctx, handlersObj, event, callback) ->
if not (cbs = handlersObj[event])?
cbs = []
handlersObj[event] = cbs
cbs.push callback
ctx.trigger "_attach", {event: event, callback: callback}
# return detach fn
->
i = cbs.indexOf callback
if i isnt -1
cbs.splice i, 1
ctx.trigger "_detach", {event: event, callback: callback}
true
else
false
class Evented
constructor: ->
@_handlers = {}
@_onceHandlers = {}
# both of these return 'off' fns to detach cb from ev
on: (ev, cb) -> attach @, @_handlers, ev, cb
one: (ev, cb) -> attach @, @_onceHandlers, ev, cb
trigger: (ev, data) ->
cb.call(@, data) for cb in ons if (ons = @_handlers[ev])?
cb.call(@, data) for cb in ones if (ones = @_onceHandlers[ev])?
ones?.length = 0
return
########################
# Tabs service factory #
########################
tabTypeDefaults =
scope: true
class TabsProvider
constructor: ->
@_tabTypes = {}
@_templateLoadCallbacks = {}
@_tabTypeFetcher = null
@$get = [
"$http", "$compile", "$controller", "$templateCache", "$q", "$injector"
($http, $compile, $controller, $templateCache, $q, $injector) =>
new TabsService @, $http, $compile, $controller, $templateCache, $q, $injector
]
###*
# registers a new tab type with the system
# @param id the string id of the tab type
# @param options the tab type options. Some combination of the following:
#
# scope: boolean
# specifies whether or not to define a new scope for
# tabs of this type. defaults to true
# templateUrl: string
# specifies a url from which to load a template (or the id of a
# template already in the dom)
# template: string
# specifies the template to use in the tab. takes
# precedence over templateUrl
# controller: function or string
# specifies the controller to call against the scope.
# Should be a function or a string denoting the
# controller to use. See
# https://docs.angularjs.org/api/ng/service/$controller
# defaults to a noop function
###
registerTabType: (id, options) ->
if @_tabTypes[id]?
throw new Error "duplicate tab type '#{id}'"
else
@_tabTypes[id] = options
# TODO: validate that we have enough information to decide how to compile
# tabs
typeFetcherFactory: (@_typeFetcherFactory) ->
_reifyFetcher: ($injector) ->
if @_typeFetcherFactory?
@_tabTypeFetcher = $injector.invoke @_typeFetcherFactory
delete @_typeFetcherFactory
if typeof @_tabTypeFetcher isnt 'function'
throw new Error "Tab type fetcher must be a function"
class TabsService
constructor: (@provider, @$http, @$compile, @$controller, @$templateCache,
@$q, @$injector) ->
_getTabType: (id) ->
@provider._reifyFetcher @$injector
if @provider._tabTypes[id]?
promise = @$q.when(@provider._tabTypes[id])
else if @provider._tabTypeFetcher?
deferred = @$q.defer()
@provider._tabTypeFetcher deferred, id
@provider._tabTypes[id] = deferred.promise
promise = deferred.promise
else
promise = @$q.when(null)
promise
# takes template and ctrl and does angular magic to create a DOM node, puts it
# in tab._elem and adds the tabangular-hide class
_compileElem: (tab, templateString, ctrl) ->
if ctrl?
@$controller(ctrl, {$scope: tab._scope, Tab: tab})
tab._elem = @$compile(templateString.trim())(tab._scope)
if tab.focused
tab._elem.removeClass "tabangular-hide"
else
tab._elem.addClass "tabangular-hide"
_compileContent: (tab, parentScope, cb) ->
if typeof (tab.type) is 'string'
@_getTabType(tab.type).then(
(type) =>
if !type?
throw new Error "Unrecognised tab type: " + tab.type
else
@__compileContent tab, parentScope, cb, type
,
(reason) ->
console.warn "Tab type not found: " + tab.type
console.warn "Reason: " + reason
type = {
templateString: "Tab type '#{tab.type}' not found because #{reason}"
scope: false
}
@__compileContent tab, parentScope, cb, type
)
else
@__compileContent tab, parentScope, cb, tab.type
__compileContent: (tab, parentScope, cb, type) ->
type = angular.extend {}, tabTypeDefaults, type
tab._scope = if type.scope then parentScope.$new() else parentScope
# maybe TODO: isolates and weird binding junk like directives
# does the actual compilation once we found the template
doCompile = (templateString) =>
@_compileElem tab, templateString, type.controller
cb()
# find the template
if type.template?
doCompile type.template
else if (url = type.templateUrl)?
# look in template cache first
if (cached = @$templateCache.get url)?
doCompile cached
else
# check if this template is already being loaded, and if so, just get
# in line for a callback
if (waiting = @provider._templateLoadCallbacks[url])?
waiting.push doCompile
else
# create the queue and trigger the load.
@provider._templateLoadCallbacks[url] = [doCompile]
@$http.get(url).then(
(response) =>
template = response.data
@$templateCache.put url, template
done(template) for done in @provider._templateLoadCallbacks[url]
delete @provider._templateLoadCallbacks[url]
,
(error) =>
delete @provider._templateLoadCallbacks[url]
tab.trigger "load_fail", error
throw new Error "Unable to load template from " + url
)
else
throw new Error "no template supplied"
newArea: (options) ->
area = new TabArea @, options
window.addEventListener "beforeunload", ->
area._persist()
area
class Tab extends Evented
constructor: (@area, @type, @options) ->
super()
@loading = true
@loadingDeferred = false
@closed = false
@focused = false
@_elem = null
@_scope = null
@enableAutoClose()
@on "_attach", (data) =>
if data.event is "loaded" and not @loading
data.callback()
deferLoading: ->
@loadingDeferred = true
@
doneLoading: ->
if @loading
@loading = false
@area._scope.$root.$$phase or @area._scope.$apply()
if not @closed
@trigger 'loaded'
@
close: (silent) ->
if @closed
throw new Error "Tab already closed"
else if silent or @autoClose
removeFromArray @area._tabs, @
removeFromArray @area._focusStack, @
@closed = true
@area._persist()
if not @loading
@_elem.remove()
if @_scope isnt @area._scope
@_scope.$destroy()
@_elem = @_scope = null
@trigger "closed"
if @focused
(lastItem(@area._focusStack) or lastItem(@area._tabs))?.focus()
@focused = false
else
@trigger "close"
@
enableAutoClose: ->
@autoClose = true
@
disableAutoClose: ->
@autoClose = false
@
focus: ->
if @loading
@on "loaded", => @focus()
else if @closed
throw new Error "Cannot focus closed tab"
else if not @focused
if (len = @area._focusStack.length) isnt 0
current = @area._focusStack[len-1]
current._elem.addClass "tabangular-hide"
current.focused = false
@focused = true
@_elem?.removeClass "tabangular-hide"
removeFromArray @area._focusStack, @
@area._focusStack.push @
@area._persist()
@trigger "focused"
@
move: (toArea, idx) ->
removeFromArray @area._tabs, @
if toArea isnt @area
removeFromArray @area._focusStack, @
@area._persist()
toArea._contentPane.append @_elem
if @focused
(lastItem(@area._focusStack) or lastItem(@area._tabs))?.focus()
@area = toArea
idx = Math.min Math.max(0, idx), @area._tabs.length
@area._tabs.splice idx, 0, @
if @focused or @area._tabs.length is 1
@focused = false
@focus()
@area._persist()
@
DEFAULT_TAB_AREA_OPTIONS =
id: null
persist: (json) ->
if @id?
window.localStorage["tabangular:" + @id] = json
getExisting: (cb) ->
if @id? and (json = window.localStorage["tabangular:" + @id])?
cb(json)
transformOptions: (options) -> options
parseOptions: (options) -> options
class TabArea extends Evented
constructor: (@_service, @options={}) ->
super()
@options = angular.extend {}, DEFAULT_TAB_AREA_OPTIONS, @options
# handle existing tabs
@_existingReady = false
@_existingTabs = []
# calls to @handleExisting get placed here if @_existingReady is false
@_existingReadyQueue = []
# initiate loading of existing tabs
@options.getExisting? (json) =>
json = json?.trim() or "[]" # allow empty string
@_existingReady = true
@_existingTabs = JSON.parse(json).map (tab) =>
tab.options = @options.parseOptions tab.options
tab
cb() for cb in @_existingReadyQueue
@_existingReadyQueue = []
# actual state
@_tabs = []
@_focusStack = []
# postpone loading of tabs until dom is ready
@_readyQueue = []
@_contentPane = null
@_scope = null
@on "_attach", (data) =>
if data.event is "loaded" and @_contentPane?
data.callback()
# saves the junk to the place
_persist: ->
@options.persist? JSON.stringify @_tabs.map (tab) =>
type: tab.type
options: @options.transformOptions tab.options
focused: !!tab.focused
# calls cb on existing tabs like {type, options, active}. if cb returns
# true, automatically reloads tab by calling @load(type, options)
handleExisting: (cb) ->
cb = cb or -> true
if not @_existingReady
@_existingReadyQueue.push => @handleExisting cb
else
for tab in @_existingTabs
if cb tab
loaded = @load tab.type, tab.options
loaded.focus() if tab.focused
@_persist()
@
_registerContentPane: (scope, elem) ->
@_contentPane = elem
@_scope = scope
cb() for cb in @_readyQueue
@_readyQueue = []
@trigger "loaded"
_createTab: (tabType, options) ->
tab = new Tab @, tabType, options
@_tabs.push tab
tab
load: (tabType, options={}) ->
tab = @_createTab tabType, options
if @_contentPane?
@_load tab
else
@_readyQueue.push => @_load tab
@_persist()
tab
_load: (tab) ->
@_service._compileContent tab, @_scope, =>
@_contentPane.append tab._elem
tab.trigger "dom_ready"
if not tab.loadingDeferred
tab.doneLoading()
open: (tabType, options) ->
@load(tabType, options).focus()
list: ->
@_tabs
tabangular.provider 'Tabs', TabsProvider
tabangular.directive 'tabContent', ->
scope: false
restrict: 'A'
link: ($scope, $elem, $attrs) ->
area = $scope.$eval $attrs.tabContent
if not (area instanceof TabArea)
throw new Error "'#{$attrs.tabContent}' is not a tab area"
else
area._registerContentPane $scope, $elem
return