mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-24 13:32:59 +00:00
92 lines
3.3 KiB
TypeScript
92 lines
3.3 KiB
TypeScript
import { LOG_LEVEL_NOTICE, LOG_LEVEL_VERBOSE, Logger } from "octagonal-wheels/common/logger";
|
|
import type { AnyEntry, FilePathWithPrefix } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
|
import type { IMinimumLiveSyncCommands, LiveSyncBaseCore } from "@/LiveSyncBaseCore";
|
|
import { stripAllPrefixes } from "@vrtmrz/livesync-commonlib/compat/string_and_binary/path";
|
|
import { createInstanceLogFunction } from "@vrtmrz/livesync-commonlib/compat/services/lib/logUtils";
|
|
import type { ServiceContext } from "@vrtmrz/livesync-commonlib/context";
|
|
|
|
export abstract class AbstractModule<
|
|
T extends LiveSyncBaseCore<ServiceContext, IMinimumLiveSyncCommands> = LiveSyncBaseCore<
|
|
ServiceContext,
|
|
IMinimumLiveSyncCommands
|
|
>,
|
|
> {
|
|
_log = createInstanceLogFunction(this.constructor.name, this.services.API);
|
|
get services() {
|
|
if (!this.core._services) {
|
|
throw new Error("Services are not ready yet.");
|
|
}
|
|
return this.core._services;
|
|
}
|
|
|
|
addCommand = this.services.API.addCommand.bind(this.services.API);
|
|
registerView = this.services.API.registerWindow.bind(this.services.API);
|
|
addRibbonIcon = this.services.API.addRibbonIcon.bind(this.services.API);
|
|
registerObsidianProtocolHandler = this.services.API.registerProtocolHandler.bind(this.services.API);
|
|
|
|
get localDatabase() {
|
|
return this.core.localDatabase;
|
|
}
|
|
get settings() {
|
|
return this.core.settings;
|
|
}
|
|
set settings(value) {
|
|
this.core.settings = value;
|
|
}
|
|
|
|
getPath(entry: AnyEntry): FilePathWithPrefix {
|
|
return this.services.path.getPath(entry);
|
|
}
|
|
|
|
getPathWithoutPrefix(entry: AnyEntry): FilePathWithPrefix {
|
|
return stripAllPrefixes(this.services.path.getPath(entry));
|
|
}
|
|
|
|
onBindFunction(core: T, services: typeof core.services) {
|
|
// Override if needed.
|
|
}
|
|
constructor(public core: T) {
|
|
Logger(`[${this.constructor.name}] Loaded`, LOG_LEVEL_VERBOSE);
|
|
}
|
|
saveSettings(): Promise<void> {
|
|
return this.core.services.setting.saveSettingData();
|
|
}
|
|
|
|
addTestResult(key: string, value: boolean, summary?: string, message?: string) {
|
|
this.services.test.addTestResult(`${this.constructor.name}`, key, value, summary, message);
|
|
}
|
|
testDone(result: boolean = true) {
|
|
return Promise.resolve(result);
|
|
}
|
|
testFail(message: string) {
|
|
this._log(message, LOG_LEVEL_NOTICE);
|
|
return this.testDone(false);
|
|
}
|
|
|
|
// async _test(key: string, process: () => Promise<any>) {
|
|
// this._log(`Testing ${key}`, LOG_LEVEL_VERBOSE);
|
|
// try {
|
|
// const ret = await process();
|
|
// if (ret !== true) {
|
|
// this.addTestResult(key, false, ret.toString());
|
|
// return this.testFail(`${key} failed: ${ret}`);
|
|
// }
|
|
// this.addTestResult(key, true, "");
|
|
// } catch (ex: any) {
|
|
// this.addTestResult(key, false, "Failed by Exception", ex.toString());
|
|
// return this.testFail(`${key} failed: ${ex}`);
|
|
// }
|
|
// return this.testDone();
|
|
// }
|
|
|
|
isMainReady() {
|
|
return this.services.appLifecycle.isReady();
|
|
}
|
|
isMainSuspended() {
|
|
return this.services.appLifecycle.isSuspended();
|
|
}
|
|
isDatabaseReady() {
|
|
return this.services.database.isDatabaseReady();
|
|
}
|
|
}
|