Added keyboard shortcuts to signed out menu
This commit is contained in:
parent
ce6a48cbd0
commit
195c058c11
2 changed files with 51 additions and 16 deletions
|
@ -1,16 +1,29 @@
|
|||
%ul
|
||||
= nav_link(path: ['dashboard#show', 'root#show', 'projects#trending', 'projects#starred', 'projects#index'], html_options: {class: 'home'}) do
|
||||
= link_to explore_root_path, title: 'Projects' do
|
||||
= link_to explore_root_path, title: 'Projects', class: 'dashboard-shortcuts-projects' do
|
||||
.shortcut-mappings
|
||||
.key
|
||||
= icon('arrow-up', 'aria-label' => 'hidden')
|
||||
P
|
||||
%span
|
||||
Projects
|
||||
= nav_link(controller: [:groups, 'groups/milestones', 'groups/group_members']) do
|
||||
= link_to explore_groups_path, title: 'Groups' do
|
||||
= link_to explore_groups_path, title: 'Groups', class: 'dashboard-shortcuts-groups' do
|
||||
.shortcut-mappings
|
||||
.key
|
||||
= icon('arrow-up', 'aria-label' => 'hidden')
|
||||
G
|
||||
%span
|
||||
Groups
|
||||
= nav_link(controller: :snippets) do
|
||||
= link_to explore_snippets_path, title: 'Snippets' do
|
||||
= link_to explore_snippets_path, title: 'Snippets', class: 'dashboard-shortcuts-snippets' do
|
||||
.shortcut-mappings
|
||||
.key
|
||||
= icon('arrow-up', 'aria-label' => 'hidden')
|
||||
S
|
||||
%span
|
||||
Snippets
|
||||
%li.divider
|
||||
= nav_link(controller: :help) do
|
||||
= link_to help_path, title: 'Help' do
|
||||
%span
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
require 'spec_helper'
|
||||
|
||||
feature 'Dashboard shortcuts', feature: true, js: true do
|
||||
context 'logged in' do
|
||||
before do
|
||||
login_as :user
|
||||
visit root_dashboard_path
|
||||
|
@ -23,6 +24,27 @@ feature 'Dashboard shortcuts', feature: true, js: true do
|
|||
|
||||
check_page_title('Todos')
|
||||
end
|
||||
end
|
||||
|
||||
context 'logged out' do
|
||||
before do
|
||||
visit explore_root_path
|
||||
end
|
||||
|
||||
scenario 'Navigate to tabs' do
|
||||
find('body').native.send_keys([:shift, 'P'])
|
||||
|
||||
expect(page).to have_content('No projects found')
|
||||
|
||||
find('body').native.send_keys([:shift, 'G'])
|
||||
|
||||
expect(page).to have_content('No public groups')
|
||||
|
||||
find('body').native.send_keys([:shift, 'S'])
|
||||
|
||||
expect(page).to have_selector('.snippets-list-holder')
|
||||
end
|
||||
end
|
||||
|
||||
def check_page_title(title)
|
||||
expect(find('.header-content .title')).to have_content(title)
|
||||
|
|
Loading…
Reference in a new issue