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
8812d9de
Commit
8812d9de
authored
Mar 10, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move groups and teams to tabs on dashboard. Remember tab with cookie
parent
96c627ed
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
10 deletions
+44
-10
app/assets/javascripts/dashboard.js.coffee
app/assets/javascripts/dashboard.js.coffee
+12
-0
app/assets/stylesheets/sections/projects.scss
app/assets/stylesheets/sections/projects.scss
+4
-0
app/views/dashboard/_groups.html.haml
app/views/dashboard/_groups.html.haml
+3
-0
app/views/dashboard/_sidebar.html.haml
app/views/dashboard/_sidebar.html.haml
+20
-8
app/views/dashboard/_teams.html.haml
app/views/dashboard/_teams.html.haml
+5
-2
No files found.
app/assets/javascripts/dashboard.js.coffee
View file @
8812d9de
window
.
dashboardPage
=
->
Pager
.
init
20
,
true
initSidebarTab
()
$
(
".event_filter_link"
).
bind
"click"
,
(
event
)
->
event
.
preventDefault
()
toggleFilter
$
(
this
)
...
...
@@ -25,3 +26,14 @@ toggleFilter = (sender) ->
event_filters
.
splice
index
,
1
$
.
cookie
"event_filter"
,
event_filters
.
join
(
","
)
initSidebarTab
=
->
key
=
"dashboard_sidebar_filter"
# store selection in cookie
$
(
'.dash-sidebar-tabs a'
).
on
'click'
,
(
e
)
->
$
.
cookie
(
key
,
$
(
e
.
target
).
attr
(
'id'
))
# show tab from cookie
sidebar_filter
=
$
.
cookie
(
key
)
$
(
"#"
+
sidebar_filter
).
tab
(
'show'
)
if
sidebar_filter
app/assets/stylesheets/sections/projects.scss
View file @
8812d9de
...
...
@@ -6,6 +6,10 @@
.side
{
@extend
.pull-right
;
.projects_box
,
.ui-box
{
margin
:
3px
;
}
.projects_box
{
>
.title
{
padding
:
2px
15px
;
...
...
app/views/dashboard/_groups.html.haml
View file @
8812d9de
...
...
@@ -16,3 +16,6 @@
%span
.pull-right.light
-
if
group
.
owner
==
current_user
%i
.icon-wrench
-
if
groups
.
blank?
%li
%h3
.nothing_here_message
You have no groups yet.
app/views/dashboard/_sidebar.html.haml
View file @
8812d9de
-
if
@teams
.
present?
=
render
"teams"
,
teams:
@teams
-
if
@groups
.
present?
=
render
"groups"
,
groups:
@groups
=
render
"projects"
,
projects:
@projects
%div
%ul
.nav.nav-tabs.dash-sidebar-tabs
%li
.active
=
link_to
'Projects'
,
'#projects'
,
'data-toggle'
=>
'tab'
,
id:
'sidebar-projects-tab'
%li
=
link_to
'Groups'
,
'#groups'
,
'data-toggle'
=>
'tab'
,
id:
'sidebar-groups-tab'
%li
=
link_to
'Teams'
,
'#teams'
,
'data-toggle'
=>
'tab'
,
id:
'sidebar-teams-tab'
.tab-content
.tab-pane.active
#projects
=
render
"projects"
,
projects:
@projects
.tab-pane
#groups
=
render
"groups"
,
groups:
@groups
.tab-pane
#teams
=
render
"teams"
,
teams:
@teams
.prepend-top-20
%span
.rss-icon
=
link_to
dashboard_path
(
:atom
,
{
private_token:
current_user
.
private_token
})
do
=
image_tag
"rss_ui.png"
,
title:
"feed"
%strong
News Feed
%strong
%i
.icon-rss
News Feed
%hr
.gitlab-promo
...
...
app/views/dashboard/_teams.html.haml
View file @
8812d9de
...
...
@@ -2,13 +2,13 @@
%h5
.title
Teams
%small
(
#{
@
teams
.
count
}
)
(
#{
teams
.
count
}
)
%span
.pull-right
=
link_to
new_team_path
,
class:
"btn btn-tiny info"
do
%i
.icon-plus
New Team
%ul
.well-list
-
@
teams
.
each
do
|
team
|
-
teams
.
each
do
|
team
|
%li
=
link_to
team_path
(
id:
team
.
path
),
class:
dom_class
(
team
)
do
%strong
.well-title
=
truncate
(
team
.
name
,
length:
35
)
...
...
@@ -18,3 +18,6 @@
-
tm
=
current_user
.
user_team_user_relationships
.
find_by_user_team_id
(
team
.
id
)
-
if
tm
=
tm
.
access_human
-
if
teams
.
blank?
%li
%h3
.nothing_here_message
You have no teams yet.
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