mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
35 lines
994 B
TypeScript
35 lines
994 B
TypeScript
import { RenderResultPluginAsset } from './types';
|
|
|
|
interface Options {
|
|
asHtml: boolean;
|
|
}
|
|
|
|
// Utility function to convert the plugin assets to a list of LINK or SCRIPT tags
|
|
// that can be included in the HEAD tag.
|
|
const assetsToHeaders = (pluginAssets: RenderResultPluginAsset[], options: Options|null = null) => {
|
|
options = { asHtml: false, ...options };
|
|
|
|
const headers: Record<string, string> = {};
|
|
for (let i = 0; i < pluginAssets.length; i++) {
|
|
const asset = pluginAssets[i];
|
|
if (asset.mime === 'text/css') {
|
|
headers[asset.name] = `<link rel="stylesheet" href="pluginAssets/${asset.name}">`;
|
|
} else if (asset.mime === 'application/javascript') {
|
|
// NOT TESTED!!
|
|
headers[asset.name] = `<script type="application/javascript" src="pluginAssets/${asset.name}"></script>`;
|
|
}
|
|
}
|
|
|
|
if (options.asHtml) {
|
|
const output = [];
|
|
for (const name in headers) {
|
|
output.push(headers[name]);
|
|
}
|
|
return output.join('');
|
|
}
|
|
|
|
return headers;
|
|
};
|
|
|
|
export default assetsToHeaders;
|