Guest User

2ch.sortbyreply.user.js

a guest
May 11th, 2021
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         2ch.hk | Сортировка по ответам
  3. // @version      0.1
  4. // @match        ://2ch.hk/*/res/*.html
  5. // @icon         https://2ch.hk/favicon.ico
  6. // @grant        none
  7. // ==/UserScript==
  8.  
  9. (function () {
  10.     "use strict";
  11.  
  12.     function reply_count($post) {
  13.         return $post.querySelector(".post__refmap").childElementCount;
  14.     }
  15.  
  16.     document
  17.         .querySelector(".thread-nav__inner")
  18.         .insertAdjacentHTML(
  19.         "beforeend",
  20.         ' | <span><input type="checkbox" id="sort-checkbox"> Сортировать по ответам</span>'
  21.     );
  22.  
  23.     const $thread = document.querySelector(".thread");
  24.     //$thread.style.display = "flex";
  25.     $thread.style["flex-direction"] = "column";
  26.     $thread.children[0].style.order = -1000; // fix op-post
  27.  
  28.     document.querySelector("#sort-checkbox").addEventListener("change", (el) => {
  29.         if (el.target.checked) {
  30.             $thread.style.display = "flex";
  31.             const posts = document.querySelectorAll(".thread__post");
  32.             posts.forEach(($post) => {
  33.                 $post.style.order = -reply_count($post);
  34.             });
  35.         } else {
  36.             $thread.style.display = "block";
  37.         }
  38.     });
  39. })();
  40.  
Add Comment
Please, Sign In to add comment