mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { clearPluginSettingsCache } from './pluginSettings';
|
|
|
|
const cache: Record<string, string> = {};
|
|
const initializedAt: number = Date.now();
|
|
|
|
type CacheablePlugin = {
|
|
path: string;
|
|
version: string;
|
|
};
|
|
|
|
export function registerPluginInCache({ path, version }: CacheablePlugin): void {
|
|
if (!cache[path]) {
|
|
cache[path] = encodeURI(version);
|
|
}
|
|
}
|
|
|
|
export function invalidatePluginInCache(pluginId: string): void {
|
|
const path = `plugins/${pluginId}/module`;
|
|
if (cache[path]) {
|
|
delete cache[path];
|
|
}
|
|
clearPluginSettingsCache(pluginId);
|
|
}
|
|
|
|
export function locateWithCache(load: { address: string }, defaultBust = initializedAt): string {
|
|
const { address } = load;
|
|
const path = extractPath(address);
|
|
|
|
if (!path) {
|
|
return `${address}?_cache=${defaultBust}`;
|
|
}
|
|
|
|
const version = cache[path];
|
|
const bust = version || defaultBust;
|
|
return `${address}?_cache=${bust}`;
|
|
}
|
|
|
|
function extractPath(address: string): string | undefined {
|
|
const match = /\/public\/(plugins\/.+\/module)\.js/i.exec(address);
|
|
if (!match) {
|
|
return;
|
|
}
|
|
const [_, path] = match;
|
|
if (!path) {
|
|
return;
|
|
}
|
|
return path;
|
|
}
|