mindnet_obsidian/src/dictionary/ChainRolesLoader.ts
Lars b0efa32c66
Some checks are pending
Node.js build / build (20.x) (push) Waiting to run
Node.js build / build (22.x) (push) Waiting to run
Implement chain roles and templates management in Mindnet plugin
- Added support for loading and reloading chain roles and templates from specified YAML configuration files, enhancing the plugin's flexibility.
- Introduced new settings for defining paths to chain roles and templates, improving user configurability.
- Implemented commands for debugging loaded chain roles and templates, providing users with insights into their configurations.
- Enhanced the Mindnet settings interface to include options for managing chain roles and templates paths, improving user experience with clear descriptions and validation features.
2026-01-18 14:50:17 +01:00

22 lines
689 B
TypeScript

/**
* Loader for chain_roles.yaml dictionary config.
*/
import type { App } from "obsidian";
import { DictionaryLoader } from "./DictionaryLoader";
import { parseChainRoles } from "./parseChainRoles";
import type { ChainRolesConfig, DictionaryLoadResult } from "./types";
export class ChainRolesLoader {
/**
* Load chain roles config with last-known-good fallback.
*/
static async load(
app: App,
vaultRelativePath: string,
lastKnownGood: { data: ChainRolesConfig | null; loadedAt: number | null } | null = null
): Promise<DictionaryLoadResult<ChainRolesConfig>> {
return DictionaryLoader.load(app, vaultRelativePath, parseChainRoles, lastKnownGood);
}
}