Remove getPreference call
This commit is contained in:
parent
f7f825d6c0
commit
22384ab498
1 changed files with 14 additions and 20 deletions
34
hider.js
34
hider.js
|
@ -16,21 +16,21 @@ class TwitterHider {
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
const hideLikes = this.getPreference("hideLikes");
|
if (
|
||||||
const hideRetweets = this.getPreference("hideRetweets");
|
!this.preferences.hideLikes
|
||||||
const hideReplies = this.getPreference("hideReplies");
|
&& this.preferences.hideRetweets
|
||||||
|
&& this.preferences.hideReplies
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setInterval(() => this.run(), 500);
|
||||||
|
}
|
||||||
|
|
||||||
const run = () => {
|
run() {
|
||||||
if (hideLikes)
|
if (this.preferences.hideLikes) this.hideLikeCounts();
|
||||||
this.hideLikeCounts();
|
if (this.preferences.hideRetweets) this.hideRetweetCounts();
|
||||||
if (hideRetweets)
|
if (this.preferences.hideReplies) this.hideReplyCounts();
|
||||||
this.hideRetweetCounts();
|
|
||||||
if (hideReplies)
|
|
||||||
this.hideReplyCounts();
|
|
||||||
};
|
|
||||||
|
|
||||||
if (hideLikes || hideRetweets || hideReplies)
|
|
||||||
setInterval(() => run(), 500);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
hideLikeCounts() {
|
hideLikeCounts() {
|
||||||
|
@ -75,12 +75,6 @@ class TwitterHider {
|
||||||
element.setAttribute(this.processedAttribute, true);
|
element.setAttribute(this.processedAttribute, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
getPreference(preference) {
|
|
||||||
if (this.preferences[preference] === undefined)
|
|
||||||
throw `preference ${preference} wasn't given in the constructor.`;
|
|
||||||
return this.preferences[preference];
|
|
||||||
}
|
|
||||||
|
|
||||||
findMainTweetCountByLabelText(labelText) {
|
findMainTweetCountByLabelText(labelText) {
|
||||||
return [...document.querySelectorAll(this.selectors.countText)]
|
return [...document.querySelectorAll(this.selectors.countText)]
|
||||||
.filter(element => element.innerHTML === labelText)
|
.filter(element => element.innerHTML === labelText)
|
||||||
|
|
Loading…
Add table
Reference in a new issue