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
Léo-Paul Géneau
gitlab-ce
Commits
6a2516f9
Commit
6a2516f9
authored
Mar 06, 2017
by
Kushal Pandya
Committed by
Alfredo Sumaran
Mar 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore keyboard shortcuts for "Activity" and "Charts"
parent
6902f950
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
108 additions
and
9 deletions
+108
-9
app/assets/javascripts/shortcuts_navigation.js
app/assets/javascripts/shortcuts_navigation.js
+6
-0
app/views/help/_shortcuts.html.haml
app/views/help/_shortcuts.html.haml
+12
-0
app/views/layouts/nav/_project.html.haml
app/views/layouts/nav/_project.html.haml
+16
-4
changelogs/unreleased/28538-restore-nav-shortcuts.yml
changelogs/unreleased/28538-restore-nav-shortcuts.yml
+4
-0
doc/workflow/shortcuts.md
doc/workflow/shortcuts.md
+2
-0
features/project/active_tab.feature
features/project/active_tab.feature
+20
-3
features/project/shortcuts.feature
features/project/shortcuts.feature
+14
-1
features/steps/project/active_tab.rb
features/steps/project/active_tab.rb
+16
-0
features/steps/project/project_shortcuts.rb
features/steps/project/project_shortcuts.rb
+5
-0
features/steps/shared/project_tab.rb
features/steps/shared/project_tab.rb
+13
-1
No files found.
app/assets/javascripts/shortcuts_navigation.js
View file @
6a2516f9
...
...
@@ -16,6 +16,9 @@ require('./shortcuts');
Mousetrap
.
bind
(
'
g p
'
,
function
()
{
return
ShortcutsNavigation
.
findAndFollowLink
(
'
.shortcuts-project
'
);
});
Mousetrap
.
bind
(
'
g e
'
,
function
()
{
return
ShortcutsNavigation
.
findAndFollowLink
(
'
.shortcuts-project-activity
'
);
});
Mousetrap
.
bind
(
'
g f
'
,
function
()
{
return
ShortcutsNavigation
.
findAndFollowLink
(
'
.shortcuts-tree
'
);
});
...
...
@@ -28,6 +31,9 @@ require('./shortcuts');
Mousetrap
.
bind
(
'
g n
'
,
function
()
{
return
ShortcutsNavigation
.
findAndFollowLink
(
'
.shortcuts-network
'
);
});
Mousetrap
.
bind
(
'
g g
'
,
function
()
{
return
ShortcutsNavigation
.
findAndFollowLink
(
'
.shortcuts-repository-charts
'
);
});
Mousetrap
.
bind
(
'
g i
'
,
function
()
{
return
ShortcutsNavigation
.
findAndFollowLink
(
'
.shortcuts-issues
'
);
});
...
...
app/views/help/_shortcuts.html.haml
View file @
6a2516f9
...
...
@@ -128,6 +128,12 @@
.key
p
%td
Go to the project's home page
%tr
%td
.shortcut
.key
g
.key
e
%td
Go to the project's activity feed
%tr
%td
.shortcut
.key
g
...
...
@@ -152,6 +158,12 @@
.key
n
%td
Go to network graph
%tr
%td
.shortcut
.key
g
.key
g
%td
Go to repository charts
%tr
%td
.shortcut
.key
g
...
...
app/views/layouts/nav/_project.html.haml
View file @
6a2516f9
...
...
@@ -71,18 +71,30 @@
%span
Snippets
-# Global shortcut to network page for compatibility
-# Shortcut to Project > Activity
%li
.hidden
=
link_to
activity_project_path
(
@project
),
title:
'Activity'
,
class:
'shortcuts-project-activity'
do
%span
Activity
-# Shortcut to Repository > Graph (formerly, Network)
-
if
project_nav_tab?
:network
%li
.hidden
=
link_to
namespace_project_network_path
(
@project
.
namespace
,
@project
,
current_ref
),
title:
'Network'
,
class:
'shortcuts-network'
do
Network
Graph
-# Shortcut to Repository > Charts (formerly, top-nav item "Graphs")
-
unless
@project
.
empty_repo?
%li
.hidden
=
link_to
charts_namespace_project_graph_path
(
@project
.
namespace
,
@project
,
current_ref
),
title:
'Charts'
,
class:
'shortcuts-repository-charts'
do
Charts
-# Shortcut to
create a new i
ssue
-# Shortcut to
Issues > New I
ssue
%li
.hidden
=
link_to
new_namespace_project_issue_path
(
@project
.
namespace
,
@project
),
class:
'shortcuts-new-issue'
do
Create a new issue
-# Shortcut to
builds page
-# Shortcut to
Pipelines > Jobs
-
if
project_nav_tab?
:builds
%li
.hidden
=
link_to
project_builds_path
(
@project
),
title:
'Jobs'
,
class:
'shortcuts-builds'
do
...
...
changelogs/unreleased/28538-restore-nav-shortcuts.yml
0 → 100644
View file @
6a2516f9
---
title
:
Restore keyboard shortcuts for "Activity" and "Charts"
merge_request
:
9680
author
:
doc/workflow/shortcuts.md
View file @
6a2516f9
...
...
@@ -42,10 +42,12 @@ You can see GitLab's keyboard shortcuts by using 'shift + ?'
| Keyboard Shortcut | Description |
| ----------------- | ----------- |
|
<kbd>
g
</kbd>
+
<kbd>
p
</kbd>
| Go to the project's home page |
|
<kbd>
g
</kbd>
+
<kbd>
e
</kbd>
| Go to the project's activity feed |
|
<kbd>
g
</kbd>
+
<kbd>
f
</kbd>
| Go to files |
|
<kbd>
g
</kbd>
+
<kbd>
c
</kbd>
| Go to commits |
|
<kbd>
g
</kbd>
+
<kbd>
b
</kbd>
| Go to jobs |
|
<kbd>
g
</kbd>
+
<kbd>
n
</kbd>
| Go to network graph |
|
<kbd>
g
</kbd>
+
<kbd>
g
</kbd>
| Go to repository charts |
|
<kbd>
g
</kbd>
+
<kbd>
i
</kbd>
| Go to issues |
|
<kbd>
g
</kbd>
+
<kbd>
m
</kbd>
| Go to merge requests |
|
<kbd>
g
</kbd>
+
<kbd>
s
</kbd>
| Go to snippets |
...
...
features/project/active_tab.feature
View file @
6a2516f9
...
...
@@ -7,8 +7,9 @@ Feature: Project Active Tab
Scenario
:
On Project Home
Given
I visit my project's home page
Then
the active main tab should be Home
And
no other main tabs should be active
Then
the active sub tab should be Home
And
no other sub tabs should be active
And
the active main tab should be Project
Scenario
:
On Project Repository
Given
I visit my project's files page
...
...
@@ -34,9 +35,18 @@ Feature: Project Active Tab
Scenario
:
On Project Home/Show
Given
I visit my project's home page
Then
the active main tab should be Home
Then
the active sub tab should be Home
And
no other sub tabs should be active
And
the active main tab should be Project
And
no other main tabs should be active
Scenario
:
On Project Home/Activity
Given
I visit my project's home page
And
I click the
"Activity"
tab
Then
the active sub tab should be Activity
And
no other sub tabs should be active
And
the active main tab should be Project
# Sub Tabs: Settings
Scenario
:
On Project Settings/Integrations
...
...
@@ -93,6 +103,13 @@ Feature: Project Active Tab
And
no other sub tabs should be active
And
the active main tab should be Repository
Scenario
:
On Project Repository/Charts
Given
I visit my project's commits page
And
I click the
"Charts"
tab
Then
the active sub tab should be Charts
And
no other sub tabs should be active
And
the active main tab should be Repository
Scenario
:
On Project Repository/Branches
Given
I visit my project's commits page
And
I click the
"Branches"
tab
...
...
features/project/shortcuts.feature
View file @
6a2516f9
...
...
@@ -24,6 +24,12 @@ Feature: Project Shortcuts
Then
the active sub tab should be Graph
And
the active main tab should be Repository
@javascript
Scenario
:
Navigate to repository charts tab
Given
I press
"g"
and
"g"
Then
the active sub tab should be Charts
And
the active main tab should be Repository
@javascript
Scenario
:
Navigate to issues tab
Given
I press
"g"
and
"i"
...
...
@@ -47,4 +53,11 @@ Feature: Project Shortcuts
@javascript
Scenario
:
Navigate to project home
Given
I press
"g"
and
"p"
Then
the active main tab should be Home
Then
the active sub tab should be Home
And
the active main tab should be Project
@javascript
Scenario
:
Navigate to project feed
Given
I press
"g"
and
"e"
Then
the active sub tab should be Activity
And
the active main tab should be Project
features/steps/project/active_tab.rb
View file @
6a2516f9
...
...
@@ -39,6 +39,12 @@ class Spinach::Features::ProjectActiveTab < Spinach::FeatureSteps
click_link
(
'Pages'
)
end
step
'I click the "Activity" tab'
do
page
.
within
'.sub-nav'
do
click_link
(
'Activity'
)
end
end
step
'the active sub nav should be Members'
do
ensure_active_sub_nav
(
'Members'
)
end
...
...
@@ -55,6 +61,10 @@ class Spinach::Features::ProjectActiveTab < Spinach::FeatureSteps
ensure_active_sub_nav
(
'Pages'
)
end
step
'the active sub tab should be Activity'
do
ensure_active_sub_tab
(
'Activity'
)
end
# Sub Tabs: Commits
step
'I click the "Compare" tab'
do
...
...
@@ -71,6 +81,12 @@ class Spinach::Features::ProjectActiveTab < Spinach::FeatureSteps
click_link
(
'Tags'
)
end
step
'I click the "Charts" tab'
do
page
.
within
'.sub-nav'
do
click_link
(
'Charts'
)
end
end
step
'the active sub tab should be Compare'
do
ensure_active_sub_tab
(
'Compare'
)
end
...
...
features/steps/project/project_shortcuts.rb
View file @
6a2516f9
...
...
@@ -34,4 +34,9 @@ class Spinach::Features::ProjectShortcuts < Spinach::FeatureSteps
find
(
'body'
).
native
.
send_key
(
'g'
)
find
(
'body'
).
native
.
send_key
(
'w'
)
end
step
'I press "g" and "e"'
do
find
(
'body'
).
native
.
send_key
(
'g'
)
find
(
'body'
).
native
.
send_key
(
'e'
)
end
end
features/steps/shared/project_tab.rb
View file @
6a2516f9
...
...
@@ -4,7 +4,7 @@ module SharedProjectTab
include
Spinach
::
DSL
include
SharedActiveTab
step
'the active main tab should be
Home
'
do
step
'the active main tab should be
Project
'
do
ensure_active_main_tab
(
'Project'
)
end
...
...
@@ -47,4 +47,16 @@ module SharedProjectTab
step
'the active sub tab should be Commits'
do
ensure_active_sub_tab
(
'Commits'
)
end
step
'the active sub tab should be Home'
do
ensure_active_sub_tab
(
'Home'
)
end
step
'the active sub tab should be Activity'
do
ensure_active_sub_tab
(
'Activity'
)
end
step
'the active sub tab should be Charts'
do
ensure_active_sub_tab
(
'Charts'
)
end
end
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