[Yle] BetterComments

Makes Yle's article comment section better

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name        [Yle] BetterComments
// @match       https://yle.fi/*
// @grant       none
// @version     1.1
// @author      HKR
// @namespace   HKR
// @description Makes Yle's article comment section better
// @run-at      document-load
// ==/UserScript==

const processedTopComments = [];

function main(commentsContainerElem) {
    [...commentsContainerElem.childNodes].forEach(topCommentElem => {
        if(processedTopComments.includes(topCommentElem)) return;

        processedTopComments.push(topCommentElem);

        const replyCommentContainerElem = topCommentElem.querySelector('ul');

        if(!replyCommentContainerElem) return;

        const buttonContainerElem = topCommentElem.querySelector('button')?.parentElement;

        [...replyCommentContainerElem.childNodes].forEach(replyCommentElem => {
            const commentElem = replyCommentElem.querySelector('*[id*="comment"]');

            commentElem.style.cssText = `
                font-size: 14px;
                background-color: #00b3c726;
            `;
        });

        const hideBtn = document.createElement('button');
            hideBtn.innerText = 'Collapse';
            hideBtn.style.cssText = `
                font-family: "Yle Next";
                font-size: 14px;
                font-weight: 700;
                line-height: 150%;
                background-color: transparent;
                border-color: transparent;
                color: rgb(219, 216, 212);
                vertical-align: top;
                width: 100%;
            `;

        let isCollapsed = false;

        hideBtn.onclick = function() {
            if(isCollapsed) {
                replyCommentContainerElem.style.display = 'block';
                hideBtn.innerText = 'Collapse';
            } else {
                replyCommentContainerElem.style.display = 'none';
                hideBtn.innerText = 'Expand';
            }

            isCollapsed = !isCollapsed;
        }

        hideBtn.click();

        topCommentElem.insertBefore(hideBtn, replyCommentContainerElem);
    });
}

const waitForElemInterval = setInterval(() => {
    const commentsPluginElem = document.querySelector('#yle-comments-plugin');
    const commentsContainerElem = commentsPluginElem?.querySelector('ul[class*="cmnts"]');
    const isFullyLoaded = commentsContainerElem?.childNodes?.length > 0;

    if(isFullyLoaded) {
        main(commentsContainerElem);
    }
}, 250);