cuckoo/hider.js
2020-04-01 00:24:59 +01:00

71 lines
No EOL
2 KiB
JavaScript

console.log("LOADED HIDER");
class TwitterHider
{
notProcessedAttribute = 'data-twitterhider-processed';
notProcessedSelector = `:not([${this.notProcessedAttribute}])`
selectors = {
countText: '.css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0',
replyContainer: `div[data-testid="reply"]${this.notProcessedSelector}`,
retweetContainer: `div[data-testid="retweet"]${this.notProcessedSelector},div[data-testid="unretweet"]${this.notProcessedSelector}`,
likeContainer: `div[data-testid="like"]${this.notProcessedSelector},div[data-testid="unlike"]${this.notProcessedSelector}`
};
preferences = {};
constructor(preferences) {
this.preferences = preferences;
}
init() {
console.table(this.preferences);
const hideLikes = this.getPreference("hideLikes");
const hideRetweets = this.getPreference("hideRetweets");
const hideReplies = this.getPreference("hideReplies");
const run = () => {
if (hideLikes)
this.hideLikeCounts();
if (hideRetweets)
this.hideRetweetCounts();
if (hideReplies)
this.hideReplyCounts();
};
if (hideLikes || hideRetweets || hideReplies)
setInterval(() => run(), 500);
}
hideLikeCounts() {
const elements = document.querySelectorAll(this.selectors.likeContainer);
this.omitElements(elements);
}
hideRetweetCounts() {
const elements = document.querySelectorAll(this.selectors.retweetContainer);
this.omitElements(elements);
}
hideReplyCounts() {
const elements = document.querySelectorAll(this.selectors.replyContainer);
this.omitElements(elements);
}
omitElements(elements) {
elements.forEach((element) => {
element.setAttribute(this.notProcessedAttribute, true);
const textElement = element.querySelector(this.selectors.countText);
if (textElement !== null)
textElement.innerHTML = "?";
});
}
getPreference(preference) {
if (this.preferences[preference] === undefined)
throw `preference ${preference} wasn't given in the constructor.`;
return this.preferences[preference];
}
}