我正在尝试在Angular 7应用程序中使用Blockly,但是无法注入Blockly编辑器。
我已经从https://developers.google.com/blockly/guides/get-started/web下载了文件,并将blockly_compressed.js复制到了我的src目录中(并将其重命名为blockly.js)。然后,我尝试从组件访问Blockly并得到错误。
我尝试过的事情:
导入“ ../ blockly.js”
不编译,显示“错误TS2304:找不到名称'Blockly'。”
import { Blockly } from '../blockly'
编译,但是在浏览器中打开应用程序时出现以下错误:
ERROR TypeError: _blockly__WEBPACK_IMPORTED_MODULE_4__.Blockly.inject is not a function
添加具有以下内容的blockly.d.ts文件:
export namespace Blockly {
export function inject(div: string, config: any): void;
}
给出与上述相同的错误。
关于我还能尝试什么的任何建议?
答案 0 :(得分:1)
我的回答不是将XML放入模板本身,而是放入一个变量,该变量无需模块中导入NO_ERRORS_SCHEMA即可启用集成。
步骤1:从Blockly网站下载文件,然后查找:
en.js (或您希望使用的任何语言)
复制并粘贴到src / assets / blockly中。
第2步:在您的angular.json文件中,添加以下内容(位于projects.architect.build.options中):
"scripts": [
"src/assets/blockly/blockly_compressed.js",
"src/assets/blockly/blocks_compressed.js",
"src/assets/blockly/en.js"
]
第3步: 在您的component.ts中:
import { Component, AfterViewInit } from '@angular/core';
declare var Blockly: any
@Component({
template: `<div id="blocklyDiv" style="height: 480px; width: 600px;"></div>`,
selector: 'app-blockly',
styleUrls: ['./blockly.component.scss']
})
export class BlocklyComponent implements AfterViewInit {
ngAfterViewInit(): void {
const toolbox = `
<xml>
<block type="controls_if"></block>
<block type="controls_whileUntil"></block>
</xml>`;
Blockly.inject('blocklyDiv', { toolbox });
}
}
就是这样!
答案 1 :(得分:1)
使用ngx-blockly
代替blockly
,ngx-blockly是blockly的角端口。
按照npm页面中说明的步骤
npm install ngx-blockly --save
答案 2 :(得分:0)
您应该首先将其添加到/proc/sys/net/ipv4/conf/eth0/route_localnet
。
因此,角度CLI可以构建它。
angular.json
答案 3 :(得分:0)
我能够使用下面提到的配置进行设置-
使用npm阻止安装-
npm install git://github.com/google/blockly.git#1.20190419.0
包含在angular.json文件的脚本部分的文件下面-
"scripts": [
"node_modules/blockly/blockly_compressed.js",
"node_modules/blockly/blocks_compressed.js",
"node_modules/blockly/msg/js/en.js",
"src/assets/blockly/custom_blocks.js"
]
在我的组件html文件中的行下方添加了-
<div id="blocklyDiv" style="width: 100%; height: 100%"></div>
<xml id="toolbox" style="display: none">
<category name="Control" colour="120">
<block type="controls_if"></block>
<block type="controls_repeat_ext" disabled="true"></block>
</category>
<category name="Text" colour="230">
<block type="text"></block>
<block type="text_print"></block>
</category>
<category name="Custom" colour="360">
<block type="begin"></block>
<block type="move"></block>
<block type="end"></block>
</category>
</xml>
角度会在此时抛出错误,表示它无法识别块状标签。因此,需要在模块中使用NO_ERRORS_SCHEMA或可以将工具栏XML表示为组件TS文件中的字符串,然后使用它进行块式注入。
我的组件TS文件-
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { ProgramService } from '../services/program.service';
import { IProgram } from '../models/program';
declare var Blockly: any;
@Component({
selector: 'app-program-create',
templateUrl: './program-create.component.html',
styleUrls: ['./program-create.component.scss']
})
export class ProgramCreateComponent implements OnInit {
title: string;
programName: string;
program: IProgram;
workspace: any;
constructor(
private route: ActivatedRoute,
private programService: ProgramService,
private router: Router
) {
this.title = 'Create Visual Program';
this.route.params.subscribe(params => {
this.programName = params['programName'];
this.program = this.programService.getOne(this.programName);
if (!this.program) {
this.program = {
name: this.programName,
xmlData: null
};
}
console.log(
'creating/editing the program - ',
JSON.stringify(this.program)
);
});
}
ngOnInit() {
this.workspace = Blockly.inject('blocklyDiv', {
toolbox: document.getElementById('toolbox'),
scrollbars: false
});
if (this.program.xmlData) {
this.workspace.clear();
Blockly.Xml.domToWorkspace(
Blockly.Xml.textToDom(this.program.xmlData),
this.workspace
);
}
}
saveProgram(): void {
this.program.xmlData = Blockly.Xml.domToText(
Blockly.Xml.workspaceToDom(this.workspace)
);
console.log('saving the program - ', JSON.stringify(this.program));
this.programService.upsertOne(this.program);
this.router.navigate(['listProgram']);
}
}
我在这里写了一篇文章对此进行了详细解释-Integrate Google Blockly with Angular
答案 4 :(得分:-1)
我认为您正在使用@ angular / cli。
第1步:阻止安装
npm install blockly
第2步:将脚本添加到架构师节点下的angular.json
:
"scripts": [
"node_modules/blockly/blockly_compressed.js",
"node_modules/blockly/blocks_compressed.js",
"node_modules/blockly/msg/js/en.js"
]
第3步:将NO_ERRORS_SCHEMA
添加到您的AppModule中(这样您就可以在组件中定义自定义标签了)
@NgModule({
imports: [ BrowserModule, AppRoutingModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ],
exports: [AppComponent],
schemas: [NO_ERRORS_SCHEMA]
})
export class AppModule {
}
第4步:创建一个组件,将Blockly声明为any
,并实现AfterViewInit
,以便您可以访问DOM中与Blockly相关的元素:
import { Component, AfterViewInit, ViewChild, ElementRef } from '@angular/core';
declare var Blockly: any;
@Component({
selector: 'app-root',
template: `
<div id="blocklyDiv" style="height: 480px; width: 600px;"></div>
<xml id="toolbox" #toolbox style="display: none">
<block type="controls_if"></block>
<block type="logic_compare"></block>
<block type="controls_repeat_ext"></block>
<block type="math_number"></block>
<block type="math_arithmetic"></block>
<block type="text"></block>
<block type="text_print"></block>
</xml>
`
})
export class AppComponent implements AfterViewInit {
workspace: any;
@ViewChild('toolbox') toolbox: ElementRef;
ngAfterViewInit(): void {
this.workspace = Blockly.inject('blocklyDiv',
{toolbox: this.toolbox.nativeElement });
}
}
注意:NPM中的Blockly软件包的版本为v1.0,而最新版本为v1.2。要使用最新版本,只需下载该库,将其放在已知目录中,然后修复脚本引用即可(第2步)。