Skip to content
Snippets Groups Projects
Commit bb1eb4b5 authored by Alfredo Sumaran's avatar Alfredo Sumaran
Browse files

Set actions dinamically and offer defaultAction as a optional parameter

parent 3c9e860f
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
Loading
@@ -50,11 +50,10 @@
# </div>
#
class @UserTabs
actions: ['activity', 'groups', 'contributed', 'projects'],
defaultAction: 'activity',
constructor: (opts) ->
{
@action = 'activity'
@defaultAction = 'activity'
@parentEl = $(document)
} = opts
 
Loading
Loading
@@ -63,16 +62,21 @@ class @UserTabs
 
# Store the `location` object, allowing for easier stubbing in tests
@_location = location
# Set tab states
@loaded = {}
for item in @parentEl.find('.nav-links a')
@loaded[$(item).attr 'data-action'] = false
 
@bindEvents()
@tabStateInit()
# Actions
@actions = Object.keys @loaded
 
currAction = @defaultAction if @action is 'show'
@bindEvents()
 
# Set active tab
source = $(".#{currAction}-tab a").attr('href')
@activateTab(currAction)
@action = @defaultAction if @action is 'show'
source = $(".#{@action}-tab a").attr('href')
@activateTab(@action)
 
bindEvents: ->
# Turn off existing event listeners
Loading
Loading
@@ -81,10 +85,6 @@ class @UserTabs
# Set event listeners
@parentEl.on 'shown.bs.tab', '.nav-links a[data-toggle="tab"]', @tabShown
 
tabStateInit: ->
for action in @actions
@loaded[action] = false
tabShown: (event) =>
$target = $(event.target)
action = $target.data('action')
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment