90 lines
2.7 KiB
TypeScript
90 lines
2.7 KiB
TypeScript
/*
|
||
Copyright 2016 Aviral Dasgupta
|
||
Copyright 2016 OpenMarket Ltd
|
||
Copyright 2018, 2020 New Vector Ltd
|
||
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
||
|
||
Licensed under the Apache License, Version 2.0 (the "License");
|
||
you may not use this file except in compliance with the License.
|
||
You may obtain a copy of the License at
|
||
|
||
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
||
Unless required by applicable law or agreed to in writing, software
|
||
distributed under the License is distributed on an "AS IS" BASIS,
|
||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
See the License for the specific language governing permissions and
|
||
limitations under the License.
|
||
*/
|
||
|
||
import BasePlatform from "matrix-react-sdk/src/BasePlatform";
|
||
|
||
import type { IConfigOptions } from "matrix-react-sdk/src/IConfigOptions";
|
||
import { getVectorConfig } from "../getconfig";
|
||
import Favicon from "../../favicon";
|
||
import { _t } from "../../languageHandler";
|
||
|
||
/**
|
||
* Vector-specific extensions to the BasePlatform template
|
||
*/
|
||
export default abstract class VectorBasePlatform extends BasePlatform {
|
||
protected _favicon?: Favicon;
|
||
|
||
public async getConfig(): Promise<IConfigOptions | undefined> {
|
||
return getVectorConfig();
|
||
}
|
||
|
||
public getHumanReadableName(): string {
|
||
return "Vector Base Platform"; // no translation required: only used for analytics
|
||
}
|
||
|
||
/**
|
||
* Delay creating the `Favicon` instance until first use (on the first notification) as
|
||
* it uses canvas, which can trigger a permission prompt in Firefox's resist fingerprinting mode.
|
||
* See https://github.com/element-hq/element-web/issues/9605.
|
||
*/
|
||
public get favicon(): Favicon {
|
||
if (this._favicon) {
|
||
return this._favicon;
|
||
}
|
||
this._favicon = new Favicon();
|
||
return this._favicon;
|
||
}
|
||
|
||
private updateFavicon(): void {
|
||
let bgColor = "#d00";
|
||
let notif: string | number = this.notificationCount;
|
||
|
||
if (this.errorDidOccur) {
|
||
notif = notif || "×";
|
||
bgColor = "#f00";
|
||
}
|
||
|
||
this.favicon.badge(notif, { bgColor });
|
||
}
|
||
|
||
public setNotificationCount(count: number): void {
|
||
if (this.notificationCount === count) return;
|
||
super.setNotificationCount(count);
|
||
this.updateFavicon();
|
||
}
|
||
|
||
public setErrorStatus(errorDidOccur: boolean): void {
|
||
if (this.errorDidOccur === errorDidOccur) return;
|
||
super.setErrorStatus(errorDidOccur);
|
||
this.updateFavicon();
|
||
}
|
||
|
||
/**
|
||
* Begin update polling, if applicable
|
||
*/
|
||
public startUpdater(): void {}
|
||
|
||
/**
|
||
* Get a sensible default display name for the
|
||
* device Vector is running on
|
||
*/
|
||
public getDefaultDeviceDisplayName(): string {
|
||
return _t("unknown_device");
|
||
}
|
||
}
|