Added extensions (#385)

* inject file importers as extensions

* logging

* updated signature
This commit is contained in:
Peli de Halleux
2017-04-18 16:26:13 -07:00
committed by GitHub
parent c1dadd9568
commit 33012441bc
3 changed files with 41 additions and 27 deletions

28
editor/extension.ts Normal file
View File

@ -0,0 +1,28 @@
/// <reference path="../node_modules/pxt-core/built/pxteditor.d.ts" />
namespace pxt.editor {
initExtensionsAsync = function(opts: pxt.editor.ExtensionOptions): Promise<pxt.editor.ExtensionResult> {
pxt.debug('loading microbit target extensions...')
const res: pxt.editor.ExtensionResult = {
hexFileImporters: [{
id: "blockly",
canImport: data => data.meta.cloudId == "microbit.co.uk" && data.meta.editor == "blockly",
importAsync: (project, data) => project.createProjectAsync({
filesOverride: {
"main.blocks": data.source
}, name: data.meta.name
})
}, {
id: "td",
canImport: data => data.meta.cloudId == "microbit.co.uk" && data.meta.editor == "touchdevelop",
importAsync: (project, data) =>
project.createProjectAsync({
filesOverride: { "main.blocks": "", "main.ts": " " },
name: data.meta.name
}).then(() => project.convertTouchDevelopToTypeScriptAsync(data.source))
.then(text => this.textEditor.overrideFile(text))
}]
};
return Promise.resolve<pxt.editor.ExtensionResult>(res);
}
}

12
editor/tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es5",
"noImplicitAny": true,
"noImplicitReturns": true,
"declaration": true,
"out": "../built/editor.js",
"rootDir": ".",
"newLine": "LF",
"sourceMap": false
}
}