2020-05-13 06:19:08 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 New Vector Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface IParams {
|
|
|
|
// colour parameters
|
|
|
|
bgColor: string;
|
|
|
|
textColor: string;
|
|
|
|
// font styling parameters
|
|
|
|
fontFamily: string;
|
|
|
|
fontWeight: "normal" | "italic" | "bold" | "bolder" | "lighter" | number;
|
|
|
|
|
|
|
|
// positioning parameters
|
|
|
|
isUp: boolean;
|
|
|
|
isLeft: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaults: IParams = {
|
|
|
|
bgColor: "#d00",
|
|
|
|
textColor: "#fff",
|
|
|
|
fontFamily: "sans-serif", // Arial,Verdana,Times New Roman,serif,sans-serif,...
|
|
|
|
fontWeight: "bold", // normal,italic,oblique,bold,bolder,lighter,100,200,300,400,500,600,700,800,900
|
|
|
|
|
|
|
|
isUp: false,
|
|
|
|
isLeft: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Allows dynamic rendering of a circular badge atop the loaded favicon
|
|
|
|
// supports colour, font and basic positioning parameters.
|
2020-05-13 06:23:43 +02:00
|
|
|
// Based upon https://github.com/ejci/favico.js/blob/master/favico.js [MIT license]
|
2020-05-13 06:19:08 +02:00
|
|
|
export default class Favicon {
|
|
|
|
private readonly browser = {
|
|
|
|
ff: typeof window.InstallTrigger !== "undefined",
|
|
|
|
opera: !!window.opera || navigator.userAgent.includes("Opera"),
|
|
|
|
};
|
|
|
|
|
|
|
|
private readonly params: IParams;
|
|
|
|
private readonly canvas: HTMLCanvasElement;
|
|
|
|
private readonly baseImage: HTMLImageElement;
|
2023-05-05 10:08:36 +02:00
|
|
|
private context!: CanvasRenderingContext2D;
|
2020-05-13 06:19:08 +02:00
|
|
|
private icons: HTMLLinkElement[];
|
|
|
|
|
2020-07-21 12:30:28 +02:00
|
|
|
private isReady = false;
|
2020-05-13 06:19:08 +02:00
|
|
|
// callback to run once isReady is asserted, allows for a badge to be queued for when it can be shown
|
2022-07-11 14:22:37 +02:00
|
|
|
private readyCb?: () => void;
|
2020-05-13 06:19:08 +02:00
|
|
|
|
2022-11-23 17:24:36 +01:00
|
|
|
public constructor(params: Partial<IParams> = {}) {
|
2021-06-30 14:28:31 +02:00
|
|
|
this.params = { ...defaults, ...params };
|
2020-05-13 06:19:08 +02:00
|
|
|
|
|
|
|
this.icons = Favicon.getIcons();
|
|
|
|
// create work canvas
|
|
|
|
this.canvas = document.createElement("canvas");
|
|
|
|
// create clone of favicon as a base
|
|
|
|
this.baseImage = document.createElement("img");
|
|
|
|
|
|
|
|
const lastIcon = this.icons[this.icons.length - 1];
|
|
|
|
if (lastIcon.hasAttribute("href")) {
|
|
|
|
this.baseImage.setAttribute("crossOrigin", "anonymous");
|
2022-11-23 17:24:36 +01:00
|
|
|
this.baseImage.onload = (): void => {
|
2020-05-13 06:19:08 +02:00
|
|
|
// get height and width of the favicon
|
2022-12-09 13:28:29 +01:00
|
|
|
this.canvas.height = this.baseImage.height > 0 ? this.baseImage.height : 32;
|
|
|
|
this.canvas.width = this.baseImage.width > 0 ? this.baseImage.width : 32;
|
2023-04-25 10:36:17 +02:00
|
|
|
this.context = this.canvas.getContext("2d")!;
|
2020-05-13 06:19:08 +02:00
|
|
|
this.ready();
|
|
|
|
};
|
2023-04-25 10:36:17 +02:00
|
|
|
this.baseImage.setAttribute("src", lastIcon.getAttribute("href")!);
|
2020-05-13 06:19:08 +02:00
|
|
|
} else {
|
|
|
|
this.canvas.height = this.baseImage.height = 32;
|
|
|
|
this.canvas.width = this.baseImage.width = 32;
|
2023-04-25 10:36:17 +02:00
|
|
|
this.context = this.canvas.getContext("2d")!;
|
2020-05-13 06:19:08 +02:00
|
|
|
this.ready();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
private reset(): void {
|
2020-05-13 06:19:08 +02:00
|
|
|
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
|
|
|
|
this.context.drawImage(this.baseImage, 0, 0, this.canvas.width, this.canvas.height);
|
|
|
|
}
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
private options(
|
|
|
|
n: number | string,
|
|
|
|
params: IParams,
|
|
|
|
): {
|
2022-09-23 10:42:03 +02:00
|
|
|
n: string | number;
|
|
|
|
len: number;
|
|
|
|
x: number;
|
|
|
|
y: number;
|
|
|
|
w: number;
|
|
|
|
h: number;
|
|
|
|
} {
|
2020-05-13 06:19:08 +02:00
|
|
|
const opt = {
|
2022-12-09 13:28:29 +01:00
|
|
|
n: typeof n === "number" ? Math.abs(n as number | 0) : n,
|
2020-05-13 06:19:08 +02:00
|
|
|
len: ("" + n).length,
|
|
|
|
// badge positioning constants as percentages
|
|
|
|
x: 0.4,
|
|
|
|
y: 0.4,
|
|
|
|
w: 0.6,
|
|
|
|
h: 0.6,
|
|
|
|
};
|
|
|
|
|
|
|
|
// apply positional transformations
|
2020-05-14 22:19:54 +02:00
|
|
|
if (params.isUp) {
|
2020-05-13 06:19:08 +02:00
|
|
|
if (opt.y < 0.6) {
|
|
|
|
opt.y = opt.y - 0.4;
|
|
|
|
} else {
|
|
|
|
opt.y = opt.y - 2 * opt.y + (1 - opt.w);
|
|
|
|
}
|
|
|
|
}
|
2020-05-14 22:19:54 +02:00
|
|
|
if (params.isLeft) {
|
2020-05-13 06:19:08 +02:00
|
|
|
if (opt.x < 0.6) {
|
|
|
|
opt.x = opt.x - 0.4;
|
|
|
|
} else {
|
|
|
|
opt.x = opt.x - 2 * opt.x + (1 - opt.h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// scale the position to the canvas
|
|
|
|
opt.x = this.canvas.width * opt.x;
|
|
|
|
opt.y = this.canvas.height * opt.y;
|
|
|
|
opt.w = this.canvas.width * opt.w;
|
|
|
|
opt.h = this.canvas.height * opt.h;
|
|
|
|
return opt;
|
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
private circle(n: number | string, opts?: Partial<IParams>): void {
|
2021-06-30 14:28:31 +02:00
|
|
|
const params = { ...this.params, ...opts };
|
2020-05-14 22:19:54 +02:00
|
|
|
const opt = this.options(n, params);
|
2020-05-13 06:19:08 +02:00
|
|
|
|
|
|
|
let more = false;
|
|
|
|
if (opt.len === 2) {
|
|
|
|
opt.x = opt.x - opt.w * 0.4;
|
|
|
|
opt.w = opt.w * 1.4;
|
|
|
|
more = true;
|
|
|
|
} else if (opt.len >= 3) {
|
|
|
|
opt.x = opt.x - opt.w * 0.65;
|
|
|
|
opt.w = opt.w * 1.65;
|
|
|
|
more = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
|
|
|
|
this.context.drawImage(this.baseImage, 0, 0, this.canvas.width, this.canvas.height);
|
|
|
|
this.context.beginPath();
|
2023-04-06 14:17:51 +02:00
|
|
|
const fontSize = Math.floor(opt.h * (typeof opt.n === "number" && opt.n > 99 ? 0.85 : 1)) + "px";
|
2020-05-14 22:19:54 +02:00
|
|
|
this.context.font = `${params.fontWeight} ${fontSize} ${params.fontFamily}`;
|
2020-05-13 06:19:08 +02:00
|
|
|
this.context.textAlign = "center";
|
|
|
|
|
|
|
|
if (more) {
|
|
|
|
this.context.moveTo(opt.x + opt.w / 2, opt.y);
|
|
|
|
this.context.lineTo(opt.x + opt.w - opt.h / 2, opt.y);
|
|
|
|
this.context.quadraticCurveTo(opt.x + opt.w, opt.y, opt.x + opt.w, opt.y + opt.h / 2);
|
|
|
|
this.context.lineTo(opt.x + opt.w, opt.y + opt.h - opt.h / 2);
|
|
|
|
this.context.quadraticCurveTo(opt.x + opt.w, opt.y + opt.h, opt.x + opt.w - opt.h / 2, opt.y + opt.h);
|
|
|
|
this.context.lineTo(opt.x + opt.h / 2, opt.y + opt.h);
|
|
|
|
this.context.quadraticCurveTo(opt.x, opt.y + opt.h, opt.x, opt.y + opt.h - opt.h / 2);
|
|
|
|
this.context.lineTo(opt.x, opt.y + opt.h / 2);
|
|
|
|
this.context.quadraticCurveTo(opt.x, opt.y, opt.x + opt.h / 2, opt.y);
|
|
|
|
} else {
|
|
|
|
this.context.arc(opt.x + opt.w / 2, opt.y + opt.h / 2, opt.h / 2, 0, 2 * Math.PI);
|
|
|
|
}
|
|
|
|
|
2020-05-14 22:19:54 +02:00
|
|
|
this.context.fillStyle = params.bgColor;
|
2020-05-13 06:19:08 +02:00
|
|
|
this.context.fill();
|
|
|
|
this.context.closePath();
|
|
|
|
this.context.beginPath();
|
|
|
|
this.context.stroke();
|
2020-05-14 22:19:54 +02:00
|
|
|
this.context.fillStyle = params.textColor;
|
2020-05-13 06:19:08 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
if (typeof opt.n === "number" && opt.n > 999) {
|
|
|
|
const count = (opt.n > 9999 ? 9 : Math.floor((opt.n as number) / 1000)) + "k+";
|
2020-05-13 06:19:08 +02:00
|
|
|
this.context.fillText(count, Math.floor(opt.x + opt.w / 2), Math.floor(opt.y + opt.h - opt.h * 0.2));
|
|
|
|
} else {
|
|
|
|
this.context.fillText("" + opt.n, Math.floor(opt.x + opt.w / 2), Math.floor(opt.y + opt.h - opt.h * 0.15));
|
|
|
|
}
|
|
|
|
|
|
|
|
this.context.closePath();
|
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
private ready(): void {
|
2020-05-13 06:19:08 +02:00
|
|
|
if (this.isReady) return;
|
|
|
|
this.isReady = true;
|
2022-07-11 14:22:37 +02:00
|
|
|
this.readyCb?.();
|
2020-05-13 06:19:08 +02:00
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
private setIcon(canvas: HTMLCanvasElement): void {
|
2020-05-13 06:19:08 +02:00
|
|
|
setImmediate(() => {
|
|
|
|
this.setIconSrc(canvas.toDataURL("image/png"));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
private setIconSrc(url: string): void {
|
2020-05-13 06:19:08 +02:00
|
|
|
// if is attached to fav icon
|
|
|
|
if (this.browser.ff || this.browser.opera) {
|
|
|
|
// for FF we need to "recreate" element, attach to dom and remove old <link>
|
|
|
|
const old = this.icons[this.icons.length - 1];
|
|
|
|
const newIcon = window.document.createElement("link");
|
|
|
|
this.icons = [newIcon];
|
|
|
|
newIcon.setAttribute("rel", "icon");
|
|
|
|
newIcon.setAttribute("type", "image/png");
|
|
|
|
window.document.getElementsByTagName("head")[0].appendChild(newIcon);
|
|
|
|
newIcon.setAttribute("href", url);
|
2022-09-23 10:42:03 +02:00
|
|
|
old.parentNode?.removeChild(old);
|
2020-05-13 06:19:08 +02:00
|
|
|
} else {
|
2022-12-09 13:28:29 +01:00
|
|
|
this.icons.forEach((icon) => {
|
2020-05-13 06:19:08 +02:00
|
|
|
icon.setAttribute("href", url);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
public badge(content: number | string, opts?: Partial<IParams>): void {
|
2020-05-13 06:19:08 +02:00
|
|
|
if (!this.isReady) {
|
2022-11-23 17:24:36 +01:00
|
|
|
this.readyCb = (): void => {
|
2020-05-14 22:19:54 +02:00
|
|
|
this.badge(content, opts);
|
2021-06-30 14:28:31 +02:00
|
|
|
};
|
2020-05-13 06:19:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof content === "string" || content > 0) {
|
2020-05-14 22:19:54 +02:00
|
|
|
this.circle(content, opts);
|
2020-05-13 06:19:08 +02:00
|
|
|
} else {
|
|
|
|
this.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setIcon(this.canvas);
|
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
private static getLinks(): HTMLLinkElement[] {
|
2020-05-13 06:19:08 +02:00
|
|
|
const icons: HTMLLinkElement[] = [];
|
|
|
|
const links = window.document.getElementsByTagName("head")[0].getElementsByTagName("link");
|
2022-07-11 14:22:37 +02:00
|
|
|
for (const link of links) {
|
2023-04-25 10:36:17 +02:00
|
|
|
if (link.hasAttribute("rel") && /(^|\s)icon(\s|$)/i.test(link.getAttribute("rel")!)) {
|
2022-07-11 14:22:37 +02:00
|
|
|
icons.push(link);
|
2020-05-13 06:19:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return icons;
|
|
|
|
}
|
|
|
|
|
2022-09-23 10:42:03 +02:00
|
|
|
private static getIcons(): HTMLLinkElement[] {
|
2020-05-13 06:19:08 +02:00
|
|
|
// get favicon link elements
|
|
|
|
let elms = Favicon.getLinks();
|
|
|
|
if (elms.length === 0) {
|
|
|
|
elms = [window.document.createElement("link")];
|
|
|
|
elms[0].setAttribute("rel", "icon");
|
|
|
|
window.document.getElementsByTagName("head")[0].appendChild(elms[0]);
|
|
|
|
}
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
elms.forEach((item) => {
|
2020-05-13 06:19:08 +02:00
|
|
|
item.setAttribute("type", "image/png");
|
|
|
|
});
|
|
|
|
return elms;
|
|
|
|
}
|
|
|
|
}
|