|
|
|
@ -339,6 +339,8 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
nzCurrent: number = -1; //当前选择 预案节点Index
|
|
|
|
|
isSuspend: boolean = false; //是否暂停 自动切换节点
|
|
|
|
|
timer: any; //定时器
|
|
|
|
|
progressList: number[] = []; //进度条 条/值
|
|
|
|
|
updateTimer: any; //更新进度条定时器
|
|
|
|
|
|
|
|
|
|
//初始化 应急预案模块
|
|
|
|
|
initializePlan() { |
|
|
|
@ -346,14 +348,21 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
this.beforePlanNode = new MarkNodeData(-99, "请选择节点") |
|
|
|
|
this.isSuspend = false //初始化暂停状态
|
|
|
|
|
window.clearTimeout(this.timer) //清除定时器
|
|
|
|
|
this.progressList = [] |
|
|
|
|
window.clearTimeout(this.updateTimer) //清除定时器
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//公用 切换选中节点
|
|
|
|
|
publicToggleNode() { |
|
|
|
|
this.beforePlanNode = this.beforeEmergencyPlan.nodes[this.nzCurrent] |
|
|
|
|
this.leftDomain.selectPlanId = this.beforeEmergencyPlan.id |
|
|
|
|
this.leftDomain.selectNodeId = this.beforePlanNode.id |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id, false, true) |
|
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
|
this.beforePlanNode = this.beforeEmergencyPlan.nodes[this.nzCurrent] |
|
|
|
|
this.leftDomain.selectPlanId = this.beforeEmergencyPlan.id |
|
|
|
|
this.leftDomain.selectNodeId = this.beforePlanNode.id |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id, false, true) |
|
|
|
|
this.beforePlanNode = MarkWindow.instance.currentMarkNodeInfo.nodeData |
|
|
|
|
this.updateProgress() //更新进度条
|
|
|
|
|
resolve(true) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//选中 底部一级节点 开启自动播放
|
|
|
|
@ -363,10 +372,14 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
let isTrue = confirm("即将开始播放节点") |
|
|
|
|
if (isTrue) { |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = 0 |
|
|
|
|
this.beforeEmergencyPlan = item |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
this.updateProgressList().then(res=>{ |
|
|
|
|
this.publicToggleNode().then(data=>{ |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
this.message.info('暂无数据节点'); |
|
|
|
@ -374,31 +387,55 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//自动播放-切换接点
|
|
|
|
|
autoPlay() { |
|
|
|
|
if (this.nzCurrent >= this.beforeEmergencyPlan.nodes.length - 1) { |
|
|
|
|
this.nzCurrent = this.nzCurrent + 1 |
|
|
|
|
this.isSuspend = false //初始化暂停状态
|
|
|
|
|
window.clearTimeout(this.timer) //清除定时器
|
|
|
|
|
this.message.info('已播放至最后一节点'); |
|
|
|
|
//更新进度条 值
|
|
|
|
|
updateProgress() { |
|
|
|
|
if (this.progressList[this.nzCurrent] >= 100) { |
|
|
|
|
this.progressList[this.nzCurrent] = 100 |
|
|
|
|
window.clearTimeout(this.updateTimer) //清除定时器
|
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
let time: number = this.beforePlanNode.getShowTime() |
|
|
|
|
console.log(`所需${time}s`) |
|
|
|
|
let time: number = this.beforePlanNode.getShowTime() || 1 |
|
|
|
|
this.updateTimer = window.setTimeout(()=>{ |
|
|
|
|
this.progressList[this.nzCurrent] = this.progressList[this.nzCurrent] + Math.ceil(100 / time) |
|
|
|
|
this.updateProgress() |
|
|
|
|
},1000) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//更新进度条 条数
|
|
|
|
|
updateProgressList() { |
|
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
|
this.progressList = [] |
|
|
|
|
this.beforeEmergencyPlan.nodes.forEach(item=>{ this.progressList.push(0) }) |
|
|
|
|
resolve(true) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//自动播放-切换接点
|
|
|
|
|
autoPlay() { |
|
|
|
|
let time: number = this.beforePlanNode.getShowTime() || 1 |
|
|
|
|
this.timer = window.setTimeout(()=>{ |
|
|
|
|
if (this.nzCurrent >= this.beforeEmergencyPlan.nodes.length - 1) { |
|
|
|
|
this.isSuspend = false //初始化暂停状态
|
|
|
|
|
window.clearTimeout(this.timer) //清除定时器
|
|
|
|
|
this.message.info('已播放至最后一节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.nzCurrent = this.nzCurrent + 1 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
this.publicToggleNode().then(data=>{ |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
}) |
|
|
|
|
},time * 1000) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点
|
|
|
|
|
changePlanNode(event){ |
|
|
|
|
if (event === this.beforeEmergencyPlan.nodes.length) { |
|
|
|
|
return |
|
|
|
|
if (this.progressList.length != this.beforeEmergencyPlan.nodes.length) { |
|
|
|
|
this.updateProgressList() |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = event |
|
|
|
|
this.progressList[this.nzCurrent] = 0 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -412,10 +449,16 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
this.message.info('目前已经是第一节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if (this.progressList.length != this.beforeEmergencyPlan.nodes.length) { |
|
|
|
|
this.updateProgressList() |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = this.nzCurrent - 1 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
this.progressList[this.nzCurrent] = 0 |
|
|
|
|
this.publicToggleNode().then(data=>{ |
|
|
|
|
//!this.isSuspend? this.autoPlay() : null
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点 暂停
|
|
|
|
@ -424,13 +467,21 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
this.message.info('请选择节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if (this.progressList.length != this.beforeEmergencyPlan.nodes.length) { |
|
|
|
|
this.updateProgressList() |
|
|
|
|
} |
|
|
|
|
this.isSuspend = isSuspend |
|
|
|
|
let msg: string = this.isSuspend? "目前已暂停" : "目前已开始播放" |
|
|
|
|
this.message.info(msg); |
|
|
|
|
if (this.isSuspend) { //暂停
|
|
|
|
|
window.clearTimeout(this.timer) //清除定时器
|
|
|
|
|
window.clearTimeout(this.updateTimer) //清除定时器
|
|
|
|
|
} else { //开启
|
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.progressList.forEach((item,index)=>{ index >= this.nzCurrent? this.progressList[index] = 0 : null }) |
|
|
|
|
MarkWindow.instance.selectMarkNode(this.beforeEmergencyPlan.id, this.beforePlanNode.id, false, true) |
|
|
|
|
this.updateProgress() |
|
|
|
|
this.autoPlay() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -442,9 +493,13 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = 0 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.updateProgressList().then(res=>{ |
|
|
|
|
this.nzCurrent = 0 |
|
|
|
|
this.publicToggleNode().then(data=>{ |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//切换预案节点 下一个
|
|
|
|
@ -457,10 +512,26 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
this.message.info('目前已经是最后一个节点'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if (this.progressList.length != this.beforeEmergencyPlan.nodes.length) { |
|
|
|
|
this.updateProgressList() |
|
|
|
|
} |
|
|
|
|
this.timer? window.clearTimeout(this.timer) : null //清除定时器
|
|
|
|
|
this.updateTimer? window.clearTimeout(this.updateTimer) : null //清除定时器
|
|
|
|
|
this.nzCurrent = this.nzCurrent + 1 |
|
|
|
|
this.publicToggleNode() |
|
|
|
|
!this.isSuspend? this.autoPlay() : null |
|
|
|
|
this.progressList[this.nzCurrent] = 0 |
|
|
|
|
this.publicToggleNode().then(data=>{ |
|
|
|
|
//!this.isSuspend? this.autoPlay() : null
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获取进度条 flex分布
|
|
|
|
|
getProgressFlex(e: MarkNodeData):string { |
|
|
|
|
let length: number = 0 |
|
|
|
|
this.beforeEmergencyPlan.nodes.forEach(item=>{ |
|
|
|
|
length = length + (item.getShowTime() || 1) |
|
|
|
|
}) |
|
|
|
|
let percentage: number = (e.getShowTime() || 1) / length |
|
|
|
|
return `${percentage * 100}%` |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//选中应急预案 设备
|
|
|
|
|