mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
42 lines
No EOL
1.3 KiB
JavaScript
42 lines
No EOL
1.3 KiB
JavaScript
(function() {
|
|
function getQueryStringValue (key) {
|
|
return unescape(window.location.search.replace(new RegExp("^(?:.*[&\\?]" + escape(key).replace(/[\.\+\*]/g, "\\$&") + "(?:\\=([^&]*))?)?.*$", "i"), "$1"));
|
|
}
|
|
|
|
// Resolve paths
|
|
// should run the editor and/or plugins from source? (or from the node module)
|
|
if (getQueryStringValue('editor') === 'dev') {
|
|
METADATA.CORE.path = METADATA.CORE.srcPath;
|
|
} else {
|
|
METADATA.CORE.path = '/monaco-editor/' + METADATA.CORE.path;
|
|
}
|
|
METADATA.PLUGINS.forEach(function(plugin) {
|
|
// should run the editor plugins from source? (or from node modules)
|
|
if (plugin.srcPath && getQueryStringValue(plugin.name) === 'dev') {
|
|
plugin.path = plugin.srcPath;
|
|
} else {
|
|
plugin.path = '/monaco-editor/' + plugin.path;
|
|
}
|
|
});
|
|
})();
|
|
|
|
function loadEditor(callback) {
|
|
var pathsConfig = {};
|
|
METADATA.PLUGINS.forEach(function(plugin) {
|
|
pathsConfig[plugin.modulePrefix] = plugin.path;
|
|
});
|
|
pathsConfig['vs'] = METADATA.CORE.path;
|
|
|
|
require.config({
|
|
paths: pathsConfig
|
|
});
|
|
|
|
require(['vs/editor/editor.main'], function() {
|
|
// At this point we've loaded the monaco-editor-core
|
|
require(METADATA.PLUGINS.map(function(plugin) { return plugin.contrib; }), function() {
|
|
// At this point we've loaded all the plugins
|
|
callback();
|
|
// require(['./index'], function() {});
|
|
});
|
|
});
|
|
} |