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
Kazuhiko Shiozaki
gitlab-ce
Commits
3c9e860f
Commit
3c9e860f
authored
Mar 02, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide defaults and make sure we everything is container into a parent element
parent
85e672b1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
118 additions
and
108 deletions
+118
-108
app/assets/javascripts/user.js.coffee
app/assets/javascripts/user.js.coffee
+4
-1
app/assets/javascripts/user_tabs.js.coffee
app/assets/javascripts/user_tabs.js.coffee
+17
-11
app/views/users/show.html.haml
app/views/users/show.html.haml
+97
-96
No files found.
app/assets/javascripts/user.js.coffee
View file @
3c9e860f
...
...
@@ -12,4 +12,7 @@ class @User
e
.
preventDefault
()
initTabs
:
->
new
UserTabs
(
@
opts
)
new
UserTabs
(
parentEl
:
'.user-profile'
action
:
@
opts
.
action
)
app/assets/javascripts/user_tabs.js.coffee
View file @
3c9e860f
...
...
@@ -52,8 +52,15 @@
class
@
UserTabs
actions
:
[
'activity'
,
'groups'
,
'contributed'
,
'projects'
],
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
@
_location
=
location
@
loaded
=
{}
...
...
@@ -61,19 +68,18 @@ class @UserTabs
@
bindEvents
()
@
tabStateInit
()
action
=
@
opts
.
action
action
=
@
defaultAction
if
action
==
'show'
currAction
=
@
defaultAction
if
@
action
is
'show'
# Set active tab
source
=
$
(
".
#{
a
ction
}
-tab a"
).
attr
(
'href'
)
@
activateTab
(
a
ction
)
source
=
$
(
".
#{
currA
ction
}
-tab a"
).
attr
(
'href'
)
@
activateTab
(
currA
ction
)
bindEvents
:
->
# 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
$
(
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
:
->
for
action
in
@
actions
...
...
@@ -88,7 +94,7 @@ class @UserTabs
@
setCurrentAction
(
action
)
activateTab
:
(
action
)
->
$
(
".nav-links .
#{
action
}
-tab a"
).
tab
(
'show'
)
@
parentEl
.
find
(
".nav-links .
#{
action
}
-tab a"
).
tab
(
'show'
)
setTab
:
(
source
,
action
)
->
return
if
@
loaded
[
action
]
is
true
...
...
@@ -108,20 +114,20 @@ class @UserTabs
url
:
"
#{
source
}
.json"
success
:
(
data
)
=>
tabSelector
=
'div#'
+
action
document
.
querySelector
(
tabSelector
).
innerHTML
=
data
.
html
@
parentEl
.
find
(
tabSelector
).
html
(
data
.
html
)
@
loaded
[
action
]
=
true
loadActivities
:
(
source
)
->
return
if
@
loaded
[
'activity'
]
is
true
$calendarWrap
=
$
(
'.user-calendar'
)
$calendarWrap
=
@
parentEl
.
find
(
'.user-calendar'
)
$calendarWrap
.
load
(
$calendarWrap
.
data
(
'href'
))
new
Activities
()
@
loaded
[
'activity'
]
=
true
toggleLoading
:
(
status
)
->
$
(
'.loading-status .loading'
).
toggle
(
status
)
@
parentEl
.
find
(
'.loading-status .loading'
).
toggle
(
status
)
setCurrentAction
:
(
action
)
->
# Remove possible actions from URL
...
...
app/views/users/show.html.haml
View file @
3c9e860f
...
...
@@ -8,105 +8,106 @@
=
render
'shared/show_aside'
.cover-block
.cover-controls
-
if
@user
==
current_user
=
link_to
profile_path
,
class:
'btn btn-gray'
do
=
icon
(
'pencil'
)
-
elsif
current_user
%span
.report-abuse
-
if
@user
.
abuse_report
%button
.btn.btn-danger
{
title:
'Already reported for abuse'
,
data:
{
toggle:
'tooltip'
,
placement:
'left'
,
container:
'body'
}}
=
icon
(
'exclamation-circle'
)
-
else
=
link_to
new_abuse_report_path
(
user_id:
@user
.
id
,
ref_url:
request
.
referrer
),
class:
'btn btn-gray'
,
title:
'Report abuse'
,
data:
{
toggle:
'tooltip'
,
placement:
'left'
,
container:
'body'
}
do
=
icon
(
'exclamation-circle'
)
-
if
current_user
=
link_to
user_path
(
@user
,
:atom
,
{
private_token:
current_user
.
private_token
}),
class:
'btn btn-gray'
do
=
icon
(
'rss'
)
.avatar-holder
=
link_to
avatar_icon
(
@user
,
400
),
target:
'_blank'
do
=
image_tag
avatar_icon
(
@user
,
90
),
class:
"avatar s90"
,
alt:
''
.cover-title
=
@user
.
name
.cover-desc
%span
.middle-dot-divider
@
#{
@user
.
username
}
%span
.middle-dot-divider
Member since
#{
@user
.
created_at
.
to_s
(
:medium
)
}
-
if
@user
.
bio
.
present?
.cover-desc
%p
.profile-user-bio
=
@user
.
bio
.cover-desc
-
unless
@user
.
public_email
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
@user
.
public_email
,
"mailto:
#{
@user
.
public_email
}
"
-
unless
@user
.
skype
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
"skype:
#{
@user
.
skype
}
"
,
title:
"Skype"
do
=
icon
(
'skype'
)
-
unless
@user
.
linkedin
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
"https://www.linkedin.com/in/
#{
@user
.
linkedin
}
"
,
title:
"LinkedIn"
do
=
icon
(
'linkedin-square'
)
-
unless
@user
.
twitter
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
"https://twitter.com/
#{
@user
.
twitter
}
"
,
title:
"Twitter"
do
=
icon
(
'twitter-square'
)
-
unless
@user
.
website_url
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
@user
.
short_website_url
,
@user
.
full_website_url
-
unless
@user
.
location
.
blank?
.profile-link-holder.middle-dot-divider
=
icon
(
'map-marker'
)
=
@user
.
location
%ul
.nav-links.center
%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
Contributed projects
%li
.projects-tab
=
link_to
user_projects_path
,
data:
{
target:
'div#projects'
,
action:
'projects'
,
toggle:
'tab'
}
do
Personal projects
%div
{
class:
container_class
}
.tab-content
#activity
.tab-pane
.gray-content-block.white.second-block
%div
{
class:
container_class
}
.user-calendar
{
data:
{
href:
user_calendar_path
}}
%h4
.center.light
%i
.fa.fa-spinner.fa-spin
.user-calendar-activities
.content_list
{
data:
{
href:
user_path
}
}
=
spinner
#groups
.tab-pane
-
# This tab is always loaded via AJAX
.user-profile
.cover-block
.cover-controls
-
if
@user
==
current_user
=
link_to
profile_path
,
class:
'btn btn-gray'
do
=
icon
(
'pencil'
)
-
elsif
current_user
%span
.report-abuse
-
if
@user
.
abuse_report
%button
.btn.btn-danger
{
title:
'Already reported for abuse'
,
data:
{
toggle:
'tooltip'
,
placement:
'left'
,
container:
'body'
}}
=
icon
(
'exclamation-circle'
)
-
else
=
link_to
new_abuse_report_path
(
user_id:
@user
.
id
,
ref_url:
request
.
referrer
),
class:
'btn btn-gray'
,
title:
'Report abuse'
,
data:
{
toggle:
'tooltip'
,
placement:
'left'
,
container:
'body'
}
do
=
icon
(
'exclamation-circle'
)
-
if
current_user
=
link_to
user_path
(
@user
,
:atom
,
{
private_token:
current_user
.
private_token
}),
class:
'btn btn-gray'
do
=
icon
(
'rss'
)
.avatar-holder
=
link_to
avatar_icon
(
@user
,
400
),
target:
'_blank'
do
=
image_tag
avatar_icon
(
@user
,
90
),
class:
"avatar s90"
,
alt:
''
.cover-title
=
@user
.
name
#contributed
.contributed-projects.tab-pane
-
# This tab is always loaded via AJAX
.cover-desc
%span
.middle-dot-divider
@
#{
@user
.
username
}
%span
.middle-dot-divider
Member since
#{
@user
.
created_at
.
to_s
(
:medium
)
}
#projects
.tab-pane
-
# This tab is always loaded via AJAX
-
if
@user
.
bio
.
present?
.cover-desc
%p
.profile-user-bio
=
@user
.
bio
.loading-status
=
spinner
.cover-desc
-
unless
@user
.
public_email
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
@user
.
public_email
,
"mailto:
#{
@user
.
public_email
}
"
-
unless
@user
.
skype
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
"skype:
#{
@user
.
skype
}
"
,
title:
"Skype"
do
=
icon
(
'skype'
)
-
unless
@user
.
linkedin
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
"https://www.linkedin.com/in/
#{
@user
.
linkedin
}
"
,
title:
"LinkedIn"
do
=
icon
(
'linkedin-square'
)
-
unless
@user
.
twitter
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
"https://twitter.com/
#{
@user
.
twitter
}
"
,
title:
"Twitter"
do
=
icon
(
'twitter-square'
)
-
unless
@user
.
website_url
.
blank?
.profile-link-holder.middle-dot-divider
=
link_to
@user
.
short_website_url
,
@user
.
full_website_url
-
unless
@user
.
location
.
blank?
.profile-link-holder.middle-dot-divider
=
icon
(
'map-marker'
)
=
@user
.
location
%ul
.nav-links.center.user-profile-nav
%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
Contributed projects
%li
.projects-tab
=
link_to
user_projects_path
,
data:
{
target:
'div#projects'
,
action:
'projects'
,
toggle:
'tab'
}
do
Personal projects
%div
{
class:
container_class
}
.tab-content
#activity
.tab-pane
.gray-content-block.white.second-block
%div
{
class:
container_class
}
.user-calendar
{
data:
{
href:
user_calendar_path
}}
%h4
.center.light
%i
.fa.fa-spinner.fa-spin
.user-calendar-activities
.content_list
{
data:
{
href:
user_path
}
}
=
spinner
#groups
.tab-pane
-
# This tab is always loaded via AJAX
#contributed
.contributed-projects.tab-pane
-
# This tab is always loaded via AJAX
#projects
.tab-pane
-
# This tab is always loaded via AJAX
.loading-status
=
spinner
:javascript
var
userProfile
;
...
...
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