MyAnimeList(MAL) - Com-to-Com Links

Add Com-to-Com link between user and comment user for every comment.

目前為 2023-06-03 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            MyAnimeList(MAL) - Com-to-Com Links
// @version         1.2.0
// @description	    Add Com-to-Com link between user and comment user for every comment.
// @author          Cpt_mathix & N_Ox
// @match           *://myanimelist.net/profile*
// @match           *://myanimelist.net/comments*
// @exclude         *://myanimelist.net/profile/*/*
// @grant           none
// @namespace       https://greasyfork.org/users/16080
// ==/UserScript==

if (document.location.href.indexOf('profile') > -1) {
	var element = document.getElementById('lastcomment').getElementsByTagName('a');
	for (var i = 0; i < element.length; i++) {
		if (element[i] && element[i].innerHTML.indexOf("All Comments") > -1) {
			comtocom(element[i].href);
			break;
		}
	}
} else {
	comtocom(document.location.href);
}

function goToConversation(profile, url) {
    fetch(profile)
        .then(response => response.text())
        .then(text => {
            const parser = new DOMParser();
            const htmlDocument = parser.parseFromString(text, "text/html");
            const section = htmlDocument.documentElement.querySelector("#contentWrapper").innerHTML;

            const regex = new RegExp(/type=profile&amp;id=(\d+)/g);
            const id = regex.exec(section)[1];

            window.location.href = url + id;
        });
}

function comtocom(url) {
	url = url.replace(/&*show=\d*/g, "");
	var i = url.indexOf('id=');
	if (i == -1) return;
	url = '/comtocom.php?id1=' + url.substr(i + 3) + '&id2=';

	if (document.location.href.indexOf('profile') > -1) {
		document.querySelectorAll('div[id^=comBox]').forEach(function (el) {
			if (el.getElementsByClassName('postActions ar mt4').length !== 0) {
				return;
			}

			var profile = el.querySelector('.image').href;
            if (!profile) return;

			var div = document.createElement('div');
			div.className = 'postActions ar mt4 mr12';
			var link = document.createElement('a');
			link.innerHTML = "Conversation";
            link.href="#";
            link.onclick = (event) => {
                event.preventDefault();
                link.innerHTML = "Loading Conversation...";

                goToConversation(profile, url);
            };

			div.appendChild(link);
			el.appendChild(div);
		});
	} else {
        // console.log(document.querySelectorAll('div[id^=comBox] > table > tbody > tr'));
        // console.log(document.querySelectorAll('div[id^=comBox]'));
		document.querySelectorAll('div[id^=comBox] > table > tbody > tr').forEach(function (el) {
			var com = el.querySelector('div[id^=com]:not([id^=comtext])');
			if (!com) return;
			if (com.children.length == 3) return;

			var profile = el.querySelector('.picSurround > a').href;
            if (!profile) return;

			com.insertAdjacentHTML("beforeend", '<div style="margin-top:10px" align="right"><a href="#" class="conversation">Conversation</a></div>');

            const link = com.querySelector(".conversation");
            link.onclick = (event) => {
                event.preventDefault();
                link.innerHTML = "Loading Conversation...";

                goToConversation(profile, url);
            };
		});
	}
}