mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-04-14 21:18:32 +00:00
35 lines
1.5 KiB
TypeScript
35 lines
1.5 KiB
TypeScript
import { type SetupManager, UserMode } from "@/modules/features/SetupManager";
|
|
import type { SetupFeatureHost } from "@lib/serviceFeatures/setupObsidian/types";
|
|
import { EVENT_REQUEST_OPEN_P2P_SETTINGS, EVENT_REQUEST_OPEN_SETUP_URI } from "@lib/events/coreEvents";
|
|
import { eventHub } from "@lib/hub/hub";
|
|
import { fireAndForget } from "@lib/common/utils";
|
|
import type { NecessaryServices } from "@lib/interfaces/ServiceModule";
|
|
|
|
export async function openSetupURI(setupManager: SetupManager) {
|
|
await setupManager.onUseSetupURI(UserMode.Unknown);
|
|
}
|
|
|
|
export async function openP2PSettings(host: SetupFeatureHost, setupManager: SetupManager) {
|
|
return await setupManager.onP2PManualSetup(UserMode.Update, host.services.setting.currentSettings(), false);
|
|
}
|
|
|
|
export function useSetupManagerHandlersFeature(
|
|
host: NecessaryServices<"API" | "UI" | "setting" | "appLifecycle", never>,
|
|
setupManager: SetupManager
|
|
) {
|
|
host.services.appLifecycle.onLoaded.addHandler(() => {
|
|
host.services.API.addCommand({
|
|
id: "livesync-opensetupuri",
|
|
name: "Use the copied setup URI (Formerly Open setup URI)",
|
|
callback: () => fireAndForget(openSetupURI(setupManager)),
|
|
});
|
|
|
|
eventHub.onEvent(EVENT_REQUEST_OPEN_SETUP_URI, () => fireAndForget(() => openSetupURI(setupManager)));
|
|
eventHub.onEvent(EVENT_REQUEST_OPEN_P2P_SETTINGS, () =>
|
|
fireAndForget(() => openP2PSettings(host, setupManager))
|
|
);
|
|
|
|
return Promise.resolve(true);
|
|
});
|
|
}
|