42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
const starIcon = "star";
|
|
const scripts = [
|
|
changeFollowedStarColor,
|
|
changeOwnBorderColor,
|
|
]
|
|
|
|
executeAfterPreload(initScripts);
|
|
|
|
function initScripts() {
|
|
// run the scripts
|
|
runScripts();
|
|
|
|
// because of late loading in the request list we have to run the codes each time the list changes
|
|
document.querySelector("md-list").addEventListener("DOMNodeInserted", event => runScripts(event), false);
|
|
}
|
|
|
|
function runScripts() {
|
|
scripts.forEach(script => script());
|
|
console.log("DDS")
|
|
}
|
|
|
|
function changeFollowedStarColor() {
|
|
// find stars
|
|
let followedItems = Array.from(document.querySelectorAll("i")).filter(i => i.innerText == starIcon);
|
|
|
|
// change color
|
|
followedItems.forEach(item => item.style.color = aniBlue);
|
|
}
|
|
|
|
function changeOwnBorderColor() {
|
|
// find items -> all
|
|
let requestItems = document.querySelectorAll("md-list-item");
|
|
|
|
// change border color if profile link is not "false"
|
|
requestItems.forEach(item => {
|
|
let profileLink = item.querySelectorAll("a[href*='/profile/']:not([href='/profile/false'])");
|
|
|
|
if (profileLink.length > 0) {
|
|
item.style.borderColor = aniBlue
|
|
}
|
|
});
|
|
} |