Commit 3c9e860f authored by Alfredo Sumaran's avatar Alfredo Sumaran

Provide defaults and make sure we everything is container into a parent element

parent 85e672b1
...@@ -12,4 +12,7 @@ class @User ...@@ -12,4 +12,7 @@ class @User
e.preventDefault() e.preventDefault()
initTabs: -> initTabs: ->
new UserTabs(@opts) new UserTabs(
parentEl: '.user-profile'
action: @opts.action
)
...@@ -52,8 +52,15 @@ ...@@ -52,8 +52,15 @@
class @UserTabs class @UserTabs
actions: ['activity', 'groups', 'contributed', 'projects'], actions: ['activity', 'groups', 'contributed', 'projects'],
defaultAction: 'activity', defaultAction: 'activity',
constructor: (opts) ->
{
@action = 'activity'
@parentEl = $(document)
} = opts
# Make jQuery object if selector is provided
@parentEl = $(@parentEl) if typeof @parentEl is 'string'
constructor: (@opts = {}) ->
# Store the `location` object, allowing for easier stubbing in tests # Store the `location` object, allowing for easier stubbing in tests
@_location = location @_location = location
@loaded = {} @loaded = {}
...@@ -61,19 +68,18 @@ class @UserTabs ...@@ -61,19 +68,18 @@ class @UserTabs
@bindEvents() @bindEvents()
@tabStateInit() @tabStateInit()
action = @opts.action currAction = @defaultAction if @action is 'show'
action = @defaultAction if action == 'show'
# Set active tab # Set active tab
source = $(".#{action}-tab a").attr('href') source = $(".#{currAction}-tab a").attr('href')
@activateTab(action) @activateTab(currAction)
bindEvents: -> bindEvents: ->
# Turn off existing event listeners # Turn off existing event listeners
$(document).off 'shown.bs.tab', '.nav-links a[data-toggle="tab"]' @parentEl.off 'shown.bs.tab', '.nav-links a[data-toggle="tab"]'
# Set event listeners # Set event listeners
$(document).on 'shown.bs.tab', '.nav-links a[data-toggle="tab"]', @tabShown @parentEl.on 'shown.bs.tab', '.nav-links a[data-toggle="tab"]', @tabShown
tabStateInit: -> tabStateInit: ->
for action in @actions for action in @actions
...@@ -88,7 +94,7 @@ class @UserTabs ...@@ -88,7 +94,7 @@ class @UserTabs
@setCurrentAction(action) @setCurrentAction(action)
activateTab: (action) -> activateTab: (action) ->
$(".nav-links .#{action}-tab a").tab('show') @parentEl.find(".nav-links .#{action}-tab a").tab('show')
setTab: (source, action) -> setTab: (source, action) ->
return if @loaded[action] is true return if @loaded[action] is true
...@@ -108,20 +114,20 @@ class @UserTabs ...@@ -108,20 +114,20 @@ class @UserTabs
url: "#{source}.json" url: "#{source}.json"
success: (data) => success: (data) =>
tabSelector = 'div#' + action tabSelector = 'div#' + action
document.querySelector(tabSelector).innerHTML = data.html @parentEl.find(tabSelector).html(data.html)
@loaded[action] = true @loaded[action] = true
loadActivities: (source) -> loadActivities: (source) ->
return if @loaded['activity'] is true return if @loaded['activity'] is true
$calendarWrap = $('.user-calendar') $calendarWrap = @parentEl.find('.user-calendar')
$calendarWrap.load($calendarWrap.data('href')) $calendarWrap.load($calendarWrap.data('href'))
new Activities() new Activities()
@loaded['activity'] = true @loaded['activity'] = true
toggleLoading: (status) -> toggleLoading: (status) ->
$('.loading-status .loading').toggle(status) @parentEl.find('.loading-status .loading').toggle(status)
setCurrentAction: (action) -> setCurrentAction: (action) ->
# Remove possible actions from URL # Remove possible actions from URL
......
...@@ -8,7 +8,8 @@ ...@@ -8,7 +8,8 @@
= render 'shared/show_aside' = render 'shared/show_aside'
.cover-block .user-profile
.cover-block
.cover-controls .cover-controls
- if @user == current_user - if @user == current_user
= link_to profile_path, class: 'btn btn-gray' do = link_to profile_path, class: 'btn btn-gray' do
...@@ -69,7 +70,7 @@ ...@@ -69,7 +70,7 @@
= icon('map-marker') = icon('map-marker')
= @user.location = @user.location
%ul.nav-links.center %ul.nav-links.center.user-profile-nav
%li.activity-tab %li.activity-tab
= link_to user_calendar_activities_path, data: {target: 'div#activity', action: 'activity', toggle: 'tab'} do = link_to user_calendar_activities_path, data: {target: 'div#activity', action: 'activity', toggle: 'tab'} do
Activity Activity
...@@ -83,7 +84,7 @@ ...@@ -83,7 +84,7 @@
= link_to user_projects_path, data: {target: 'div#projects', action: 'projects', toggle: 'tab'} do = link_to user_projects_path, data: {target: 'div#projects', action: 'projects', toggle: 'tab'} do
Personal projects Personal projects
%div{ class: container_class } %div{ class: container_class }
.tab-content .tab-content
#activity.tab-pane #activity.tab-pane
.gray-content-block.white.second-block .gray-content-block.white.second-block
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment