// ==UserScript== // @name Pleroma CW toggle // @description Adds a button to toggle the visibility of all statuses with content warnings on status-pages, profile-pages and timelines. // @version 2019.06.24.1 // @author tastytea // @copyright 2019, tastytea (https://tastytea.de/) // @license GPL-3.0-only // @namespace tastytea.de // @homepageURL https://schlomp.space/tastytea/userscripts // @supportURL https://schlomp.space/tastytea/userscripts/issues // @downloadURL https://schlomp.space/tastytea/userscripts/raw/branch/main/fediverse/pleroma_cw_toggle.user.js // @grant none // @match https://*/notice/* // @match https://*/users/* // @match https://*/main/friends // @match https://*/main/public // @match https://*/main/all // @run-at document-end // @inject-into content // ==/UserScript== let interval; let counter = 0; // Toggle the visibility of statuses with CW. function toggle() { const main = document.getElementsByClassName("main")[0]; let hyperlinks = main.getElementsByClassName("cw-status-hider"); if (hyperlinks.length === 0) // If no status is hidden, hide all. { hyperlinks = main.getElementsByClassName("status-unhider"); } for (let hyperlink of hyperlinks) { hyperlink.click(); } } // Returns all conversation-headings or profile-tabs. function get_root_elements(parent) { // If conversation-heading is not there, try profile-tabs. let root = parent.getElementsByClassName("conversation-heading"); if (root.length === 0) { root = parent.getElementsByClassName("tabs"); } return root; } function add_button(parent) { const span = document.createElement("span"); const button = document.createElement("a"); button.setAttribute("class", "global-cw-toggle"); button.setAttribute( "style", "margin-left: 1em; margin-right: 0.5em; cursor: pointer;"); button.appendChild(document.createTextNode("Toggle all CWs")); button.addEventListener('click', toggle); span.append(button); const otherspans = parent.getElementsByTagName("span"); if (otherspans.length > 1) // Place it left of “Collapse”. { parent.insertBefore(span, otherspans[1]); } else { parent.append(span); } } // Check if we need to add a button. function check() { const re = new RegExp( '(/main/(friends|public|all)|/users/[^/]+(/(mentions|dms|interactions))?)#?$'); const is_timeline = re.test(window.location.href); if (!is_timeline) // If we are on a timeline, don't stop checking. { ++counter; // If this is not Pleroma or we tried 10 times, disable interval. if (counter > 10 || document.getElementById("app") === null) { clearInterval(interval); return; } } const main = document.getElementsByClassName("main")[0]; if (main === undefined) { return; } const root = get_root_elements(main); // if root element and a status was found, disable interval and add button. if (root.length !== 0 && main.getElementsByClassName("status-content").length > 0) { if (!is_timeline) { clearInterval(interval); } for (let element of root) { // Only add button if one or more statuses have a CW. if (main.getElementsByClassName("cw-status-hider").length > 0 || main.getElementsByClassName("status-unhider").length > 0) { if (element.getElementsByClassName("global-cw-toggle") .length > 0) // Skip if button is already there. { continue; } add_button(element); } } } } interval = setInterval(check, 1000); // Try to add button every second.