2020-04-29 20:09:37 -04:00
|
|
|
/* eslint-disable func-names, consistent-return, one-var, class-methods-use-this */
|
2018-03-09 15:18:59 -05:00
|
|
|
|
|
|
|
import $ from 'jquery';
|
2017-12-07 07:30:53 -05:00
|
|
|
import { visitUrl } from './lib/utils/url_utility';
|
2017-01-13 16:54:16 -05:00
|
|
|
|
2017-06-30 19:18:05 -04:00
|
|
|
export default class TreeView {
|
2017-06-30 17:27:31 -04:00
|
|
|
constructor() {
|
2017-07-05 13:20:41 -04:00
|
|
|
this.initKeyNav();
|
|
|
|
// Code browser tree slider
|
|
|
|
// Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
|
2020-12-23 07:10:26 -05:00
|
|
|
$('.tree-content-holder .tree-item').on('click', function (e) {
|
2019-11-15 07:06:12 -05:00
|
|
|
const $clickedEl = $(e.target);
|
|
|
|
const path = $('.tree-item-file-name a', this).attr('href');
|
2017-07-05 13:20:41 -04:00
|
|
|
if (!$clickedEl.is('a') && !$clickedEl.is('.str-truncated')) {
|
|
|
|
if (e.metaKey || e.which === 2) {
|
|
|
|
e.preventDefault();
|
|
|
|
return window.open(path, '_blank');
|
2016-07-24 16:45:11 -04:00
|
|
|
}
|
2020-04-29 20:09:37 -04:00
|
|
|
return visitUrl(path);
|
2017-07-05 13:20:41 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
// Show the "Loading commit data" for only the first element
|
2020-12-23 07:10:26 -05:00
|
|
|
$('span.log_loading').first().removeClass('hide');
|
2017-07-05 13:20:41 -04:00
|
|
|
}
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-06-30 17:27:31 -04:00
|
|
|
initKeyNav() {
|
2019-11-15 07:06:12 -05:00
|
|
|
const li = $('tr.tree-item');
|
|
|
|
let liSelected = null;
|
2020-12-23 16:10:24 -05:00
|
|
|
return $('body').keydown((e) => {
|
2019-11-15 07:06:12 -05:00
|
|
|
let next, path;
|
2018-10-10 03:13:34 -04:00
|
|
|
if ($('input:focus').length > 0 && (e.which === 38 || e.which === 40)) {
|
2017-07-05 13:20:41 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (e.which === 40) {
|
|
|
|
if (liSelected) {
|
|
|
|
next = liSelected.next();
|
|
|
|
if (next.length > 0) {
|
2018-10-10 03:13:34 -04:00
|
|
|
liSelected.removeClass('selected');
|
|
|
|
liSelected = next.addClass('selected');
|
2016-07-24 16:45:11 -04:00
|
|
|
}
|
2017-07-05 13:20:41 -04:00
|
|
|
} else {
|
2018-10-10 03:13:34 -04:00
|
|
|
liSelected = li.eq(0).addClass('selected');
|
2017-07-05 13:20:41 -04:00
|
|
|
}
|
|
|
|
return $(liSelected).focus();
|
|
|
|
} else if (e.which === 38) {
|
|
|
|
if (liSelected) {
|
|
|
|
next = liSelected.prev();
|
|
|
|
if (next.length > 0) {
|
2018-10-10 03:13:34 -04:00
|
|
|
liSelected.removeClass('selected');
|
|
|
|
liSelected = next.addClass('selected');
|
2016-07-24 16:45:11 -04:00
|
|
|
}
|
2017-07-05 13:20:41 -04:00
|
|
|
} else {
|
2018-10-10 03:13:34 -04:00
|
|
|
liSelected = li.last().addClass('selected');
|
2017-07-05 13:20:41 -04:00
|
|
|
}
|
|
|
|
return $(liSelected).focus();
|
|
|
|
} else if (e.which === 13) {
|
|
|
|
path = $('.tree-item.selected .tree-item-file-name a').attr('href');
|
|
|
|
if (path) {
|
2017-12-07 07:30:53 -05:00
|
|
|
return visitUrl(path);
|
2016-07-24 16:45:11 -04:00
|
|
|
}
|
2017-07-05 13:20:41 -04:00
|
|
|
}
|
|
|
|
});
|
2017-06-30 17:27:31 -04:00
|
|
|
}
|
|
|
|
}
|