Start adding hide followers functionality

This commit is contained in:
Aaron Yarborough 2020-04-11 20:52:29 +01:00
parent ec92f5f6b1
commit 46974a49e1
5 changed files with 23 additions and 2 deletions

View file

@ -41,3 +41,12 @@ body[data-hideretweets]
span.css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0 { span.css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0 {
display: none; display: none;
} }
body[data-hidefollowers]
div.css-1dbjc4n.r-1ila09b.r-qklmqi.r-1adg3ll
div.css-1dbjc4n.r-1kfrmmb.r-1efd50x.r-5kkj8d.r-18u37iz.r-9qu9m4
a[href$="followers"]
span.css-901oao.css-16my406.r-1qd0xha.r-vw2c0b.r-ad9z0x.r-bcqeeo.r-d3hbe1.r-1wgg2b2.r-axxi2z.r-qvutc0
span.css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0 {
display: none;
}

View file

@ -6,6 +6,7 @@ export class TwitterHider {
private readonly hideLikesToggleAttr = 'data-hidelikes'; private readonly hideLikesToggleAttr = 'data-hidelikes';
private readonly hideRetweetsToggleAttr = 'data-hideretweets'; private readonly hideRetweetsToggleAttr = 'data-hideretweets';
private readonly HideRepliesToggleAttr = 'data-hidereplies'; private readonly HideRepliesToggleAttr = 'data-hidereplies';
private readonly HideFollowersToggleAttr = 'data-hidefollowers';
constructor(preferences: Preferences) { constructor(preferences: Preferences) {
this.preferences = preferences; this.preferences = preferences;
@ -15,6 +16,7 @@ export class TwitterHider {
this.setLikesVisibility(this.preferences.hideLikes); this.setLikesVisibility(this.preferences.hideLikes);
this.setRetweetsVisibility(this.preferences.hideRetweets); this.setRetweetsVisibility(this.preferences.hideRetweets);
this.setRepliesVisibility(this.preferences.hideReplies); this.setRepliesVisibility(this.preferences.hideReplies);
this.setFollowersVisibility(this.preferences.hideFollowers);
} }
private setLikesVisibility(visiblity: boolean): void { private setLikesVisibility(visiblity: boolean): void {
@ -29,6 +31,10 @@ export class TwitterHider {
this.setAttributeOrRemoveIfNull(document.body, this.HideRepliesToggleAttr, this.trueStringOrNull(visiblity)); this.setAttributeOrRemoveIfNull(document.body, this.HideRepliesToggleAttr, this.trueStringOrNull(visiblity));
} }
private setFollowersVisibility(visibility: boolean): void {
this.setAttributeOrRemoveIfNull(document.body, this.HideFollowersToggleAttr, this.trueStringOrNull(visibility));
}
private setAttributeOrRemoveIfNull(element: HTMLElement, attributeName: string, value: string): void { private setAttributeOrRemoveIfNull(element: HTMLElement, attributeName: string, value: string): void {
if (!value) { if (!value) {
element.removeAttribute(attributeName); element.removeAttribute(attributeName);

View file

@ -2,4 +2,5 @@ export interface Preferences {
hideLikes: boolean; hideLikes: boolean;
hideRetweets: boolean; hideRetweets: boolean;
hideReplies: boolean; hideReplies: boolean;
hideFollowers: boolean;
} }

View file

@ -5,6 +5,7 @@ class Popup {
private static hideLikesCheckbox: HTMLInputElement; private static hideLikesCheckbox: HTMLInputElement;
private static hideRepliesCheckbox: HTMLInputElement; private static hideRepliesCheckbox: HTMLInputElement;
private static hideRetweetsCheckbox: HTMLInputElement; private static hideRetweetsCheckbox: HTMLInputElement;
private static hideFollowersCheckbox: HTMLInputElement;
private static saveButton: HTMLButtonElement; private static saveButton: HTMLButtonElement;
private static saveChangesMessage: HTMLElement; private static saveChangesMessage: HTMLElement;
@ -16,12 +17,14 @@ class Popup {
this.hideLikesCheckbox.checked = preferences.hideLikes; this.hideLikesCheckbox.checked = preferences.hideLikes;
this.hideRepliesCheckbox.checked = preferences.hideReplies; this.hideRepliesCheckbox.checked = preferences.hideReplies;
this.hideRetweetsCheckbox.checked = preferences.hideRetweets; this.hideRetweetsCheckbox.checked = preferences.hideRetweets;
this.hideFollowersCheckbox.checked = preferences.hideFollowers;
} }
static bind(): void { static bind(): void {
this.hideLikesCheckbox = document.getElementById('hideLikes') as HTMLInputElement; this.hideLikesCheckbox = document.getElementById('hideLikes') as HTMLInputElement;
this.hideRepliesCheckbox = document.getElementById('hideReplies') as HTMLInputElement; this.hideRepliesCheckbox = document.getElementById('hideReplies') as HTMLInputElement;
this.hideRetweetsCheckbox = document.getElementById('hideRetweets') as HTMLInputElement; this.hideRetweetsCheckbox = document.getElementById('hideRetweets') as HTMLInputElement;
this.hideFollowersCheckbox = document.getElementById('hideFollowers') as HTMLInputElement;
this.saveChangesMessage = document.getElementById('savedChanges'); this.saveChangesMessage = document.getElementById('savedChanges');
@ -37,7 +40,8 @@ class Popup {
const updatedPreferences: Preferences = { const updatedPreferences: Preferences = {
hideLikes: this.hideLikesCheckbox.checked, hideLikes: this.hideLikesCheckbox.checked,
hideRetweets: this.hideRetweetsCheckbox.checked, hideRetweets: this.hideRetweetsCheckbox.checked,
hideReplies: this.hideRepliesCheckbox.checked hideReplies: this.hideRepliesCheckbox.checked,
hideFollowers: this.hideFollowersCheckbox.checked
}; };
PreferencesRepository.set(updatedPreferences); PreferencesRepository.set(updatedPreferences);

View file

@ -4,7 +4,8 @@ export class PreferencesRepository {
static readonly DefaultPreferences: Preferences = { static readonly DefaultPreferences: Preferences = {
hideLikes: true, hideLikes: true,
hideRetweets: true, hideRetweets: true,
hideReplies: true hideReplies: true,
hideFollowers: true
}; };
static get(): Promise<Preferences> { static get(): Promise<Preferences> {