summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorKevinWh0 <45321184+KevinWh0@users.noreply.github.com>2024-05-06 13:54:43 +0200
committerKevinWh0 <45321184+KevinWh0@users.noreply.github.com>2024-05-06 13:54:43 +0200
commit342eda431f6e7b19742c909fced38fdef772ccea (patch)
tree837b02276022f24177ebd5e147a42ad7fd6f44ec /packages/frontend/src
parentpotential firefox fix (diff)
downloadsharkey-342eda431f6e7b19742c909fced38fdef772ccea.tar.gz
sharkey-342eda431f6e7b19742c909fced38fdef772ccea.tar.bz2
sharkey-342eda431f6e7b19742c909fced38fdef772ccea.zip
fixing a buch of comments
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/scripts/favicon-dot.ts40
-rw-r--r--packages/frontend/src/ui/_common_/common.vue2
2 files changed, 22 insertions, 20 deletions
diff --git a/packages/frontend/src/scripts/favicon-dot.ts b/packages/frontend/src/scripts/favicon-dot.ts
index 143ad50c9a..643ee1b76b 100644
--- a/packages/frontend/src/scripts/favicon-dot.ts
+++ b/packages/frontend/src/scripts/favicon-dot.ts
@@ -1,18 +1,20 @@
class FavIconDot {
- canvas : HTMLCanvasElement;
- src : string | null = null;
- ctx : CanvasRenderingContext2D | null = null;
- faviconImage : HTMLImageElement | null = null;
- faviconEL : HTMLLinkElement | undefined;
- hasLoaded : Promise<void> | undefined;
+ canvas: HTMLCanvasElement;
+ src: string | null = null;
+ ctx: CanvasRenderingContext2D | null = null;
+ faviconImage: HTMLImageElement | null = null;
+ faviconEL: HTMLLinkElement | undefined;
+ hasLoaded: Promise<void> | undefined;
constructor() {
this.canvas = document.createElement('canvas');
}
- //MUST BE CALLED BEFORE CALLING ANY OTHER FUNCTIONS
+ /**
+ * Must be called before calling any other functions
+ */
public async setup() {
- const element : HTMLLinkElement = await this.getOrMakeFaviconElement();
+ const element: HTMLLinkElement = await this.getOrMakeFaviconElement();
this.faviconEL = element;
this.src = this.faviconEL.getAttribute('href');
@@ -34,9 +36,9 @@ class FavIconDot {
this.faviconImage.src = this.faviconEL.href;
}
- private async getOrMakeFaviconElement() : Promise<HTMLLinkElement> {
+ private async getOrMakeFaviconElement(): Promise<HTMLLinkElement> {
return new Promise((resolve, reject) => {
- const favicon = (document.querySelector('link[rel=icon]') ?? this._createFaviconElem()) as HTMLLinkElement;
+ const favicon = (document.querySelector('link[rel=icon]') ?? this.createFaviconElem()) as HTMLLinkElement;
favicon.addEventListener('load', () => {
resolve(favicon);
});
@@ -48,7 +50,7 @@ class FavIconDot {
});
}
- private _createFaviconElem() {
+ private createFaviconElem() {
const newLink = document.createElement('link');
newLink.setAttribute('rel', 'icon');
newLink.setAttribute('href', '/favicon.ico');
@@ -58,13 +60,13 @@ class FavIconDot {
return newLink;
}
- private _drawIcon() {
+ private drawIcon() {
if (!this.ctx || !this.faviconImage) return;
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
this.ctx.drawImage(this.faviconImage, 0, 0, this.faviconImage.width, this.faviconImage.height);
}
- private _drawDot() {
+ private drawDot() {
if (!this.ctx || !this.faviconImage) return;
this.ctx.beginPath();
this.ctx.arc(this.faviconImage.width - 10, 10, 10, 0, 2 * Math.PI);
@@ -74,16 +76,16 @@ class FavIconDot {
this.ctx.stroke();
}
- private _setFavicon() {
+ private setFavicon() {
if (this.faviconEL) this.faviconEL.href = this.canvas.toDataURL('image/png');
}
- async setVisible(isVisible : boolean) {
- //Wait for it to have loaded the icon
+ async setVisible(isVisible: boolean) {
+ // Wait for it to have loaded the icon
await this.hasLoaded;
- this._drawIcon();
- if (isVisible) this._drawDot();
- this._setFavicon();
+ this.drawIcon();
+ if (isVisible) this.drawDot();
+ this.setFavicon();
}
}
diff --git a/packages/frontend/src/ui/_common_/common.vue b/packages/frontend/src/ui/_common_/common.vue
index bec8bb6c7c..b1fe8e54fc 100644
--- a/packages/frontend/src/ui/_common_/common.vue
+++ b/packages/frontend/src/ui/_common_/common.vue
@@ -95,7 +95,7 @@ if ($i) {
const connection = useStream().useChannel('main', null, 'UI');
connection.on('notification', onNotification);
- //For the favicon notification dot
+ // For the favicon notification dot
watch(() => $i?.hasUnreadNotification && defaultStore.state.enableFaviconNotificationDot, (hasAny) => setFavIconDot(hasAny as boolean));
if ($i.hasUnreadNotification && defaultStore.state.enableFaviconNotificationDot) setFavIconDot(true);