Pull more props into interface

This commit is contained in:
RMidhunSuresh 2021-11-18 13:46:01 +05:30
parent 866bef7223
commit eaa31eb8fb
2 changed files with 33 additions and 9 deletions

View File

@ -14,6 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import type {BaseLogger} from "../../logging/BaseLogger";
import type {SettingsStorage} from "../web/dom/SettingsStorage.js";
import type {Clock} from "../web/dom/Clock.js";
import type {History} from "../web/dom/History.js";
import type {OnlineStatus} from "../web/dom/OnlineStatus.js";
import type {Encoding} from "../web/utils/Encoding.js";
export interface IPlatformConfig {
worker: string;
downloadSandbox: string;
@ -26,6 +33,21 @@ export interface IPlatformConfig {
}
}
export interface IPlatformOptions {
development?: boolean;
}
export interface CryptoExtras {
aesjs?: any;
hkdf?: any;
}
export interface IPlatform {
readonly logger: BaseLogger;
readonly settingsStorage: SettingsStorage;
readonly clock: Clock;
readonly encoding: Encoding;
readonly random: () => number;
readonly history: History;
readonly onlineStatus: OnlineStatus;
}

View File

@ -38,7 +38,8 @@ import {downloadInIframe} from "./dom/download.js";
import {Disposables} from "../../utils/Disposables.js";
import {parseHTML} from "./parsehtml.js";
import {handleAvatarError} from "./ui/avatar.js";
import {IPlatformConfig} from "../types/Platform";
import {IPlatform, IPlatformConfig, IPlatformOptions} from "../types/Platform";
import type {BaseLogger} from "../../logging/BaseLogger.js";
function addScript(src) {
return new Promise(function (resolve, reject) {
@ -125,24 +126,25 @@ function adaptUIOnVisualViewportResize(container) {
};
}
export class Platform {
export class Platform implements IPlatform {
public readonly logger: BaseLogger;
public readonly settingsStorage: SettingsStorage = new SettingsStorage("hydrogen_setting_v1_");
public readonly clock: Clock = new Clock();
public readonly encoding: Encoding = new Encoding();
public readonly random: () => number = Math.random;
public readonly history: History = new History();
public readonly onlineStatus: OnlineStatus = new OnlineStatus();
private readonly _config: IPlatformConfig;
private readonly _container: HTMLElement;
constructor(container: HTMLElement, config: IPlatformConfig, cryptoExtras = null, options = null) {
constructor(container: HTMLElement, config: IPlatformConfig, cryptoExtras = null, options?: IPlatformOptions) {
this._config = config;
this._container = container;
this.settingsStorage = new SettingsStorage("hydrogen_setting_v1_");
this.clock = new Clock();
this.encoding = new Encoding();
this.random = Math.random;
if (options?.development) {
this.logger = new ConsoleLogger({platform: this});
} else {
this.logger = new IDBLogger({name: "hydrogen_logs", platform: this});
}
this.history = new History();
this.onlineStatus = new OnlineStatus();
this._serviceWorkerHandler = null;
if (config.serviceWorker && "serviceWorker" in navigator) {
this._serviceWorkerHandler = new ServiceWorkerHandler();