kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
5.7 KiB
188 lines
5.7 KiB
//-- copyright
|
|
// OpenProject is a project management system.
|
|
// Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License version 3.
|
|
//
|
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
//
|
|
// See doc/COPYRIGHT.rdoc for more details.
|
|
//++
|
|
|
|
//= require mousetrap
|
|
|
|
(function($){
|
|
var menu_sidebar = function() {
|
|
return $('div#menu-sidebar');
|
|
};
|
|
|
|
var we_are_in_project = function() {
|
|
return menu_sidebar().size() === 1;
|
|
};
|
|
|
|
var show_help_modal = function(){
|
|
modalHelperInstance.createModal('/help/keyboard_shortcuts');
|
|
};
|
|
|
|
var go_overview = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.overview')[0].click();
|
|
}
|
|
};
|
|
|
|
var go_my_page = function(){
|
|
var my_page = $('.account-nav .my-page');
|
|
if (my_page.size() === 1) {
|
|
my_page[0].click();
|
|
}
|
|
};
|
|
|
|
var go_work_packages = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.work-packages')[0].click();
|
|
}
|
|
};
|
|
|
|
var go_timelines = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.timelines')[0].click();
|
|
}
|
|
};
|
|
|
|
var go_wiki = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.Wiki')[0].click();
|
|
}
|
|
};
|
|
|
|
var go_activity = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.activity')[0].click();
|
|
}
|
|
};
|
|
|
|
var go_calendar = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.calendar')[0].click();
|
|
}
|
|
};
|
|
|
|
var go_news = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.news')[0].click();
|
|
}
|
|
};
|
|
|
|
var go_edit = function(){
|
|
edit_link = $('[accesskey=3]')[0];
|
|
if (edit_link !== undefined) {
|
|
edit_link.click();
|
|
}
|
|
};
|
|
|
|
var open_more_menu = function(){
|
|
more_menu = $('[accesskey=7]')[0];
|
|
if (more_menu !== undefined) {
|
|
more_menu.click();
|
|
}
|
|
};
|
|
|
|
var go_preview = function(){
|
|
preview_link = $('[accesskey=1]')[0];
|
|
if (preview_link !== undefined) {
|
|
preview_link.click();
|
|
}
|
|
};
|
|
|
|
var new_work_package = function(){
|
|
if (we_are_in_project()) {
|
|
menu_sidebar().find('.new-work-package')[0].click();
|
|
}
|
|
};
|
|
|
|
var search_project = function(){
|
|
$('#project-search-container').parents('li.drop-down').click();
|
|
};
|
|
|
|
var search_global = function(){
|
|
$('#search_wrap .search_field').focus();
|
|
};
|
|
|
|
var find_list_in_page = function(){
|
|
var dom_lists, focus_elements;
|
|
focus_elements = [];
|
|
dom_lists = $('table.list');
|
|
dom_lists.find('tbody tr').each(function(index, tr){
|
|
var first_link = $(tr).find('a:visible')[0];
|
|
if ( first_link !== undefined ) { focus_elements.push(first_link); };
|
|
});
|
|
return focus_elements;
|
|
};
|
|
|
|
var focus_item_offset = function(offset){
|
|
var list, index;
|
|
list = find_list_in_page();
|
|
if (list === null) { return; }
|
|
index = list.indexOf($(document.activeElement).parents('table.list tr').find('a:visible')[0]);
|
|
$(list[(index+offset+list.length) % list.length]).focus();
|
|
};
|
|
|
|
var focus_next_item = function(){
|
|
focus_item_offset(1);
|
|
};
|
|
|
|
var focus_previous_item = function(){
|
|
focus_item_offset(-1);
|
|
};
|
|
|
|
|
|
Mousetrap.bind('?', function(){ show_help_modal(); return false; });
|
|
|
|
Mousetrap.bind('g o', function(){ go_overview(); return false; });
|
|
Mousetrap.bind('g m', function(){ go_my_page(); return false; });
|
|
Mousetrap.bind('g w p', function(){ go_work_packages(); return false; });
|
|
Mousetrap.bind('g w i', function(){ go_wiki(); return false; });
|
|
Mousetrap.bind('g a', function(){ go_activity(); return false; });
|
|
Mousetrap.bind('g c', function(){ go_calendar(); return false; });
|
|
Mousetrap.bind('g n', function(){ go_news(); return false; });
|
|
Mousetrap.bind('g t', function(){ go_timelines(); return false; });
|
|
Mousetrap.bind('g e', function(){ go_edit(); return false; });
|
|
Mousetrap.bind('g p', function(){ go_preview(); return false; });
|
|
|
|
Mousetrap.bind('n w p', function(){ new_work_package(); return false; });
|
|
Mousetrap.bind('j', function(){ focus_next_item(); return false; });
|
|
Mousetrap.bind('k', function(){ focus_previous_item(); return false; });
|
|
Mousetrap.bind('m', function(){ open_more_menu(); return false; });
|
|
|
|
Mousetrap.bind('p', function(){ search_project(); return false; });
|
|
Mousetrap.bind('s', function(){ search_global(); return false; });
|
|
})(jQuery);
|
|
|
|
jQuery(function(){
|
|
// simulated hover effect on table lists when using the keyboard
|
|
var tables = jQuery('table.list');
|
|
if (tables.size() === 0) { return; }
|
|
tables.on('blur', 'tr *', function(){
|
|
jQuery(this).parents('table.list tr').removeClass('keyboard_hover');
|
|
});
|
|
tables.on('focus', 'tr *', function(){
|
|
jQuery(this).parents('table.list tr').addClass('keyboard_hover');
|
|
});
|
|
});
|
|
|