Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
48ae8ef1
Commit
48ae8ef1
authored
Mar 01, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Activate tab according URL
parent
8c90b6ec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
17 deletions
+23
-17
app/assets/javascripts/user_tabs.js.coffee
app/assets/javascripts/user_tabs.js.coffee
+16
-10
app/views/users/show.html.haml
app/views/users/show.html.haml
+7
-7
No files found.
app/assets/javascripts/user_tabs.js.coffee
View file @
48ae8ef1
class
@
UserTabs
actions
:
[
'activity'
,
'groups'
,
'contributed
'
,
'personal
'
],
actions
:
[
'activity'
,
'groups'
,
'contributed
_projects'
,
'projects
'
],
defaultAction
:
'activity'
,
tabButtonSelector
:
'.nav-links a[data-toggle="tab"]'
constructor
:
(
@
opts
=
{})
->
# Store the `location` object, allowing for easier stubbing in tests
...
...
@@ -9,16 +8,20 @@ class @UserTabs
@
loaded
=
{}
@
bindEvents
()
@
setTabState
()
@
tabStateInit
()
# Set default tab
source
=
$
(
".
#{
@
defaultAction
}
-tab a"
).
attr
(
'href'
)
@
setTab
(
source
,
@
defaultAction
)
action
=
@
opts
.
action
action
=
@
defaultAction
if
action
==
'show'
# Set active tab
source
=
$
(
".
#{
action
}
-tab a"
).
attr
(
'href'
)
@
activateTab
(
action
)
@
setTab
(
source
,
action
)
bindEvents
:
->
$
(
document
).
on
'shown.bs.tab'
,
@
tabButtonSelector
,
@
tabShown
$
(
document
).
on
'shown.bs.tab'
,
'.nav-links a[data-toggle="tab"]'
,
@
tabShown
setTabState
:
->
tabStateInit
:
->
for
action
in
@
actions
@
loaded
[
action
]
=
false
...
...
@@ -30,6 +33,9 @@ class @UserTabs
@
setTab
(
source
,
action
)
@
setCurrentAction
(
action
)
activateTab
:
(
action
)
->
$
(
".nav-links .
#{
action
}
-tab a"
).
tab
(
'show'
)
setTab
:
(
source
,
action
)
->
return
if
@
loaded
[
action
]
is
true
...
...
@@ -39,10 +45,10 @@ class @UserTabs
if
action
is
'groups'
@
loadTab
(
source
,
action
)
if
action
is
'contributed'
if
action
is
'contributed
_projects
'
@
loadTab
(
source
,
action
)
if
action
is
'p
ersonal
'
if
action
is
'p
rojects
'
@
loadTab
(
source
,
action
)
loadTab
:
(
source
,
action
)
->
...
...
app/views/users/show.html.haml
View file @
48ae8ef1
...
...
@@ -70,17 +70,17 @@
=
@user
.
location
%ul
.nav-links.center
%li
.activity-tab
.active
%li
.activity-tab
=
link_to
user_calendar_activities_path
,
data:
{
target:
'div#activity'
,
action:
'activity'
,
toggle:
'tab'
}
do
Activity
%li
.groups-tab
=
link_to
user_groups_path
,
data:
{
target:
'div#groups'
,
action:
'groups'
,
toggle:
'tab'
}
do
Groups
%li
.contributed-tab
=
link_to
user_contributed_projects_path
,
data:
{
target:
'div#contributed
'
,
action:
'contributed
'
,
toggle:
'tab'
}
do
%li
.contributed
_projects
-tab
=
link_to
user_contributed_projects_path
,
data:
{
target:
'div#contributed
_projects'
,
action:
'contributed_projects
'
,
toggle:
'tab'
}
do
Contributed projects
%li
.p
ersonal
-tab
=
link_to
user_projects_path
,
data:
{
target:
'div#p
ersonal'
,
action:
'personal
'
,
toggle:
'tab'
}
do
%li
.p
rojects
-tab
=
link_to
user_projects_path
,
data:
{
target:
'div#p
rojects'
,
action:
'projects
'
,
toggle:
'tab'
}
do
Personal projects
%div
{
class:
container_class
}
...
...
@@ -99,10 +99,10 @@
#groups
.tab-pane
-
# This tab is always loaded via AJAX
#contributed
.tab-pane
#contributed
_projects
.tab-pane
-
# This tab is always loaded via AJAX
#p
ersonal
.tab-pane
#p
rojects
.tab-pane
-
# This tab is always loaded via AJAX
.loading-status
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment