Skip to content

Commit 1d8f78c

Browse files
committed
1231
1 parent 4653426 commit 1d8f78c

File tree

7 files changed

+1322
-9
lines changed

7 files changed

+1322
-9
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# flowchart-angular6
22
一个基于jsplumb的使用angular6写的一个可拖拽的流程图实例(目前已更新到Angular 7版本)
33

4+
### 更新:解决ng-zorro版本更新带来的图标加载问题
5+
46
* 网上找了很久都没有找到用angular实现的可拖拽式的流程图组件,于是就基于jsplumb自己写了一个,实现了一些基本的功能,后续可能会再添加点。
57

68
### demo演示

src/app/core/startup/startup.service.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ import { MenuService, SettingsService, TitleService, ALAIN_I18N_TOKEN } from '@d
66
import { ACLService } from '@delon/acl';
77
import { TranslateService } from '@ngx-translate/core';
88
import { I18NService } from '@core/i18n/i18n.service';
9+
import { NzIconService } from 'ng-zorro-antd';
10+
import { ICONS_AUTO } from '../../../style-icons-auto';
11+
import { ICONS } from '../../../style-icons';
912

1013
@Injectable()
1114
export class StartupService {
1215
constructor(
16+
iconSrv: NzIconService,
1317
private menuService: MenuService,
1418
private translate: TranslateService,
1519
@Inject(ALAIN_I18N_TOKEN) private i18n: I18NService,
@@ -18,7 +22,7 @@ export class StartupService {
1822
private titleService: TitleService,
1923
private httpClient: HttpClient,
2024
private injector: Injector,
21-
) { }
25+
) { iconSrv.addIcon(...ICONS_AUTO, ...ICONS); }
2226

2327
load(): Promise<any> {
2428
return new Promise((resolve, reject) => {

src/app/routes/default/default.component.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, OnInit, } from '@angular/core';
1+
import { Component, OnInit, Renderer2 } from '@angular/core';
22
import $ from 'jquery';
33
import * as d3 from 'd3';
44
declare const jsPlumb: any;
@@ -28,7 +28,7 @@ export class LayoutDefaultComponent implements OnInit {
2828
currentNodeData;
2929
instance;
3030

31-
constructor(private http: _HttpClient, private msg: NzMessageService, private modalService: NzModalService) {
31+
constructor(private http: _HttpClient, private msg: NzMessageService, private modalService: NzModalService, private renderer: Renderer2) {
3232

3333
}
3434

@@ -115,8 +115,8 @@ export class LayoutDefaultComponent implements OnInit {
115115

116116
/* <div id='" + nodeId + "-selectfile' title='详情'><i class='anticon anticon-profile'></i></div> */
117117

118-
$('#' + nodeId).append("<div class='huangcard'><div class='zuo'><div class='title'><strong>" + data.name + "</strong></div><div class='card-content'><i class='anticon anticon-user'></i><span class='mes'>" + data.id + "黄小民</span></div><div class='card-content'><i class='anticon anticon-message'></i><span class='mes'>低质量数据过滤</span></div><div class='card-content'><i class='anticon anticon-clock-circle-o'></i><span class='mes'>执行时间:20min20s</span></div></div><div class='you'><div id='" + nodeId + "-setting' title='参数设置'><i class='anticon anticon-setting'></i></div><div id='" + nodeId + "-inputFile' title='上传文件'><i class='anticon anticon-file-add'></i></div><div id='" + nodeId + "-delete' title='删除'><i class='anticon anticon-delete'></i></div></div></div>")
119-
data.inputFile ? $('#' + nodeId + '-setting').hide() : $('#' + nodeId + '-inputFile').hide();
118+
$('#' + nodeId).append($("<div class='huangcard'><div class='zuo'><div class='title'><strong>" + data.name + "</strong></div><div class='card-content'><i class='anticon anticon-user'></i><span class='mes'>" + data.id + "黄小民</span></div><div class='card-content'><i class='anticon anticon-message'></i><span class='mes'>低质量数据过滤</span></div><div class='card-content'><i class='anticon anticon-clock-circle-o'></i><span class='mes'>执行时间:20min20s</span></div></div><div class='you'><div id='" + nodeId + "-setting' title='参数设置'><i class='anticon anticon-setting'></i></div><div id='" + nodeId + "-inputFile' title='上传文件'><i class='anticon anticon-file-add'></i></div><div id='" + nodeId + "-delete' title='删除'><i class='anticon anticon-delete'></i></div></div></div>"));
119+
/* data.inputFile ? $('#' + nodeId + '-setting').hide() : $('#' + nodeId + '-inputFile').hide(); */
120120
$('#' + nodeId + '-delete').click(function () {
121121
instance.detachAllConnections(nodeId);
122122
instance.deleteEndpoint(nodeId + "-Top");
@@ -135,6 +135,7 @@ export class LayoutDefaultComponent implements OnInit {
135135
}
136136

137137
selectInputfileModal(nodeId, toolId) {
138+
console.log("输入文件选择" + nodeId + 'tool' + toolId)
138139
this.modalService.create({
139140
nzTitle: '输入文件选择',
140141
nzContent: NodeSelectfileComponent,

src/app/routes/node-selectfile/index.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export class NodeSelectfileComponent implements OnInit {
2929
];
3030

3131
ngOnInit() {
32+
console.log('select start')
3233
this.getData();
3334
}
3435

@@ -39,10 +40,10 @@ export class NodeSelectfileComponent implements OnInit {
3940
});
4041
}
4142

42-
checkboxChange(e, list: any[]) {
43+
checkboxChange(e) {
44+
console.log(e)
4345
if (e.type == "checkbox") {
44-
console.log('checkboxChange', list);
45-
this.filelist = list;
46+
this.filelist = e.checkbox;
4647
}
4748
}
4849

src/style-icons-auto.ts

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import {
2+
/* UserOutline,
3+
SelectOutline,
4+
DeleteOutline,
5+
ProfileOutline,
6+
MessageOutline,
7+
ClockCircleOutline,
8+
SettingOutline,
9+
FileAddOutline,
10+
UploadOutline, */
11+
} from '@ant-design/icons-angular/icons';
12+
13+
export const ICONS_AUTO = [
14+
/* UserOutline,
15+
SelectOutline,
16+
DeleteOutline,
17+
ProfileOutline,
18+
MessageOutline,
19+
ClockCircleOutline,
20+
SettingOutline,
21+
FileAddOutline,
22+
UploadOutline, */
23+
];

src/style-icons.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import {
2+
InfoOutline,
3+
BulbOutline,
4+
ProfileOutline,
5+
ExceptionOutline,
6+
LinkOutline,
7+
} from '@ant-design/icons-angular/icons';
8+
9+
export const ICONS = [InfoOutline, BulbOutline, ProfileOutline, ExceptionOutline, LinkOutline];

0 commit comments

Comments
 (0)