2022-05-23 18:29:16 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 r00ster91 <r00ster91@proton.me>
|
2022-05-26 10:56:53 +02:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
2022-05-23 18:29:16 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import { sleep } from "matrix-js-sdk/src/utils";
|
2022-05-23 18:29:16 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import SettingsStore from "../../../src/settings/SettingsStore";
|
|
|
|
import { SettingLevel } from "../../../src/settings/SettingLevel";
|
2022-05-23 18:29:16 +02:00
|
|
|
import { FontWatcher } from "../../../src/settings/watchers/FontWatcher";
|
|
|
|
import { Action } from "../../../src/dispatcher/actions";
|
|
|
|
import { untilDispatch } from "../../test-utils";
|
2022-05-26 10:56:53 +02:00
|
|
|
import defaultDispatcher from "../../../src/dispatcher/dispatcher";
|
2022-05-23 18:29:16 +02:00
|
|
|
|
2023-11-23 14:04:05 +01:00
|
|
|
async function setSystemFont(font: string | false): Promise<void> {
|
|
|
|
await SettingsStore.setValue("systemFont", null, SettingLevel.DEVICE, font || "");
|
2022-05-26 10:56:53 +02:00
|
|
|
await SettingsStore.setValue("useSystemFont", null, SettingLevel.DEVICE, !!font);
|
2023-11-23 14:04:05 +01:00
|
|
|
await untilDispatch(Action.UpdateSystemFont);
|
|
|
|
await sleep(1); // await the FontWatcher doing its action
|
|
|
|
}
|
|
|
|
|
|
|
|
async function setUseBundledEmojiFont(use: boolean): Promise<void> {
|
|
|
|
await SettingsStore.setValue("useBundledEmojiFont", null, SettingLevel.DEVICE, use);
|
2022-05-23 18:29:16 +02:00
|
|
|
await untilDispatch(Action.UpdateSystemFont);
|
|
|
|
await sleep(1); // await the FontWatcher doing its action
|
|
|
|
}
|
|
|
|
|
2023-06-29 12:30:25 +02:00
|
|
|
const getFontFamily = () => {
|
|
|
|
return document.body.style.getPropertyValue(FontWatcher.FONT_FAMILY_CUSTOM_PROPERTY);
|
|
|
|
};
|
2023-11-23 14:04:05 +01:00
|
|
|
const getEmojiFontFamily = () => {
|
|
|
|
return document.body.style.getPropertyValue(FontWatcher.EMOJI_FONT_FAMILY_CUSTOM_PROPERTY);
|
|
|
|
};
|
2023-06-29 12:30:25 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("FontWatcher", function () {
|
2022-05-26 10:56:53 +02:00
|
|
|
it("should load font on start()", async () => {
|
|
|
|
const watcher = new FontWatcher();
|
|
|
|
await setSystemFont("Font Name");
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""`);
|
2023-06-29 12:30:25 +02:00
|
|
|
await watcher.start();
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""Font Name", Twemoji"`);
|
2022-05-23 18:29:16 +02:00
|
|
|
});
|
|
|
|
|
2022-05-26 10:56:53 +02:00
|
|
|
it("should load font on Action.OnLoggedIn", async () => {
|
|
|
|
await setSystemFont("Font Name");
|
2023-06-29 12:30:25 +02:00
|
|
|
await new FontWatcher().start();
|
|
|
|
document.body.style.removeProperty(FontWatcher.FONT_FAMILY_CUSTOM_PROPERTY); // clear the fontFamily which was by start which we tested already
|
2022-05-26 10:56:53 +02:00
|
|
|
defaultDispatcher.fire(Action.OnLoggedIn, true);
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""Font Name", Twemoji"`);
|
2022-05-23 18:29:16 +02:00
|
|
|
});
|
2022-05-26 10:56:53 +02:00
|
|
|
|
|
|
|
it("should reset font on Action.OnLoggedOut", async () => {
|
|
|
|
await setSystemFont("Font Name");
|
|
|
|
const watcher = new FontWatcher();
|
2023-06-29 12:30:25 +02:00
|
|
|
await watcher.start();
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""Font Name", Twemoji"`);
|
2022-05-26 10:56:53 +02:00
|
|
|
defaultDispatcher.fire(Action.OnLoggedOut, true);
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""`);
|
2022-05-23 18:29:16 +02:00
|
|
|
});
|
2022-05-26 10:56:53 +02:00
|
|
|
|
|
|
|
describe("Sets font as expected", () => {
|
|
|
|
let fontWatcher: FontWatcher;
|
2023-06-29 12:30:25 +02:00
|
|
|
beforeEach(async () => {
|
2022-05-26 10:56:53 +02:00
|
|
|
fontWatcher = new FontWatcher();
|
2023-06-29 12:30:25 +02:00
|
|
|
await fontWatcher.start();
|
2022-05-26 10:56:53 +02:00
|
|
|
});
|
|
|
|
afterEach(() => {
|
|
|
|
fontWatcher.stop();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("encloses the fonts by double quotes and sets them as the system font", async () => {
|
2022-05-26 10:56:53 +02:00
|
|
|
await setSystemFont("Fira Sans Thin, Commodore 64");
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""Fira Sans Thin","Commodore 64", Twemoji"`);
|
2022-05-26 10:56:53 +02:00
|
|
|
});
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not add double quotes if already present and sets the font as the system font", async () => {
|
2022-05-26 10:56:53 +02:00
|
|
|
await setSystemFont(`"Commodore 64"`);
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""Commodore 64", Twemoji"`);
|
2022-05-26 10:56:53 +02:00
|
|
|
});
|
2022-12-12 12:24:14 +01:00
|
|
|
it("trims whitespace, encloses the fonts by double quotes, and sets them as the system font", async () => {
|
2022-05-26 10:56:53 +02:00
|
|
|
await setSystemFont(` Fira Code , "Commodore 64" `);
|
2023-11-27 10:59:09 +01:00
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""Fira Code","Commodore 64", Twemoji"`);
|
2023-06-29 12:30:25 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-11-23 14:04:05 +01:00
|
|
|
describe("Sets bundled emoji font as expected", () => {
|
|
|
|
let fontWatcher: FontWatcher;
|
|
|
|
beforeEach(async () => {
|
|
|
|
await setSystemFont(false);
|
|
|
|
fontWatcher = new FontWatcher();
|
|
|
|
await fontWatcher.start();
|
|
|
|
});
|
|
|
|
afterEach(() => {
|
|
|
|
fontWatcher.stop();
|
|
|
|
});
|
|
|
|
|
2023-11-27 10:59:09 +01:00
|
|
|
it("by default adds Twemoji font", async () => {
|
2023-11-23 14:04:05 +01:00
|
|
|
expect(getEmojiFontFamily()).toMatchInlineSnapshot(`"Twemoji"`);
|
|
|
|
});
|
2023-11-27 10:59:09 +01:00
|
|
|
it("does not add Twemoji font when disabled", async () => {
|
|
|
|
await setUseBundledEmojiFont(false);
|
|
|
|
expect(getEmojiFontFamily()).toMatchInlineSnapshot(`""`);
|
|
|
|
});
|
2023-11-23 14:04:05 +01:00
|
|
|
it("works in conjunction with useSystemFont", async () => {
|
|
|
|
await setSystemFont(`"Commodore 64"`);
|
|
|
|
await setUseBundledEmojiFont(true);
|
|
|
|
expect(getFontFamily()).toMatchInlineSnapshot(`""Commodore 64", Twemoji"`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-06-29 12:30:25 +02:00
|
|
|
describe("Migrates baseFontSize", () => {
|
|
|
|
let watcher: FontWatcher | undefined;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
watcher = new FontWatcher();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
watcher!.stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should not run the migration", async () => {
|
|
|
|
await watcher!.start();
|
|
|
|
expect(SettingsStore.getValue("baseFontSizeV2")).toBe(16);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should migrate to default font size", async () => {
|
|
|
|
await SettingsStore.setValue("baseFontSize", null, SettingLevel.DEVICE, 13);
|
|
|
|
await watcher!.start();
|
|
|
|
expect(SettingsStore.getValue("baseFontSizeV2")).toBe(19);
|
2022-05-26 10:56:53 +02:00
|
|
|
});
|
2022-05-23 18:29:16 +02:00
|
|
|
});
|
|
|
|
});
|