mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
Merge pull request #314 from fisle/devel
Shortcut: Spacebar assigns self to current card, 'F' toggles filter sidebar
This commit is contained in:
commit
9d5f473395
2 changed files with 36 additions and 0 deletions
|
@ -23,6 +23,14 @@ Mousetrap.bind('x', () => {
|
|||
}
|
||||
});
|
||||
|
||||
Mousetrap.bind('f', () => {
|
||||
if (Sidebar.isOpen() && Sidebar.getView() === 'filter') {
|
||||
Sidebar.toggle();
|
||||
} else {
|
||||
Sidebar.setView('filter');
|
||||
}
|
||||
});
|
||||
|
||||
Mousetrap.bind(['down', 'up'], (evt, key) => {
|
||||
if (!Session.get('currentCard')) {
|
||||
return;
|
||||
|
@ -36,6 +44,26 @@ Mousetrap.bind(['down', 'up'], (evt, key) => {
|
|||
}
|
||||
});
|
||||
|
||||
// XXX This shortcut should also work when hovering over a card in board view
|
||||
Mousetrap.bind('space', (evt) => {
|
||||
if (!Session.get('currentCard')) {
|
||||
return;
|
||||
}
|
||||
|
||||
const currentUserId = Meteor.userId();
|
||||
if (currentUserId === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (Meteor.user().isBoardMember()) {
|
||||
const card = Cards.findOne(Session.get('currentCard'));
|
||||
card.toggleMember(currentUserId);
|
||||
// We should prevent scrolling in card when spacebar is clicked
|
||||
// This should do it according to Mousetrap docs, but it doesn't
|
||||
evt.preventDefault();
|
||||
}
|
||||
});
|
||||
|
||||
Template.keyboardShortcuts.helpers({
|
||||
mapping: [{
|
||||
keys: ['W'],
|
||||
|
@ -43,6 +71,9 @@ Template.keyboardShortcuts.helpers({
|
|||
}, {
|
||||
keys: ['Q'],
|
||||
action: 'shortcut-filter-my-cards',
|
||||
}, {
|
||||
keys: ['F'],
|
||||
action: 'shortcut-toggle-filterbar',
|
||||
}, {
|
||||
keys: ['X'],
|
||||
action: 'shortcut-clear-filters',
|
||||
|
@ -58,5 +89,8 @@ Template.keyboardShortcuts.helpers({
|
|||
}, {
|
||||
keys: [':'],
|
||||
action: 'shortcut-autocomplete-emojies',
|
||||
}, {
|
||||
keys: ['SPACE'],
|
||||
action: 'shortcut-assign-self',
|
||||
}],
|
||||
});
|
||||
|
|
|
@ -177,12 +177,14 @@
|
|||
"save": "Save",
|
||||
"search": "Search",
|
||||
"select-color": "Select a color",
|
||||
"shortcut-assign-self": "Assign yourself to current card",
|
||||
"shortcut-autocomplete-emojies": "Autocomplete emojies",
|
||||
"shortcut-autocomplete-members": "Autocomplete members",
|
||||
"shortcut-clear-filters": "Clear all filters",
|
||||
"shortcut-close-dialog": "Close Dialog",
|
||||
"shortcut-filter-my-cards": "Filter my cards",
|
||||
"shortcut-show-shortcuts": "Bring up this shortcuts list",
|
||||
"shortcut-toggle-filterbar": "Toggle Filter Sidebar",
|
||||
"shortcut-toggle-sidebar": "Toggle Board Sidebar",
|
||||
"signupPopup-title": "Create an Account",
|
||||
"star-board-title": "Click to star this board. It will show up at top of your boards list.",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue