astro/packages/markdown/remark/src/load-plugins.ts

43 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-09-28 15:15:42 +00:00
import { resolve as importMetaResolve } from 'import-meta-resolve';
2022-09-28 15:13:33 +00:00
import path from 'path';
import * as unified from 'unified';
2022-09-28 15:15:42 +00:00
import { pathToFileURL } from 'url';
2022-09-28 15:13:33 +00:00
const cwdUrlStr = pathToFileURL(path.join(process.cwd(), 'package.json')).toString();
async function importPlugin(p: string | unified.Plugin): Promise<unified.Plugin> {
2021-12-22 21:11:05 +00:00
if (typeof p === 'string') {
2022-09-28 15:13:33 +00:00
// Try import from this package first
try {
const importResult = await import(p);
return importResult.default;
} catch {}
// Try import from user project
const resolved = await importMetaResolve(p, cwdUrlStr);
const importResult = await import(resolved);
return importResult.default;
2021-12-22 21:11:05 +00:00
}
return p;
}
export function loadPlugins(
items: (string | [string, any] | unified.Plugin<any[], any> | [unified.Plugin<any[], any>, any])[]
): Promise<[unified.Plugin, any?]>[] {
2021-12-22 21:11:05 +00:00
return items.map((p) => {
return new Promise((resolve, reject) => {
if (Array.isArray(p)) {
const [plugin, opts] = p;
return importPlugin(plugin)
.then((m) => resolve([m, opts]))
2021-12-22 21:11:05 +00:00
.catch((e) => reject(e));
}
2021-12-22 21:11:05 +00:00
return importPlugin(p)
.then((m) => resolve([m]))
2021-12-22 21:11:05 +00:00
.catch((e) => reject(e));
});
});
}