Skip to content

Instantly share code, notes, and snippets.

@franga2000
Created January 9, 2021 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franga2000/8c9dc206bcf1827a57fb2434c03f36d1 to your computer and use it in GitHub Desktop.
Save franga2000/8c9dc206bcf1827a57fb2434c03f36d1 to your computer and use it in GitHub Desktop.
A collection of horrible hacks for lazy tabmasters
// ==UserScript==
// @name Tabbycat tools
// @match http*://tab*.*/*
// @grant unsafeWindow
// @grant GM_registerMenuCommand
// @version 1.0
// @author franga2000
// @description A collection of horrible hacks for lazy tabmasters
// ==/UserScript==
/*
* COMMAND REGISTRATION
*/
GM_registerMenuCommand('Make tables plain', () => plainTables(document), 'r');
/*
* WHERE TO RUN WHAT
*/
reverseTitle();
if (window.location.href.endsWith("/participants/eligibility/")) {
addBatchToggler()
}
/*
* ACTUAL CODE
*/
/**
* Reverse the title so they're more readable in short tabs that get truncated
*/
function reverseTitle() {
let parts = document.title.split("|").map(s => s.trim());
parts.reverse();
document.title = parts.join(" | ")
}
/**
* Strip anything fancy out of a table so it's easier to copy-paste
*/
function plainTables(el) {
[...el.querySelectorAll("td")].forEach(e => e.innerHTML = e.children[0].textContent)
}
/**
* Add a field that you can paste names into and it will find them in the table and click their checkmarks
* (useful for importing novice speakers)
* NOTE: this is horrible Only clicks the first checkbox, can only toggle (not set) them and runs async so DON'T CLOSE THE TAB unless you're sure it's done
*/
function addBatchToggler() {
document.querySelector("footer").outerHTML += `
<div class="input-group">
<label>Batch-toggle names</label>
<textarea class="form-control" id="batch-toggle-list"></textarea>
<div class="input-group-append" id="batch-toggle"><span class="input-group-text">GO</span></div>
</div>`;
document.getElementById("batch-toggle").onclick = function(ev) {
let list = document.getElementById("batch-toggle-list").value.split("\n").map(s => s.trim());
console.debug(list);
let c = 0;
for (let tr of document.querySelectorAll(".table tr")) {
let i = list.indexOf(tr.children[0].textContent.trim());
if (i > 0) {
setTimeout( () => {
tr.querySelector("input[type=checkbox]").click();
}, 100*c);
list.splice(i,i);
}
}
alert("missing:" + list.join("\n"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment