|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
import { Component, ElementRef, OnInit, ViewChild } from '@angular/core'; |
|
|
|
|
import { ChangeDetectorRef, Component, ElementRef, OnInit, ViewChild } from '@angular/core'; |
|
|
|
|
import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree'; |
|
|
|
|
import { FacilityInfoInSceneWindow } from 'src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window'; |
|
|
|
|
import { PlanComponent } from '../plan/plan.component'; |
|
|
|
@ -25,7 +25,7 @@ import { MarkTemplate } from 'src/app/babylon/model/data/mark/mark-template-data
|
|
|
|
|
}) |
|
|
|
|
export class LeftDomainComponent implements OnInit { |
|
|
|
|
|
|
|
|
|
constructor(private message: NzMessageService, private element: ElementRef, private http: HttpClient) { } |
|
|
|
|
constructor(private message: NzMessageService, private element: ElementRef, private http: HttpClient, private cd: ChangeDetectorRef) { } |
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.editMode = PlanComponent.instance.editMode |
|
|
|
@ -87,7 +87,13 @@ export class LeftDomainComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
this.FacilityList = list |
|
|
|
|
this.selectFacilityId = null |
|
|
|
|
if (this.beforeFence === 3) { //消防设施
|
|
|
|
|
if (this.beforeFence === 1 || this.beforeFence === 2) { //加油机/油罐设备
|
|
|
|
|
this.FacilityList.forEach(item => { |
|
|
|
|
window.setTimeout(()=>{ |
|
|
|
|
this.textInput(item) |
|
|
|
|
},0) |
|
|
|
|
}) |
|
|
|
|
} else if (this.beforeFence === 3) { //消防设施
|
|
|
|
|
this.handleTreeData(this.FacilityList) |
|
|
|
|
} else if (this.beforeFence === 5 || this.beforeFence === 6) { //初始化 Viewer
|
|
|
|
|
let id: string = this.beforeFence === 5 ? "pipelineViewer" : "orvrViewer" |
|
|
|
@ -207,23 +213,26 @@ export class LeftDomainComponent implements OnInit {
|
|
|
|
|
//编辑模式
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//是否换行
|
|
|
|
|
isLineFeed(str: string):boolean { |
|
|
|
|
if (str) { |
|
|
|
|
let strlen = 0;
|
|
|
|
|
for (var i = 0;i < str.length; i++) { |
|
|
|
|
if(str.charCodeAt(i) > 255) //如果是汉字,则字符串长度加2
|
|
|
|
|
strlen += 2; |
|
|
|
|
else |
|
|
|
|
strlen++; |
|
|
|
|
} |
|
|
|
|
if (strlen > 17) { |
|
|
|
|
return false |
|
|
|
|
} else { |
|
|
|
|
return true |
|
|
|
|
//监听textarea 输入事件
|
|
|
|
|
textInput(item: FacilityInfoUIItem) { |
|
|
|
|
window.setTimeout(()=>{ |
|
|
|
|
let title: HTMLCanvasElement = this.element.nativeElement.querySelector(`#title${item.modelInfo.key}`) |
|
|
|
|
let content: HTMLCanvasElement = this.element.nativeElement.querySelector(`#content${item.modelInfo.key}`) |
|
|
|
|
if (title && content) { |
|
|
|
|
title.style.height = this.getTextareaHeight(item) |
|
|
|
|
title.style.lineHeight = this.getTextareaHeight(item) |
|
|
|
|
content.style.height = this.getTextareaHeight(item) |
|
|
|
|
} |
|
|
|
|
},0) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获取textarea 高度
|
|
|
|
|
getTextareaHeight(item: FacilityInfoUIItem):string { |
|
|
|
|
let html: HTMLCanvasElement = this.element.nativeElement.querySelector(`#num${item.modelInfo.key}`) |
|
|
|
|
if (html) { |
|
|
|
|
return `${html.getBoundingClientRect().height}px` |
|
|
|
|
} else { |
|
|
|
|
return true |
|
|
|
|
return `32px` |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|