crocodilestick / Calibre-Web-Automated

Calibre-Web but automated and with Calibre features! Fully automate and simplify your eBook set up!
https://github.com/crocodilestick/Calibre-Web-Automated
GNU General Public License v3.0
822 stars 19 forks source link

[Feature Request] Bulk selection (mainly in list-view) #137

Open kaibs opened 5 days ago

kaibs commented 5 days ago

First, I want to thank you for this great project. It really is a very nice improvement over the “stock” calibre-web!

Is your feature request related to a problem? Please describe.

Describe the solution you'd like

SoulOfNoob commented 5 days ago

I was just about to open the exact same issue. For me a "select all" button would suffice, but having the possibility to select multiple items in a row with the usual shortcuts would be even better.

For now i use a js snippet in the browser console to select all checkboxes on the page as a workaround, maybe this helps someone else until this feature gets some attention:

document.querySelectorAll('[name="btSelectItem"]').forEach(function(e) {
    e.checked = true;
    e.dispatchEvent(new Event('click'));
});