0.1.4-alpha • Published 10 months ago

front-matter-plugin-api-provider v0.1.4-alpha

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Obsidian Front Matter Title Plugin Api Provider

This package provide some functions to get API from to resolve file titles by Front Matter Title which is required to be installed

Installation

npm i front-matter-plugin-api-provider

Get Api Instance

import {getDefer} from "front-matter-plugin-api-provider";

const path = 'Folder/ds1.md';
const defer = getDefer(this.app);
let api = null;
if (defer.isPluginReady()) {
    api = defer.getApi();
} else {
    await defer.awaitPlugin();
    api = defer.getApi();
    //if you want to wait features you can use the following chain
    if (!defer.isFeaturesReady()) {
        await defer.awaitFeatures();
    }
}

or you can use Safe Wrapper

import {getApiSafe} from "front-matter-plugin-api-provider";

const path = 'Folder/ds1.md';
//Wrapper will check
const api = getApiSafe(this.app);

Use Api Instance

Get enabled features

const api: ApiInterface;

//It will return list of enabled features.
const ids = api.getEnabledFeatures();

Get resolver

const api: ApiInterface;

//Get factory and create a resolver for feature.
//WARNING: if you pass disabled feature id, you will get a resolver which returns value by settings for features.
const resolver = api.getResolverFactory().createResolver('#feature-id#');
console.log(resolver.resolve('file.md'));

Get event dispatcher

const api: ApiInterface;

const dispatcher = api.getEventDispatcher();
const event = {
    name: "manager:update",
    cb: console.log
}
//Keep ref to remove listener
const ref = dispatcher.addListener(event);
//Remove listener, if needed
dispatcher.removeListener(ref)
0.1.3-alpha

11 months ago

0.1.4-alpha

10 months ago

0.1.1-alpha

11 months ago

0.1.2-alpha

11 months ago

0.1.0-alpha

11 months ago

0.0.10-alpha

1 year ago

0.0.9-alpha

1 year ago

0.0.8-alpha

1 year ago

0.0.7-alpha

1 year ago

0.0.6-alpha

1 year ago

0.0.5-alpha

1 year ago

0.0.4-alpha

1 year ago

0.0.3-alpha

1 year ago

0.0.2-alpha

1 year ago

0.0.1-alpha

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago