2016-11-03 09:02:16 +00:00
|
|
|
import Mousetrap from 'mousetrap';
|
|
|
|
import $ from 'jquery';
|
|
|
|
|
|
|
|
function toggleFocus(cardToToogleFocus) {
|
|
|
|
if (cardToToogleFocus) {
|
|
|
|
$(cardToToogleFocus).toggleClass('z-depth-4');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(() => {
|
2016-12-20 12:04:51 +00:00
|
|
|
const cards = $('#content').find('.card');
|
|
|
|
const cardNumber = cards.length;
|
2016-11-05 15:06:13 +00:00
|
|
|
let cardIndex = 0;
|
2016-12-20 12:04:51 +00:00
|
|
|
/* If we come from next page */
|
|
|
|
if (window.location.hash === '#prev') {
|
|
|
|
cardIndex = cardNumber - 1;
|
|
|
|
}
|
|
|
|
let card = cards[cardIndex];
|
2016-11-05 15:06:13 +00:00
|
|
|
const pagination = $('.pagination');
|
2016-11-03 09:02:16 +00:00
|
|
|
|
2016-11-15 21:23:50 +00:00
|
|
|
/* Show nothing on quickstart */
|
|
|
|
if ($('#content > div.quickstart').length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-02 14:21:06 +00:00
|
|
|
/* Show nothing on login/register page */
|
|
|
|
if ($('#username').length > 0 || $('#fos_user_registration_form_username').length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-04 12:56:52 +00:00
|
|
|
/* Show nothing on login/register page */
|
|
|
|
if ($('#username').length > 0 || $('#fos_user_registration_form_username').length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-03 09:02:16 +00:00
|
|
|
/* Focus current card */
|
|
|
|
toggleFocus(card);
|
|
|
|
|
|
|
|
/* Actions */
|
|
|
|
Mousetrap.bind('g n', () => {
|
2016-11-02 15:44:20 +00:00
|
|
|
$('#nav-btn-add').trigger('click');
|
2016-11-18 18:21:31 +00:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
Mousetrap.bind('s', () => {
|
|
|
|
$('#nav-btn-search').trigger('click');
|
|
|
|
return false;
|
2016-11-03 09:02:16 +00:00
|
|
|
});
|
2016-11-02 15:44:20 +00:00
|
|
|
|
2016-11-03 09:02:16 +00:00
|
|
|
Mousetrap.bind('esc', () => {
|
2016-11-02 15:44:20 +00:00
|
|
|
$('.close').trigger('click');
|
2016-11-03 09:02:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/* Select right card. If there's a next page, go to next page */
|
|
|
|
Mousetrap.bind('right', () => {
|
|
|
|
if (cardIndex >= 0 && cardIndex < cardNumber - 1) {
|
|
|
|
toggleFocus(card);
|
|
|
|
cardIndex += 1;
|
2016-12-20 12:04:51 +00:00
|
|
|
card = cards[cardIndex];
|
2016-11-03 09:02:16 +00:00
|
|
|
toggleFocus(card);
|
|
|
|
return;
|
|
|
|
}
|
2016-11-05 15:06:13 +00:00
|
|
|
if (pagination.length > 0 && pagination.find('li.next:not(.disabled)').length > 0 && cardIndex === cardNumber - 1) {
|
2016-11-03 09:02:16 +00:00
|
|
|
window.location.href = window.location.origin + $(pagination).find('li.next a').attr('href');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Select previous card. If there's a previous page, go to next page */
|
|
|
|
Mousetrap.bind('left', () => {
|
|
|
|
if (cardIndex > 0 && cardIndex < cardNumber) {
|
|
|
|
toggleFocus(card);
|
|
|
|
cardIndex -= 1;
|
2016-12-20 12:04:51 +00:00
|
|
|
card = cards[cardIndex];
|
2016-11-03 09:02:16 +00:00
|
|
|
toggleFocus(card);
|
|
|
|
return;
|
|
|
|
}
|
2016-11-05 15:06:13 +00:00
|
|
|
if (pagination.length > 0 && $(pagination).find('li.prev:not(.disabled)').length > 0 && cardIndex === 0) {
|
2016-11-03 09:02:16 +00:00
|
|
|
window.location.href = `${window.location.origin + $(pagination).find('li.prev a').attr('href')}#prev`;
|
|
|
|
}
|
|
|
|
});
|
2016-11-02 15:44:20 +00:00
|
|
|
|
2016-11-03 09:02:16 +00:00
|
|
|
Mousetrap.bind('enter', () => {
|
2023-06-16 10:19:34 +00:00
|
|
|
if (typeof card !== 'object') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = $(card).find('.card-title a').attr('href');
|
|
|
|
if (typeof url === 'string' && url.length > 0) {
|
|
|
|
window.location.href = window.location.origin + url;
|
|
|
|
}
|
2016-11-03 09:02:16 +00:00
|
|
|
});
|
2016-11-02 15:44:20 +00:00
|
|
|
});
|