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
e45e540d
Commit
e45e540d
authored
May 20, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Consistently display last push event widget
parent
e20eb712
Changes
20
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
46 additions
and
57 deletions
+46
-57
app/assets/stylesheets/pages/projects.scss
app/assets/stylesheets/pages/projects.scss
+0
-4
app/controllers/dashboard/projects_controller.rb
app/controllers/dashboard/projects_controller.rb
+1
-2
app/controllers/dashboard_controller.rb
app/controllers/dashboard_controller.rb
+0
-2
app/controllers/groups_controller.rb
app/controllers/groups_controller.rb
+0
-1
app/helpers/projects_helper.rb
app/helpers/projects_helper.rb
+1
-0
app/views/dashboard/_activities.html.haml
app/views/dashboard/_activities.html.haml
+0
-3
app/views/dashboard/activity.html.haml
app/views/dashboard/activity.html.haml
+3
-0
app/views/dashboard/projects/index.html.haml
app/views/dashboard/projects/index.html.haml
+2
-2
app/views/dashboard/projects/starred.html.haml
app/views/dashboard/projects/starred.html.haml
+2
-3
app/views/events/_event_last_push.html.haml
app/views/events/_event_last_push.html.haml
+0
-14
app/views/events/event/_push.html.haml
app/views/events/event/_push.html.haml
+1
-1
app/views/groups/_activities.html.haml
app/views/groups/_activities.html.haml
+0
-3
app/views/groups/_head.html.haml
app/views/groups/_head.html.haml
+3
-0
app/views/groups/show.html.haml
app/views/groups/show.html.haml
+1
-1
app/views/projects/_last_push.html.haml
app/views/projects/_last_push.html.haml
+19
-17
app/views/projects/activity.html.haml
app/views/projects/activity.html.haml
+2
-1
app/views/projects/merge_requests/index.html.haml
app/views/projects/merge_requests/index.html.haml
+4
-1
app/views/projects/tree/show.html.haml
app/views/projects/tree/show.html.haml
+2
-1
changelogs/unreleased/dm-consistent-last-push-event.yml
changelogs/unreleased/dm-consistent-last-push-event.yml
+4
-0
features/steps/dashboard/dashboard.rb
features/steps/dashboard/dashboard.rb
+1
-1
No files found.
app/assets/stylesheets/pages/projects.scss
View file @
e45e540d
...
@@ -384,10 +384,6 @@ a.deploy-project-label {
...
@@ -384,10 +384,6 @@ a.deploy-project-label {
}
}
}
}
.last-push-widget
{
margin-top
:
-1px
;
}
.fork-namespaces
{
.fork-namespaces
{
.row
{
.row
{
-webkit-flex-wrap
:
wrap
;
-webkit-flex-wrap
:
wrap
;
...
...
app/controllers/dashboard/projects_controller.rb
View file @
e45e540d
...
@@ -8,7 +8,7 @@ class Dashboard::ProjectsController < Dashboard::ApplicationController
...
@@ -8,7 +8,7 @@ class Dashboard::ProjectsController < Dashboard::ApplicationController
@projects
=
load_projects
(
params
.
merge
(
non_public:
true
)).
page
(
params
[
:page
])
@projects
=
load_projects
(
params
.
merge
(
non_public:
true
)).
page
(
params
[
:page
])
respond_to
do
|
format
|
respond_to
do
|
format
|
format
.
html
{
@last_push
=
current_user
.
recent_push
}
format
.
html
format
.
atom
do
format
.
atom
do
load_events
load_events
render
layout:
false
render
layout:
false
...
@@ -25,7 +25,6 @@ class Dashboard::ProjectsController < Dashboard::ApplicationController
...
@@ -25,7 +25,6 @@ class Dashboard::ProjectsController < Dashboard::ApplicationController
@projects
=
load_projects
(
params
.
merge
(
starred:
true
)).
@projects
=
load_projects
(
params
.
merge
(
starred:
true
)).
includes
(
:forked_from_project
,
:tags
).
page
(
params
[
:page
])
includes
(
:forked_from_project
,
:tags
).
page
(
params
[
:page
])
@last_push
=
current_user
.
recent_push
@groups
=
[]
@groups
=
[]
respond_to
do
|
format
|
respond_to
do
|
format
|
...
...
app/controllers/dashboard_controller.rb
View file @
e45e540d
...
@@ -9,8 +9,6 @@ class DashboardController < Dashboard::ApplicationController
...
@@ -9,8 +9,6 @@ class DashboardController < Dashboard::ApplicationController
respond_to
:html
respond_to
:html
def
activity
def
activity
@last_push
=
current_user
.
recent_push
respond_to
do
|
format
|
respond_to
do
|
format
|
format
.
html
format
.
html
...
...
app/controllers/groups_controller.rb
View file @
e45e540d
...
@@ -165,7 +165,6 @@ class GroupsController < Groups::ApplicationController
...
@@ -165,7 +165,6 @@ class GroupsController < Groups::ApplicationController
def
user_actions
def
user_actions
if
current_user
if
current_user
@last_push
=
current_user
.
recent_push
@notification_setting
=
current_user
.
notification_settings_for
(
group
)
@notification_setting
=
current_user
.
notification_settings_for
(
group
)
end
end
end
end
...
...
app/helpers/projects_helper.rb
View file @
e45e540d
...
@@ -116,6 +116,7 @@ module ProjectsHelper
...
@@ -116,6 +116,7 @@ module ProjectsHelper
def
last_push_event
def
last_push_event
return
unless
current_user
return
unless
current_user
return
current_user
.
recent_push
unless
@project
project_ids
=
[
@project
.
id
]
project_ids
=
[
@project
.
id
]
if
fork
=
current_user
.
fork_of
(
@project
)
if
fork
=
current_user
.
fork_of
(
@project
)
...
...
app/views/dashboard/_activities.html.haml
View file @
e45e540d
.hidden-xs
=
render
"events/event_last_push"
,
event:
@last_push
.nav-block.activities
.nav-block.activities
.controls
.controls
=
link_to
dashboard_projects_path
(
rss_url_options
),
class:
'btn rss-btn has-tooltip'
,
title:
'Subscribe'
do
=
link_to
dashboard_projects_path
(
rss_url_options
),
class:
'btn rss-btn has-tooltip'
,
title:
'Subscribe'
do
...
...
app/views/dashboard/activity.html.haml
View file @
e45e540d
...
@@ -4,6 +4,9 @@
...
@@ -4,6 +4,9 @@
-
page_title
"Activity"
-
page_title
"Activity"
-
header_title
"Activity"
,
activity_dashboard_path
-
header_title
"Activity"
,
activity_dashboard_path
.hidden-xs
=
render
"projects/last_push"
=
render
'dashboard/activity_head'
=
render
'dashboard/activity_head'
%section
.activities
%section
.activities
...
...
app/views/dashboard/projects/index.html.haml
View file @
e45e540d
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
-
unless
show_user_callout?
-
unless
show_user_callout?
=
render
'shared/user_callout'
=
render
'shared/user_callout'
=
render
"projects/last_push"
-
if
@projects
.
any?
||
params
[
:name
]
-
if
@projects
.
any?
||
params
[
:name
]
=
render
'dashboard/projects_head'
=
render
'dashboard/projects_head'
-
if
@last_push
=
render
"events/event_last_push"
,
event:
@last_push
-
if
@projects
.
any?
||
params
[
:name
]
-
if
@projects
.
any?
||
params
[
:name
]
=
render
'projects'
=
render
'projects'
...
...
app/views/dashboard/projects/starred.html.haml
View file @
e45e540d
-
page_title
"Starred Projects"
-
page_title
"Starred Projects"
-
header_title
"Projects"
,
dashboard_projects_path
-
header_title
"Projects"
,
dashboard_projects_path
=
render
'dashboard/projects_head'
=
render
"projects/last_push"
-
if
@last_push
=
render
'dashboard/projects_head'
=
render
"events/event_last_push"
,
event:
@last_push
-
if
@projects
.
any?
||
params
[
:filter_projects
]
-
if
@projects
.
any?
||
params
[
:filter_projects
]
=
render
'projects'
=
render
'projects'
...
...
app/views/events/_event_last_push.html.haml
deleted
100644 → 0
View file @
e20eb712
-
if
show_last_push_widget?
(
event
)
.row-content-block.clear-block.last-push-widget
.event-last-push
.event-last-push-text
%span
You pushed to
=
link_to
namespace_project_commits_path
(
event
.
project
.
namespace
,
event
.
project
,
event
.
ref_name
),
title:
h
(
event
.
project
.
name
)
do
%strong
=
event
.
ref_name
%span
at
%strong
=
link_to_project
event
.
project
#{
time_ago_with_tooltip
(
event
.
created_at
)
}
.pull-right
=
link_to
new_mr_path_from_push_event
(
event
),
title:
"New merge request"
,
class:
"btn btn-info btn-sm"
do
Create merge request
app/views/events/event/_push.html.haml
View file @
e45e540d
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
%span
.pushed
#{
event
.
action_name
}
#{
event
.
ref_type
}
%span
.pushed
#{
event
.
action_name
}
#{
event
.
ref_type
}
%strong
%strong
-
commits_link
=
namespace_project_commits_path
(
project
.
namespace
,
project
,
event
.
ref_name
)
-
commits_link
=
namespace_project_commits_path
(
project
.
namespace
,
project
,
event
.
ref_name
)
=
link_to_if
project
.
repository
.
branch_exists?
(
event
.
ref_name
),
event
.
ref_name
,
commits_link
=
link_to_if
project
.
repository
.
branch_exists?
(
event
.
ref_name
),
event
.
ref_name
,
commits_link
,
class:
'ref-name'
=
render
"events/event_scope"
,
event:
event
=
render
"events/event_scope"
,
event:
event
...
...
app/views/groups/_activities.html.haml
View file @
e45e540d
.hidden-xs
=
render
"events/event_last_push"
,
event:
@last_push
.nav-block
.nav-block
.controls
.controls
=
link_to
group_path
(
@group
,
rss_url_options
),
class:
'btn rss-btn has-tooltip'
,
title:
'Subscribe'
do
=
link_to
group_path
(
@group
,
rss_url_options
),
class:
'btn rss-btn has-tooltip'
,
title:
'Subscribe'
do
...
...
app/views/groups/_head.html.haml
View file @
e45e540d
...
@@ -12,3 +12,6 @@
...
@@ -12,3 +12,6 @@
=
link_to
activity_group_path
(
@group
),
title:
'Activity'
do
=
link_to
activity_group_path
(
@group
),
title:
'Activity'
do
%span
%span
Activity
Activity
.hidden-xs
=
render
"projects/last_push"
app/views/groups/show.html.haml
View file @
e45e540d
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
=
auto_discovery_link_tag
(
:atom
,
group_url
(
@group
,
rss_url_options
),
title:
"
#{
@group
.
name
}
activity"
)
=
auto_discovery_link_tag
(
:atom
,
group_url
(
@group
,
rss_url_options
),
title:
"
#{
@group
.
name
}
activity"
)
=
render
'groups/head'
=
render
'groups/head'
=
render
'groups/home_panel'
=
render
'groups/home_panel'
.groups-header
{
class:
container_class
}
.groups-header
{
class:
container_class
}
.top-area
.top-area
...
...
app/views/projects/_last_push.html.haml
View file @
e45e540d
-
if
event
=
last_push_event
-
event
=
last_push_event
-
if
show_last_push_widget?
(
event
)
-
if
event
&&
show_last_push_widget?
(
event
)
.row-content-block.top-block.hidden-xs.white
.row-content-block.top-block.hidden-xs.white
%div
{
class:
container_class
}
.event-last-push
.event-last-push
.event-last-push-text
.event-last-push-text
%span
You pushed to
%span
You pushed to
=
link_to
namespace_project_commits_path
(
event
.
project
.
namespace
,
event
.
project
,
event
.
ref_name
,
class:
'commit-sha'
)
do
=
link_to
namespace_project_commits_path
(
event
.
project
.
namespace
,
event
.
project
,
event
.
ref_name
),
class:
'ref-name'
do
%strong
=
event
.
ref_name
%strong
=
event
.
ref_name
-
if
@project
&&
event
.
project
!=
@project
=
clipboard_button
(
text:
event
.
ref_name
,
gfm:
"`
#{
event
.
ref_name
}
`"
,
class:
'btn-clipboard btn-transparent'
,
title:
'Copy branch name to clipboard'
)
-
if
event
.
project
!=
@project
%span
at
%span
at
%strong
=
link_to_project
event
.
project
%strong
=
link_to_project
event
.
project
=
clipboard_button
(
text:
event
.
ref_name
,
class:
'btn-clipboard btn-transparent'
,
title:
'Copy branch to clipboard'
)
#{
time_ago_with_tooltip
(
event
.
created_at
)
}
#{
time_ago_with_tooltip
(
event
.
created_at
)
}
.pull-right
.pull-right
...
...
app/views/projects/activity.html.haml
View file @
e45e540d
-
page_title
"Activity"
-
page_title
"Activity"
=
render
"projects/head"
=
render
"projects/head"
=
render
'projects/last_push'
%div
{
class:
container_class
}
=
render
'projects/last_push'
=
render
'projects/activity'
=
render
'projects/activity'
app/views/projects/merge_requests/index.html.haml
View file @
e45e540d
...
@@ -5,12 +5,15 @@
...
@@ -5,12 +5,15 @@
-
unless
@project
.
default_issues_tracker?
-
unless
@project
.
default_issues_tracker?
=
content_for
:sub_nav
do
=
content_for
:sub_nav
do
=
render
"projects/merge_requests/head"
=
render
"projects/merge_requests/head"
=
render
'projects/last_push'
-
content_for
:page_specific_javascripts
do
-
content_for
:page_specific_javascripts
do
=
webpack_bundle_tag
'common_vue'
=
webpack_bundle_tag
'common_vue'
=
webpack_bundle_tag
'filtered_search'
=
webpack_bundle_tag
'filtered_search'
%div
{
class:
container_class
}
=
render
'projects/last_push'
-
if
@project
.
merge_requests
.
exists?
-
if
@project
.
merge_requests
.
exists?
%div
{
class:
container_class
}
%div
{
class:
container_class
}
.top-area
.top-area
...
...
app/views/projects/tree/show.html.haml
View file @
e45e540d
...
@@ -4,7 +4,8 @@
...
@@ -4,7 +4,8 @@
=
content_for
:meta_tags
do
=
content_for
:meta_tags
do
=
auto_discovery_link_tag
(
:atom
,
namespace_project_commits_url
(
@project
.
namespace
,
@project
,
@ref
,
rss_url_options
),
title:
"
#{
@project
.
name
}
:
#{
@ref
}
commits"
)
=
auto_discovery_link_tag
(
:atom
,
namespace_project_commits_url
(
@project
.
namespace
,
@project
,
@ref
,
rss_url_options
),
title:
"
#{
@project
.
name
}
:
#{
@ref
}
commits"
)
=
render
"projects/commits/head"
=
render
"projects/commits/head"
=
render
'projects/last_push'
%div
{
class:
container_class
}
%div
{
class:
container_class
}
=
render
'projects/last_push'
=
render
'projects/files'
,
commit:
@last_commit
,
project:
@project
,
ref:
@ref
=
render
'projects/files'
,
commit:
@last_commit
,
project:
@project
,
ref:
@ref
changelogs/unreleased/dm-consistent-last-push-event.yml
0 → 100644
View file @
e45e540d
---
title
:
Consistently display last push event widget
merge_request
:
author
:
features/steps/dashboard/dashboard.rb
View file @
e45e540d
...
@@ -22,7 +22,7 @@ class Spinach::Features::Dashboard < Spinach::FeatureSteps
...
@@ -22,7 +22,7 @@ class Spinach::Features::Dashboard < Spinach::FeatureSteps
end
end
step
'I click "Create merge request" link'
do
step
'I click "Create merge request" link'
do
click_link
"Create merge request"
find_link
(
"Create merge request"
,
visible:
false
).
click
end
end
step
'I see prefilled new Merge Request page'
do
step
'I see prefilled new Merge Request page'
do
...
...
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