Convert popup.js to TS popup.ts
This commit is contained in:
parent
05d0804f21
commit
3b16cc4489
1 changed files with 30 additions and 28 deletions
58
src/popup.ts
58
src/popup.ts
|
@ -1,50 +1,52 @@
|
||||||
class Popup {
|
import { PreferencesRepository } from './preferences-repository';
|
||||||
static async init() {
|
import { Preferences } from './interfaces/preferences';
|
||||||
this.bind();
|
|
||||||
|
class Popup {
|
||||||
|
private static hideLikesCheckbox: HTMLInputElement;
|
||||||
|
private static hideRepliesCheckbox: HTMLInputElement;
|
||||||
|
private static hideRetweetsCheckbox: HTMLInputElement;
|
||||||
|
private static saveButton: HTMLButtonElement;
|
||||||
|
private static saveChangesMessage: HTMLElement;
|
||||||
|
|
||||||
|
static async init(): Promise<void> {
|
||||||
|
const preferences: Preferences = await PreferencesRepository.get();
|
||||||
|
|
||||||
const preferences = await this.getPreferences();
|
|
||||||
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.bind();
|
||||||
}
|
}
|
||||||
|
|
||||||
static bind() {
|
static bind(): void {
|
||||||
this.hideLikesCheckbox = document.getElementById("hideLikes");
|
this.hideLikesCheckbox = document.getElementById('hideLikes') as HTMLInputElement;
|
||||||
this.hideRepliesCheckbox = document.getElementById("hideReplies");
|
this.hideRepliesCheckbox = document.getElementById('hideReplies') as HTMLInputElement;
|
||||||
this.hideRetweetsCheckbox = document.getElementById("hideRetweets");
|
this.hideRetweetsCheckbox = document.getElementById('hideRetweets') as HTMLInputElement;
|
||||||
this.saveButton = document.getElementById("saveButton");
|
|
||||||
this.saveChangesMessage = document.getElementById("savedChanges");
|
|
||||||
|
|
||||||
saveButton.addEventListener("click", async () => {
|
this.saveChangesMessage = document.getElementById('savedChanges');
|
||||||
|
|
||||||
|
this.saveButton = document.getElementById('saveButton') as HTMLButtonElement;
|
||||||
|
this.saveButton.addEventListener('click', async () => {
|
||||||
await this.saveChanges();
|
await this.saveChanges();
|
||||||
this.saveChangesMessage.style.display = "block";
|
this.saveChangesMessage.style.display = 'block';
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static saveChanges() {
|
static async saveChanges(): Promise<void> {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
chrome.storage.local.set({
|
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
|
||||||
}, () => resolve());
|
};
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
static getPreferences() {
|
PreferencesRepository.set(updatedPreferences);
|
||||||
return new Promise(resolve => {
|
|
||||||
chrome.storage.local.get([
|
resolve();
|
||||||
'hideLikes',
|
|
||||||
'hideRetweets',
|
|
||||||
'hideReplies'
|
|
||||||
], data => {
|
|
||||||
resolve(data);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window.onload = () => {
|
window.onload = (): void => {
|
||||||
Popup.init();
|
Popup.init();
|
||||||
};
|
};
|
Loading…
Add table
Reference in a new issue