mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* feat(systemjs): move systemjs to grafana core and stop exporting from runtime * feat(plugins): move systemjs to own file, update imports * chore(plugins): call systemjs directly from window as ref can be undefined * chore(plugins): make sure systemjs is imported before its shared dependencies * chore(systemjs): move dependency to root package.json
84 lines
2.9 KiB
TypeScript
84 lines
2.9 KiB
TypeScript
import { config } from '@grafana/runtime';
|
|
|
|
import { transformPluginSourceForCDN } from '../cdn/utils';
|
|
|
|
import { resolveWithCache } from './cache';
|
|
import { LOAD_PLUGIN_CSS_REGEX, JS_CONTENT_TYPE_REGEX, SHARED_DEPENDENCY_PREFIX } from './constants';
|
|
import { SystemJS } from './systemjs';
|
|
import { SystemJSWithLoaderHooks } from './types';
|
|
import { isHostedOnCDN } from './utils';
|
|
|
|
export async function decorateSystemJSFetch(
|
|
systemJSFetch: SystemJSWithLoaderHooks['fetch'],
|
|
url: string,
|
|
options?: Record<string, unknown>
|
|
) {
|
|
const res = await systemJSFetch(url, options);
|
|
const contentType = res.headers.get('content-type') || '';
|
|
|
|
if (JS_CONTENT_TYPE_REGEX.test(contentType)) {
|
|
const source = await res.text();
|
|
let transformedSrc = source;
|
|
|
|
// JS files on the CDN need their asset paths transformed in the source
|
|
if (isHostedOnCDN(res.url)) {
|
|
const cdnTransformedSrc = transformPluginSourceForCDN({ url: res.url, source: transformedSrc });
|
|
return new Response(new Blob([cdnTransformedSrc], { type: 'text/javascript' }));
|
|
}
|
|
|
|
return new Response(new Blob([transformedSrc], { type: 'text/javascript' }));
|
|
}
|
|
return res;
|
|
}
|
|
|
|
export function decorateSystemJSResolve(
|
|
this: SystemJSWithLoaderHooks,
|
|
originalResolve: SystemJSWithLoaderHooks['resolve'],
|
|
id: string,
|
|
parentUrl?: string
|
|
) {
|
|
const isFileSystemModule = id.endsWith('module.js') && !isHostedOnCDN(id);
|
|
|
|
try {
|
|
const url = originalResolve.apply(this, [id, parentUrl]);
|
|
const cleanedUrl = getBackWardsCompatibleUrl(url);
|
|
// Add a cache query param for filesystem module.js requests
|
|
// CDN hosted plugins contain the version in the path so skip
|
|
return isFileSystemModule ? resolveWithCache(cleanedUrl) : cleanedUrl;
|
|
} catch (err) {
|
|
// Provide fallback for old plugins that use `loadPluginCss` to load theme styles
|
|
// Only affect plugins on the filesystem.
|
|
if (LOAD_PLUGIN_CSS_REGEX.test(id)) {
|
|
return `${config.appSubUrl ?? ''}/public/${id}`;
|
|
}
|
|
console.log(`SystemJS: failed to resolve '${id}'`);
|
|
return id;
|
|
}
|
|
}
|
|
|
|
export function decorateSystemJsOnload(err: unknown, id: string) {
|
|
if (id.endsWith('.css') && !err) {
|
|
const module = SystemJS.get(id);
|
|
const styles = module?.default;
|
|
if (styles) {
|
|
document.adoptedStyleSheets = [...document.adoptedStyleSheets, styles];
|
|
}
|
|
}
|
|
}
|
|
|
|
// This function handles the following legacy SystemJS functionality:
|
|
// - strips legacy loader wildcard from urls
|
|
// - support config.defaultExtension for System.register deps that lack an extension (e.g. './my_ctrl')
|
|
function getBackWardsCompatibleUrl(url: string) {
|
|
if (url.startsWith(`${SHARED_DEPENDENCY_PREFIX}:`)) {
|
|
return url;
|
|
}
|
|
if (url.endsWith('!')) {
|
|
url = url.slice(0, -1);
|
|
}
|
|
const systemJSFileExtensions = ['css', 'js', 'json', 'wasm'];
|
|
const hasValidFileExtension = systemJSFileExtensions.some((extensionName) => url.endsWith(extensionName));
|
|
|
|
return hasValidFileExtension ? url : url + '.js';
|
|
}
|