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';
|
2021-09-03 17:42:20 +00:00
|
|
|
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();
|
2021-07-01 16:55:22 +00:00
|
|
|
|
2022-02-04 18:49:50 +00:00
|
|
|
async function importPlugin(p: string | unified.Plugin): Promise<unified.Plugin> {
|
2021-07-01 16:55:22 +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);
|
2022-02-04 18:49:50 +00:00
|
|
|
return importResult.default;
|
2021-07-01 16:55:22 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 18:49:50 +00:00
|
|
|
return p;
|
2021-07-01 16:55:22 +00:00
|
|
|
}
|
|
|
|
|
2022-04-11 23:01:12 +00:00
|
|
|
export function loadPlugins(
|
|
|
|
items: (string | [string, any] | unified.Plugin<any[], any> | [unified.Plugin<any[], any>, any])[]
|
|
|
|
): Promise<[unified.Plugin, any?]>[] {
|
2021-07-01 16:55:22 +00:00
|
|
|
return items.map((p) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (Array.isArray(p)) {
|
|
|
|
const [plugin, opts] = p;
|
|
|
|
return importPlugin(plugin)
|
2022-02-04 18:49:50 +00:00
|
|
|
.then((m) => resolve([m, opts]))
|
2021-07-01 16:55:22 +00:00
|
|
|
.catch((e) => reject(e));
|
|
|
|
}
|
|
|
|
|
|
|
|
return importPlugin(p)
|
2022-02-04 18:49:50 +00:00
|
|
|
.then((m) => resolve([m]))
|
2021-07-01 16:55:22 +00:00
|
|
|
.catch((e) => reject(e));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|