mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			99 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const CKEDITOR = {"js": ["libraries/ckeditor/ckeditor.js"]};
 | 
						|
 | 
						|
const CODE_MIRROR = {
 | 
						|
    js: [
 | 
						|
        "libraries/codemirror/codemirror.js",
 | 
						|
        "libraries/codemirror/addon/mode/loadmode.js",
 | 
						|
        "libraries/codemirror/addon/fold/xml-fold.js",
 | 
						|
        "libraries/codemirror/addon/edit/matchbrackets.js",
 | 
						|
        "libraries/codemirror/addon/edit/matchtags.js",
 | 
						|
        "libraries/codemirror/addon/search/match-highlighter.js",
 | 
						|
        "libraries/codemirror/mode/meta.js",
 | 
						|
        "libraries/codemirror/addon/lint/lint.js",
 | 
						|
        "libraries/codemirror/addon/lint/eslint.js"
 | 
						|
    ],
 | 
						|
    css: [
 | 
						|
        "libraries/codemirror/codemirror.css",
 | 
						|
        "libraries/codemirror/addon/lint/lint.css"
 | 
						|
    ]
 | 
						|
};
 | 
						|
 | 
						|
const ESLINT = {js: ["libraries/eslint.js"]};
 | 
						|
 | 
						|
const COMMONMARK = {js: ["libraries/commonmark.min.js"]};
 | 
						|
 | 
						|
const RELATION_MAP = {
 | 
						|
    js: [
 | 
						|
        "libraries/jsplumb.js",
 | 
						|
        "libraries/panzoom.js"
 | 
						|
    ],
 | 
						|
    css: [
 | 
						|
        "stylesheets/relation_map.css"
 | 
						|
    ]
 | 
						|
};
 | 
						|
 | 
						|
const LINK_MAP = {
 | 
						|
    js: [
 | 
						|
        "libraries/jsplumb.js",
 | 
						|
        "libraries/panzoom.js",
 | 
						|
        "libraries/springy.js"
 | 
						|
    ],
 | 
						|
    css: [
 | 
						|
        "stylesheets/link_map.css"
 | 
						|
    ]
 | 
						|
};
 | 
						|
 | 
						|
const PRINT_THIS = {js: ["libraries/printThis.js"]};
 | 
						|
 | 
						|
const CALENDAR_WIDGET = {css: ["stylesheets/calendar.css"]};
 | 
						|
 | 
						|
async function requireLibrary(library) {
 | 
						|
    if (library.css) {
 | 
						|
        library.css.map(cssUrl => requireCss(cssUrl));
 | 
						|
    }
 | 
						|
 | 
						|
    if (library.js) {
 | 
						|
        for (const scriptUrl of library.js) {
 | 
						|
            await requireScript(scriptUrl);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// we save the promises in case of the same script being required concurrently multiple times
 | 
						|
const loadedScriptPromises = {};
 | 
						|
 | 
						|
async function requireScript(url) {
 | 
						|
    if (!loadedScriptPromises[url]) {
 | 
						|
        loadedScriptPromises[url] = $.ajax({
 | 
						|
            url: url,
 | 
						|
            dataType: "script",
 | 
						|
            cache: true
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    await loadedScriptPromises[url];
 | 
						|
}
 | 
						|
 | 
						|
async function requireCss(url) {
 | 
						|
    const cssLinks = Array
 | 
						|
        .from(document.querySelectorAll('link'))
 | 
						|
        .map(el => el.href);
 | 
						|
 | 
						|
    if (!cssLinks.some(l => l.endsWith(url))) {
 | 
						|
        $('head').append($('<link rel="stylesheet" type="text/css" />').attr('href', url));
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
export default {
 | 
						|
    requireCss,
 | 
						|
    requireLibrary,
 | 
						|
    CKEDITOR,
 | 
						|
    CODE_MIRROR,
 | 
						|
    ESLINT,
 | 
						|
    COMMONMARK,
 | 
						|
    RELATION_MAP,
 | 
						|
    LINK_MAP,
 | 
						|
    PRINT_THIS,
 | 
						|
    CALENDAR_WIDGET
 | 
						|
}
 |