Support expanding/collapsing Web UI folders with arrow keys

This commit is contained in:
Thomas Piccirello 2021-07-09 22:38:56 -07:00
parent e76bac4131
commit 32f29e72c6
2 changed files with 30 additions and 1 deletions

View file

@ -43,7 +43,9 @@ window.qBittorrent.PropFiles = (function() {
createPriorityCombo: createPriorityCombo,
updatePriorityCombo: updatePriorityCombo,
updateData: updateData,
collapseIconClicked: collapseIconClicked
collapseIconClicked: collapseIconClicked,
expandFolder: expandFolder,
collapseFolder: collapseFolder
};
};
@ -495,6 +497,20 @@ window.qBittorrent.PropFiles = (function() {
collapseNode(node);
};
const expandFolder = function(id) {
const node = torrentFilesTable.getNode(id);
if (node.isFolder) {
expandNode(node);
}
};
const collapseFolder = function(id) {
const node = torrentFilesTable.getNode(id);
if (node.isFolder) {
collapseNode(node);
}
};
const filesPriorityMenuClicked = function(priority) {
const selectedRows = torrentFilesTable.selectedRowsIds();
if (selectedRows.length === 0) return;