2022-11-15 18:47:16 +08:00
|
|
|
|
<style>
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
2022-12-23 16:17:22 +08:00
|
|
|
|
<div id="leftDiv" class="col-sm-12 col-xl-6">
|
2022-12-26 18:32:21 +08:00
|
|
|
|
|
2022-11-15 18:47:16 +08:00
|
|
|
|
</div>
|
2022-12-23 16:17:22 +08:00
|
|
|
|
<div id="rightDiv" class="col-sm-12 col-xl-6">
|
|
|
|
|
|
2022-11-15 18:47:16 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-12-26 18:32:21 +08:00
|
|
|
|
<!-- Modal center Add -->
|
2023-02-14 15:16:11 +08:00
|
|
|
|
<div class="modal fade" id="lightSchModal" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="static"
|
|
|
|
|
data-keyboard="false">
|
2022-12-26 18:32:21 +08:00
|
|
|
|
<div class="modal-dialog modal-dialog-centered" role="document" style="min-width:60%">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<h4 class="modal-title">
|
|
|
|
|
燈控排程
|
|
|
|
|
</h4>
|
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
|
<span aria-hidden="true"><i class="fal fa-times"></i></span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
2023-01-13 16:49:55 +08:00
|
|
|
|
<!--<table id="lightSchTable" class="table table-bordered table-striped text-center m-0 w-100">
|
2023-02-14 15:16:11 +08:00
|
|
|
|
</table>-->
|
2023-01-13 16:49:55 +08:00
|
|
|
|
<div id="lightSchBlock" style="height:60vh"></div>
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
2022-12-26 18:32:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">關閉</button>
|
|
|
|
|
<button type="button" id="lightSchSavBtn" class="btn btn-primary">儲存</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-11-15 18:47:16 +08:00
|
|
|
|
<script>
|
2022-11-25 18:46:40 +08:00
|
|
|
|
var allDevList = []; //全設備清單
|
2023-01-05 18:37:12 +08:00
|
|
|
|
var subDeviceData = [];
|
2022-12-31 18:03:16 +08:00
|
|
|
|
var heatMap = null;
|
2023-01-07 17:57:47 +08:00
|
|
|
|
var buildMenuData = {};
|
2023-01-13 16:49:55 +08:00
|
|
|
|
var forgeInvType = null;
|
|
|
|
|
var forgeInvTypeDef = null;
|
2022-12-29 16:03:58 +08:00
|
|
|
|
|
2022-11-15 18:47:16 +08:00
|
|
|
|
$(function () {
|
2022-12-26 18:32:21 +08:00
|
|
|
|
getBuildMenu((arr, data) => {
|
2023-02-17 11:01:29 +08:00
|
|
|
|
// console.log(arr)
|
2023-01-07 17:57:47 +08:00
|
|
|
|
buildMenuData = data;
|
2022-12-23 16:17:22 +08:00
|
|
|
|
if (arr.indexOf(4) != -1) {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
getFloDevList(arr[0] == 4 ? "left" : "right");
|
2022-12-23 16:17:22 +08:00
|
|
|
|
setLightColor();
|
|
|
|
|
}
|
2023-01-03 16:47:23 +08:00
|
|
|
|
if (arr.indexOf(3) != -1) {
|
2022-12-27 18:44:22 +08:00
|
|
|
|
getHotspotPoint(() => {
|
|
|
|
|
show3DModel(data.urn_3D);
|
2023-01-13 16:49:55 +08:00
|
|
|
|
getInviForge();
|
2022-12-27 18:44:22 +08:00
|
|
|
|
});
|
2022-12-23 16:17:22 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2022-11-15 18:47:16 +08:00
|
|
|
|
})
|
|
|
|
|
|
2022-12-26 18:32:21 +08:00
|
|
|
|
// 依據 drawing type 決定呈現畫面
|
|
|
|
|
function getHtmlByType(type = 0, data = {}) {
|
2022-12-23 16:17:22 +08:00
|
|
|
|
let strHtml = ``;
|
|
|
|
|
switch (type) {
|
|
|
|
|
case 2:
|
2022-12-26 18:32:21 +08:00
|
|
|
|
strHtml = `<div style="height:85vh">
|
2022-12-23 16:17:22 +08:00
|
|
|
|
<iframe src="${data.system_url}" width="100%" height="100%"></iframe>
|
|
|
|
|
</div>`;
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
strHtml = `<div class="d-flex mb-4" style="gap:15px">
|
2023-01-05 18:37:12 +08:00
|
|
|
|
${setTopLight()}
|
2022-12-23 16:17:22 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-12 p-0" id="floDevList">
|
|
|
|
|
|
|
|
|
|
</div>`;
|
|
|
|
|
break;
|
2023-01-03 16:47:23 +08:00
|
|
|
|
case 3:
|
2023-01-09 19:15:27 +08:00
|
|
|
|
strHtml = `<div class="d-flex mb-4" style="gap:15px">
|
|
|
|
|
${setTopHeatBar()}
|
|
|
|
|
</div>
|
|
|
|
|
<div name="forgeViewer" style="height:85vh;"></div>`;
|
2022-12-23 16:17:22 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return strHtml;
|
|
|
|
|
}
|
2022-11-23 17:19:28 +08:00
|
|
|
|
//baja 訂閱設備
|
|
|
|
|
function subDevice() {
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
|
|
|
|
let myBaja = new subscriptionDevices();
|
|
|
|
|
var ordPath = {
|
|
|
|
|
"area_tag": pageAct.AreaTag,
|
|
|
|
|
"building_tag": pageAct.buiTag,
|
|
|
|
|
"system_tag": pageAct.sysMainTag,
|
|
|
|
|
"name_tag": pageAct.sysSubTag,
|
|
|
|
|
}
|
|
|
|
|
myBaja.setSubscribeDevicesByBql(ordPath);
|
|
|
|
|
myBaja.setSubscribeDevicesCallBack(function (data) {
|
2023-02-22 10:33:35 +08:00
|
|
|
|
// console.log(data)
|
2023-01-03 16:47:23 +08:00
|
|
|
|
let matchDevice = allDevList.filter(x => x.device_number == data.device_number_full)[0];
|
|
|
|
|
if (!matchDevice) {
|
|
|
|
|
return false;
|
2022-12-08 17:27:32 +08:00
|
|
|
|
}
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
//將訂閱值塞入 subDeviceData
|
|
|
|
|
if (subDeviceData.findIndex(x => x.device_number == matchDevice.device_number) == -1) {
|
|
|
|
|
let obj = {};
|
|
|
|
|
obj.device_number = matchDevice.device_number;
|
|
|
|
|
obj.dbid = matchDevice.forge_dbid;
|
|
|
|
|
subDeviceData.push(obj)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let subData = subDeviceData.filter(x => x.device_number == matchDevice.device_number)[0];
|
|
|
|
|
|
|
|
|
|
if (subData) {
|
|
|
|
|
subData[data.point_name] = data.value;
|
|
|
|
|
}
|
2022-12-22 14:27:17 +08:00
|
|
|
|
|
2023-01-03 16:47:23 +08:00
|
|
|
|
let norDevPoiName = matchDevice.device_normal_point_name;
|
|
|
|
|
let cloDevPoiName = matchDevice.device_close_point_name;
|
|
|
|
|
let errDevPoiName = matchDevice.device_error_point_name;
|
|
|
|
|
|
2023-02-18 21:00:48 +08:00
|
|
|
|
if (data.point_name == "SSC") {
|
|
|
|
|
const lightOn = data.value.includes("true")
|
|
|
|
|
setLightOpenOrClose(lightOn, matchDevice.device_guid);
|
|
|
|
|
if (lightOn) {
|
|
|
|
|
setLightValues(matchDevice.device_guid, 200, 0xe1cf18);
|
|
|
|
|
} else {
|
|
|
|
|
setLightValues(matchDevice.device_guid, 0, 0xe1cf18);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-03 16:47:23 +08:00
|
|
|
|
if (data.point_name == "Temp") {
|
|
|
|
|
heatMap?.changeTemp(data.device_number_full, !isNaN(parseInt(data.value)) ? parseInt(data.value) : 0);
|
|
|
|
|
let devIdx = allDevList.findIndex(x => x.device_number == data.device_number_full);
|
|
|
|
|
allDevList[devIdx]._temp = !isNaN(parseInt(data.value)) ? parseInt(data.value) : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data.point_name == norDevPoiName && data.value == matchDevice.device_normal_point_value) {
|
|
|
|
|
//顯示正常燈號
|
|
|
|
|
$(`#${matchDevice.device_number}_status`).attr("data-light-type", "normal").data("light-type", "normal");
|
|
|
|
|
} else if (data.point_name == cloDevPoiName && data.value == matchDevice.device_close_point_value) {
|
|
|
|
|
$(`#${matchDevice.device_number}_status`).attr("data-light-type", "close").data("light-type", "close");
|
|
|
|
|
} else if (data.point_name == errDevPoiName && data.value == matchDevice.device_error_point_value) {
|
|
|
|
|
$(`#${matchDevice.device_number}_status`).attr("data-light-type", "error").data("light-type", "error");
|
|
|
|
|
}
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
2023-01-03 16:47:23 +08:00
|
|
|
|
setLightColor();
|
2023-01-05 18:37:12 +08:00
|
|
|
|
setForgeHotSpotColor(matchDevice);
|
2023-01-07 17:57:47 +08:00
|
|
|
|
lightDevForgeSpotLig(matchDevice)
|
2023-01-06 18:39:55 +08:00
|
|
|
|
// 從設備訂閱更新每個設備卡片即時點位
|
|
|
|
|
setDevItemPoiValBySub(data);
|
2023-01-03 16:47:23 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
myBaja.setSubscribeDeviceEndCallBack(function (data) {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
endPageLoading();
|
2023-01-10 18:39:07 +08:00
|
|
|
|
if (data.findIndex(x => x.point_name == "Temp") != -1) {
|
|
|
|
|
// 顯示溫度條
|
|
|
|
|
showHeat("[name=forgeHeatBar]");
|
|
|
|
|
}
|
2023-01-03 16:47:23 +08:00
|
|
|
|
});
|
|
|
|
|
|
2022-11-23 15:38:52 +08:00
|
|
|
|
}
|
2023-01-09 19:15:27 +08:00
|
|
|
|
|
2023-01-07 17:57:47 +08:00
|
|
|
|
function lightDevForgeSpotLig(devObj) {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
|
|
|
|
|
2023-01-07 17:57:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-06 18:39:55 +08:00
|
|
|
|
// 從設備訂閱更新每個設備卡片即時點位
|
2023-02-14 15:16:11 +08:00
|
|
|
|
function setDevItemPoiValBySub(data) {
|
|
|
|
|
|
2023-01-06 18:39:55 +08:00
|
|
|
|
let pointSpan = $(`.card.device-wrap[data-number=${data.device_number_full}] span[name=devItemPoiVal]`);
|
|
|
|
|
if (pointSpan && pointSpan.data("point") == data.point_name) {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
// console.log(data)
|
2023-01-06 18:39:55 +08:00
|
|
|
|
pointSpan.text(data.value);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-05 18:37:12 +08:00
|
|
|
|
|
2022-11-21 18:47:47 +08:00
|
|
|
|
function setLightColor() {
|
|
|
|
|
$("[data-light-type]").each((index, ele) => {
|
|
|
|
|
let type = $(ele).data("light-type");
|
2022-11-23 17:19:28 +08:00
|
|
|
|
let isFlashing = false;
|
2022-11-21 18:47:47 +08:00
|
|
|
|
let color = "#000";
|
|
|
|
|
switch (type) {
|
|
|
|
|
case "normal":
|
|
|
|
|
color = pageAct.sysSubObj.device_normal_color ?? "var(--theme-success)";
|
2022-11-25 18:46:40 +08:00
|
|
|
|
isFlashing = pageAct.sysSubObj.device_normal_flashing == "1";
|
2022-11-21 18:47:47 +08:00
|
|
|
|
break;
|
|
|
|
|
case "close":
|
|
|
|
|
color = pageAct.sysSubObj.device_close_color ?? "var(--theme-secondary)";
|
2022-11-25 18:46:40 +08:00
|
|
|
|
isFlashing = pageAct.sysSubObj.device_close_flashing == "1";
|
2022-11-21 18:47:47 +08:00
|
|
|
|
break;
|
|
|
|
|
case "error":
|
|
|
|
|
color = pageAct.sysSubObj.device_error_color ?? "var(--theme-danger)";
|
2022-11-25 18:46:40 +08:00
|
|
|
|
isFlashing = pageAct.sysSubObj.device_error_flashing == "1";
|
2022-11-21 18:47:47 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
$(ele).css("background-color", color);
|
2022-11-25 18:46:40 +08:00
|
|
|
|
//是否閃爍
|
2022-11-23 17:19:28 +08:00
|
|
|
|
if (isFlashing) {
|
|
|
|
|
$(ele).parents(".card.device-wrap").addClass("light-flash");
|
2023-01-11 18:37:58 +08:00
|
|
|
|
} else {
|
|
|
|
|
$(ele).parents(".card.device-wrap").removeClass("light-flash");
|
2022-11-23 17:19:28 +08:00
|
|
|
|
}
|
2022-11-21 18:47:47 +08:00
|
|
|
|
})
|
2022-11-18 18:30:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
// 設置昇位圖上方 燈號
|
|
|
|
|
function setTopLight() {
|
|
|
|
|
let sysSubObj = pageAct.sysSubObj;
|
|
|
|
|
let strHtml = ``;
|
|
|
|
|
if (sysSubObj.device_normal_point_name != null && sysSubObj.device_normal_point_value != null) {
|
|
|
|
|
strHtml += ` <div class="row m-0 align-items-center">
|
|
|
|
|
<span id="sysNorLight" class="circle-light mr-2 " data-light-type="normal"></span>
|
|
|
|
|
<label class="mb-0">${sysSubObj.device_normal_text}</label>
|
|
|
|
|
</div>`;
|
|
|
|
|
}
|
|
|
|
|
if (sysSubObj.device_close_point_name != null && sysSubObj.device_close_point_value != null) {
|
|
|
|
|
strHtml += ` <div class="row m-0 align-items-center">
|
|
|
|
|
<span id="sysCloLight" class="circle-light mr-2" data-light-type="close"></span>
|
|
|
|
|
<label class="mb-0">${sysSubObj.device_close_text}</label>
|
|
|
|
|
</div>`;
|
|
|
|
|
}
|
|
|
|
|
if (sysSubObj.device_error_point_name != null && sysSubObj.device_error_point_value != null) {
|
|
|
|
|
strHtml += ` <div class="row m-0 align-items-center">
|
|
|
|
|
<span id="sysErrLight" class="circle-light mr-2" data-light-type="error"></span>
|
|
|
|
|
<label class="mb-0">${sysSubObj.device_error_text}</label>
|
|
|
|
|
</div>`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return strHtml;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-13 16:49:55 +08:00
|
|
|
|
function setLightSchBlcok(obj) {
|
|
|
|
|
let devNum = $(obj).parents(".device-wrap").data("number");
|
|
|
|
|
let devPath = devNum.replaceAll("_", "/");
|
|
|
|
|
let iframe = `<iframe src="/ord?station:%7Cslot:/${devPath}/Sch|view:?fullScreen=true" style="min-height:100px;width:100%;height:100%"></iframe>`
|
|
|
|
|
$("#lightSchBlock").html(iframe);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
// forge 3D 異常點位變紅色
|
|
|
|
|
function setForgeHotSpotColor(device) {
|
|
|
|
|
let subData = subDeviceData.filter(x => x.device_number == device.device_number)[0]
|
|
|
|
|
if (subData && subData[device.device_error_point_name] == device.device_error_point_value && !isNaN(parseInt(device.spriteDbid))) {
|
|
|
|
|
changeColorForHotspot(parseInt(device.spriteDbid), "error");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-06 18:39:55 +08:00
|
|
|
|
// 取得昇位圖點位 (deviceItem)
|
|
|
|
|
function getRiserPoiObj() {
|
|
|
|
|
let tarDevItem = pageAct.devItems?.filter(x => x.is_show_riserDiagram == 1);
|
|
|
|
|
if (tarDevItem && tarDevItem[0]) {
|
|
|
|
|
return tarDevItem[0];
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
// 取得設備列表 並繪製卡片
|
2023-01-07 17:57:47 +08:00
|
|
|
|
function getFloDevList(position = "left") {
|
2022-11-16 14:53:22 +08:00
|
|
|
|
let url = baseApiUrl + "/api/Device/GetDeviceList";
|
|
|
|
|
let sendData = {
|
2022-11-17 15:32:39 +08:00
|
|
|
|
sub_system_tag: pageAct.sysSubTag,
|
2022-11-16 14:53:22 +08:00
|
|
|
|
building_tag: pageAct.buiTag,
|
|
|
|
|
floor_tag: pageAct.floTag,
|
|
|
|
|
};
|
|
|
|
|
objSendData.Data = sendData;
|
|
|
|
|
ytAjax = new YourTeam.Ajax(url, objSendData, function (res) {
|
|
|
|
|
if (!res || res.code != "0000" || !res.data) {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
let strHtml = ``;
|
|
|
|
|
$.each(res.data, (index, floObj) => {
|
2023-02-17 11:01:29 +08:00
|
|
|
|
strHtml += `<div class='d-flex justify-content-start mb-5'>`
|
2022-12-22 14:27:17 +08:00
|
|
|
|
strHtml += `<button id="floItemBtn${floObj.full_name}" type="button" class="btn btn-primary waves-effect waves-themed mr-5 mt-1 align-self-start" >${floObj.full_name}</button>`
|
|
|
|
|
strHtml += `<div class="col p-0 d-grid grid-gap-5 grid-temp-col-c" style="--c-grid-temp-col:repeat(auto-fill,minmax(250px,1fr))">`
|
2022-11-16 14:53:22 +08:00
|
|
|
|
$.each(floObj.device_list, (index2, devObj) => {
|
2022-11-23 15:38:52 +08:00
|
|
|
|
allDevList.push(devObj);
|
2023-01-06 18:39:55 +08:00
|
|
|
|
let devItem = getRiserPoiObj();
|
2023-01-07 17:57:47 +08:00
|
|
|
|
strHtml += `<div class="card m-1 border device-wrap" data-number="${devObj.device_number}" data-position="${position}">
|
2022-11-21 18:47:47 +08:00
|
|
|
|
<div class="card-body p-2">
|
|
|
|
|
<div class="d-flex mb-2">
|
|
|
|
|
<div class="mr-5 cur-poi">
|
|
|
|
|
<span class="d-inline-block mr-3">
|
2022-12-26 18:32:21 +08:00
|
|
|
|
<img src="${baseImgUrl + varPathDevIcon + devObj.device_image}" class="profile-image rounded-circle" onerror="defDev(this)" alt="...">
|
2022-11-21 18:47:47 +08:00
|
|
|
|
</span>
|
2023-01-10 18:39:07 +08:00
|
|
|
|
<a name="devItemName" data-number="${devObj.device_number}" href="javascript:;">${devObj.full_name}</a>
|
2022-11-21 18:47:47 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="d-flex mb-0 mt-2 align-items-center">
|
2022-11-23 15:38:52 +08:00
|
|
|
|
<span id="${devObj.device_number}_status" class="circle-light"></span>
|
2023-01-06 18:39:55 +08:00
|
|
|
|
<span class="${devItem ? "" : "d-none"} ml-2">${devItem?.full_name}:<span name="devItemPoiVal" data-point="${devItem?.points}"></span>${devItem?.unit}</span>
|
2023-02-14 15:16:11 +08:00
|
|
|
|
<a href="javascript:;" name="devItem" data-id="${devObj.device_guid}" data-number="${devObj.device_number}" data-name="${devObj.full_name}" class=" ml-2 mb-0 " data-toggle="tooltip" title="默认的 Tooltip">詳細資料</a>
|
2022-11-21 18:47:47 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-11-16 14:53:22 +08:00
|
|
|
|
</div>`;
|
|
|
|
|
})
|
2022-12-22 14:27:17 +08:00
|
|
|
|
strHtml += "</div></div>";
|
2022-11-16 14:53:22 +08:00
|
|
|
|
})
|
2022-12-26 18:32:21 +08:00
|
|
|
|
// Niagara 產生 file 開頭字串問題
|
|
|
|
|
strHtml = strHtml.replaceAll(`src="/file/`, `src="`);
|
2023-01-10 18:39:07 +08:00
|
|
|
|
|
2022-12-22 14:27:17 +08:00
|
|
|
|
if (!res.data || res.data.length == 0) {
|
|
|
|
|
endPageLoading();
|
|
|
|
|
} else {
|
2023-01-10 18:39:07 +08:00
|
|
|
|
// 訂閱 baja 設備
|
2022-12-22 14:27:17 +08:00
|
|
|
|
subDevice();
|
|
|
|
|
}
|
2023-01-10 18:39:07 +08:00
|
|
|
|
|
|
|
|
|
// 繪製 html
|
2022-11-16 14:53:22 +08:00
|
|
|
|
$("#floDevList").append(strHtml);
|
2023-01-10 18:39:07 +08:00
|
|
|
|
|
|
|
|
|
// 存入 device 基本資料至元素 data 屬性
|
|
|
|
|
$("#floDevList a[name=devItem]").each((idx, ele) => {
|
|
|
|
|
if (allDevList.findIndex(x => x.device_number == $(ele).data("number")) != -1) {
|
|
|
|
|
$(ele).data("devobj", allDevList.filter(x => x.device_number == $(ele).data("number"))[0]);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 初始化 pop 視窗
|
2022-12-31 18:03:16 +08:00
|
|
|
|
initPopover();
|
2023-01-10 18:39:07 +08:00
|
|
|
|
// 卡片設備名稱點擊事件
|
|
|
|
|
devItemNameEvent();
|
2022-11-16 14:53:22 +08:00
|
|
|
|
}
|
|
|
|
|
}, null, "POST").send();
|
|
|
|
|
}
|
2023-01-05 18:37:12 +08:00
|
|
|
|
|
2022-12-23 16:17:22 +08:00
|
|
|
|
function getBuildMenu(callback = null) {
|
|
|
|
|
let url = baseApiUrl + "/api/Device/GetBuildMenu";
|
|
|
|
|
let sendData = {
|
|
|
|
|
main_system_tag: pageAct.sysMainTag,
|
|
|
|
|
sub_system_tag: pageAct.sysSubTag,
|
|
|
|
|
building_tag: pageAct.buiTag,
|
|
|
|
|
};
|
|
|
|
|
objSendData.Data = sendData;
|
|
|
|
|
ytAjax = new YourTeam.Ajax(url, objSendData, function (res) {
|
|
|
|
|
if (!res || res.code != "0000" || !res.data) {
|
2022-11-23 17:19:28 +08:00
|
|
|
|
|
2022-12-23 16:17:22 +08:00
|
|
|
|
} else {
|
|
|
|
|
let leftData = {}, rightData = {};
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2022-12-23 16:17:22 +08:00
|
|
|
|
for (var key in res.data) {
|
|
|
|
|
if (key.startsWith("left")) {
|
|
|
|
|
leftData[key.split("left_")[1]] = res.data[key];
|
|
|
|
|
} else if (key.startsWith("right")) {
|
|
|
|
|
rightData[key.split("right_")[1]] = res.data[key];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (res.data.left_drawing != null) {
|
|
|
|
|
$("#leftDiv").html(getHtmlByType(res.data.left_drawing, leftData));
|
|
|
|
|
} else {
|
2022-12-26 18:32:21 +08:00
|
|
|
|
$("#leftDiv").html(getHtmlByType(0, leftData));
|
2022-12-23 16:17:22 +08:00
|
|
|
|
}
|
|
|
|
|
if (res.data.right_drawing != null) {
|
|
|
|
|
$("#rightDiv").html(getHtmlByType(res.data.right_drawing), rightData);
|
|
|
|
|
} else {
|
2022-12-26 18:32:21 +08:00
|
|
|
|
$("#rightDiv").html(getHtmlByType(0, rightData));
|
2022-12-23 16:17:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-26 18:32:21 +08:00
|
|
|
|
callback ? callback([res.data.left_drawing, res.data.right_drawing], res.data) : "";
|
2022-12-23 16:17:22 +08:00
|
|
|
|
}
|
|
|
|
|
}, null, "POST").send();
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-27 15:17:52 +08:00
|
|
|
|
// Card 即時狀態
|
2023-01-05 18:37:12 +08:00
|
|
|
|
function drawStateTabBlo(devNum) {
|
|
|
|
|
let devPath = devNum.replaceAll("_", "/");
|
2023-02-17 11:01:29 +08:00
|
|
|
|
let position = $(`.card.device-wrap[data-number=${devNum}]`).data("position") || "left";
|
2023-01-07 17:57:47 +08:00
|
|
|
|
let width = buildMenuData[position + "_icon_click_url_width"] ? buildMenuData[position + "_icon_click_url_width"] + "px" : "100%";
|
|
|
|
|
let height = buildMenuData[position + "_icon_click_url_height"] ? buildMenuData[position + "_icon_click_url_height"] + "px" : "100%";
|
2023-02-17 11:01:29 +08:00
|
|
|
|
|
|
|
|
|
let strHtml = `<div style="width:${width};height:${height};">
|
|
|
|
|
<iframe src="/ord?station:%7Cslot:/${devPath}|view:?fullScreen=true" style="width:${width};height:${height};"></iframe>
|
2022-12-27 15:17:52 +08:00
|
|
|
|
</div>`
|
|
|
|
|
return strHtml;
|
|
|
|
|
}
|
2023-01-09 19:15:27 +08:00
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
function iframeResize(obj) {
|
|
|
|
|
obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
|
|
|
|
|
}
|
2023-01-09 19:15:27 +08:00
|
|
|
|
|
2022-12-23 16:17:22 +08:00
|
|
|
|
function show3DModel(urn) {
|
2023-01-04 18:49:37 +08:00
|
|
|
|
$(loadEle).Loading("start");
|
2022-12-26 18:20:32 +08:00
|
|
|
|
launchViewerForHotspot(urn, (viewer, nodeIds) => {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
|
|
|
|
addHotPoint(viewer)
|
|
|
|
|
let devDbIds = allDevList.map(x => x.forge_dbid);
|
|
|
|
|
// 大類
|
|
|
|
|
let subDevDbId = [];
|
|
|
|
|
allDevList.forEach(({ device_nodes }) => {
|
|
|
|
|
subDevDbId = [...subDevDbId, ...device_nodes.map(n => n.forge_dbid)]
|
|
|
|
|
})
|
2023-02-24 16:03:17 +08:00
|
|
|
|
//console.log(devDbIds, subDevDbId)
|
2023-01-13 16:49:55 +08:00
|
|
|
|
// 從資料庫設定不可視模型的類型,若沒有取道該小類不可視類型,則套用資料庫設定預設類型
|
|
|
|
|
if (forgeInvType) {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
setInviForge(forgeInvType, [...devDbIds, ...subDevDbId]);
|
2023-01-13 16:49:55 +08:00
|
|
|
|
} else {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
setInviForge(forgeInvTypeDef, [...devDbIds, ...subDevDbId]);
|
2023-01-13 16:49:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-04 18:49:37 +08:00
|
|
|
|
$(loadEle).Loading("close");
|
2023-02-14 15:16:11 +08:00
|
|
|
|
let sensorObjs = []
|
|
|
|
|
let devices = []
|
|
|
|
|
if (pageAct.sysSubTag === "M12") {
|
|
|
|
|
allDevList.forEach((device) => {
|
|
|
|
|
const sensorObj = new Forge3DSensor({
|
|
|
|
|
viewer: viewer,
|
|
|
|
|
ordPath: {
|
|
|
|
|
"area_tag": pageAct.AreaTag,
|
|
|
|
|
"building_tag": pageAct.buiTag,
|
|
|
|
|
},
|
2023-02-18 21:00:48 +08:00
|
|
|
|
selector: "[name=forgeViewer]",
|
2023-02-22 10:33:35 +08:00
|
|
|
|
elevCb: () => {
|
|
|
|
|
let elevOption = {
|
|
|
|
|
selector: "[name=forgeViewer]",
|
|
|
|
|
viewer: viewer,
|
|
|
|
|
ordPath: {
|
|
|
|
|
"area_tag": pageAct.AreaTag,
|
|
|
|
|
"building_tag": pageAct.buiTag,
|
|
|
|
|
},
|
|
|
|
|
sensorObjs
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 電梯移動訂閱程序載入
|
|
|
|
|
let forge3DElev = new Forge3DElevFull(elevOption);
|
|
|
|
|
forge3DElev.bajaEndCallback = function () {
|
|
|
|
|
endPageLoading();
|
|
|
|
|
}
|
|
|
|
|
forge3DElev.init();
|
|
|
|
|
},
|
2023-02-14 15:16:11 +08:00
|
|
|
|
curDevice: {
|
2023-02-18 21:00:48 +08:00
|
|
|
|
...device,
|
2023-02-14 15:16:11 +08:00
|
|
|
|
roomDbId: !isNaN(parseInt(device.room_dbid)) ? parseInt(device.room_dbid) : -1,
|
|
|
|
|
id: device.device_number,
|
|
|
|
|
position: isJSON(device.device_coordinate_3d) ? JSON.parse(device.device_coordinate_3d) : {}, // x: 0, y: 25, z: -2.5 (3.35, -4.81, 12.88
|
|
|
|
|
temp: 25,
|
|
|
|
|
forge_dbid: parseInt(device.forge_dbid)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
sensorObjs.push(sensorObj)
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
allDevList.map(x => {
|
|
|
|
|
return {
|
|
|
|
|
roomDbId: !isNaN(parseInt(x.room_dbid)) ? parseInt(x.room_dbid) : -1,
|
|
|
|
|
id: x.device_number,
|
|
|
|
|
position: isJSON(x.device_coordinate_3d) ? JSON.parse(x.device_coordinate_3d) : {}, // x: 0, y: 25, z: -2.5 (3.35, -4.81, 12.88
|
|
|
|
|
sensorTypes: ["temperature", "humidity"],
|
|
|
|
|
temp: 0,
|
|
|
|
|
}
|
|
|
|
|
})
|
2023-02-22 10:33:35 +08:00
|
|
|
|
let elevOption = {
|
|
|
|
|
selector: "[name=forgeViewer]",
|
|
|
|
|
viewer: viewer,
|
|
|
|
|
ordPath: {
|
|
|
|
|
"area_tag": pageAct.AreaTag,
|
|
|
|
|
"building_tag": pageAct.buiTag,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 電梯移動訂閱程序載入
|
|
|
|
|
let forge3DElev = new Forge3DElevFull(elevOption);
|
|
|
|
|
forge3DElev.bajaEndCallback = function () {
|
|
|
|
|
endPageLoading();
|
|
|
|
|
}
|
|
|
|
|
forge3DElev.init();
|
2023-02-14 15:16:11 +08:00
|
|
|
|
}
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2022-12-29 18:44:09 +08:00
|
|
|
|
let option = {
|
2022-12-30 19:03:31 +08:00
|
|
|
|
devices: devices,
|
2022-12-29 18:44:09 +08:00
|
|
|
|
}
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2023-02-14 15:16:11 +08:00
|
|
|
|
if (pageAct.sysMainTag !== "LT" && pageAct.sysSubTag !== "M12") {
|
|
|
|
|
heatMap = new ADHeatMaps(option);
|
|
|
|
|
heatMap.onComplete = () => {
|
|
|
|
|
$.each(allDevList, (idx, dev) => {
|
|
|
|
|
heatMap.changeTemp(dev.device_number, dev._temp || 0);
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-12-29 18:44:09 +08:00
|
|
|
|
}
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
if (subDeviceData.length != 0) {
|
|
|
|
|
let stSubArr = subDeviceData.map(x => Object.keys(x).filter(y => y == "ST").map(y => x));
|
|
|
|
|
|
|
|
|
|
for (let sub of stSubArr) {
|
|
|
|
|
let matchDevice = allDevList.filter(x => x.device_number == sub[0]?.device_number)[0];
|
|
|
|
|
if (matchDevice) {
|
|
|
|
|
setForgeHotSpotColor(matchDevice);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-14 15:16:11 +08:00
|
|
|
|
}
|
|
|
|
|
if (pageAct.sysSubTag == "W2") {
|
|
|
|
|
// console.log("@@",pageAct, pageAct.sub_system_tag)
|
|
|
|
|
getWaterNodeId(viewer);
|
2023-02-24 16:03:17 +08:00
|
|
|
|
} else if (pageAct.sysSubTag == "E1") {
|
|
|
|
|
getE1NodeId(viewer)
|
2023-02-14 15:16:11 +08:00
|
|
|
|
}
|
2023-02-11 17:31:11 +08:00
|
|
|
|
|
2023-01-04 18:49:37 +08:00
|
|
|
|
}, () => {
|
|
|
|
|
$(loadEle).Loading("close");
|
2023-01-03 16:47:23 +08:00
|
|
|
|
}, "[name=forgeViewer]");
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
|
|
|
|
|
2022-12-26 18:32:21 +08:00
|
|
|
|
}
|
2022-12-23 16:17:22 +08:00
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
// 供水系統 - 取得欲染色 dbid
|
|
|
|
|
function getWaterNodeId() {
|
2023-02-14 15:16:11 +08:00
|
|
|
|
// let url = baseApiUrl + "/api/Device/GetForgeNodeIdFromVar";
|
|
|
|
|
// let sendData = { forgeNodeKey: "water_wupply" };
|
|
|
|
|
// objSendData.Data = sendData;
|
|
|
|
|
// ytAjax = new YourTeam.Ajax(url, objSendData, function (res) {
|
|
|
|
|
// if (!res || res.code != "0000" || !res.data) {
|
|
|
|
|
|
|
|
|
|
// } else {
|
|
|
|
|
// if (!isNaN(parseInt(res.data[0]?.system_value))) {
|
|
|
|
|
// changeColor(parseInt(res.data[0]?.system_value))
|
|
|
|
|
// }
|
|
|
|
|
// console.log(res.data)
|
|
|
|
|
// }
|
|
|
|
|
// }, null, "POST").send();
|
|
|
|
|
// console.log("1",viewer.model)
|
|
|
|
|
viewer.model.search("給水", (nodeIds) => {
|
|
|
|
|
// console.log("2",nodeIds)
|
|
|
|
|
viewer.show(nodeIds)
|
|
|
|
|
}, (e) => { console.log(e) })
|
|
|
|
|
|
2023-01-05 18:37:12 +08:00
|
|
|
|
}
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2023-02-24 16:03:17 +08:00
|
|
|
|
|
|
|
|
|
// 高壓配電盤染色
|
|
|
|
|
function getE1NodeId() {
|
|
|
|
|
viewer.model.search("高壓電力", (nodeIds) => {
|
|
|
|
|
// console.log("2",nodeIds)
|
|
|
|
|
viewer.show(nodeIds)
|
|
|
|
|
}, (e) => { console.log(e) })
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-27 18:44:22 +08:00
|
|
|
|
function getHotspotPoint(callback = null) {
|
2022-12-26 18:20:32 +08:00
|
|
|
|
let url = baseApiUrl + "/api/GetDevForCor";
|
2022-12-27 18:44:22 +08:00
|
|
|
|
let sendData = {
|
2022-12-27 15:17:52 +08:00
|
|
|
|
"device_area_tag": pageAct.AreaTag,
|
|
|
|
|
"device_building_tag": pageAct.buiTag,
|
|
|
|
|
"device_system_tag": pageAct.sysMainTag,
|
|
|
|
|
"device_name_tag": pageAct.sysSubTag,
|
2022-12-27 18:44:22 +08:00
|
|
|
|
};
|
2023-02-24 16:03:17 +08:00
|
|
|
|
//console.log(sendData)
|
2022-12-26 18:20:32 +08:00
|
|
|
|
objSendData.Data = sendData;
|
2022-12-27 15:17:52 +08:00
|
|
|
|
ytAjax = new YourTeam.Ajax(url, objSendData, function (res) {
|
|
|
|
|
if (!res || res.code != "0000" || !res.data) {
|
|
|
|
|
|
|
|
|
|
} else {
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2022-12-28 13:12:08 +08:00
|
|
|
|
let myDataList = [];
|
|
|
|
|
$.each(res.data, (idx, data) => {
|
|
|
|
|
let item = {};
|
|
|
|
|
item.position = {};
|
2023-01-03 16:47:23 +08:00
|
|
|
|
if (data.device_coordinate_3d != null && isJSON(data.device_coordinate_3d)) {
|
2022-12-28 18:47:09 +08:00
|
|
|
|
item.position = JSON.parse(data.device_coordinate_3d);
|
2022-12-28 13:12:08 +08:00
|
|
|
|
}
|
|
|
|
|
$.extend(item, data);
|
|
|
|
|
myDataList.push(item);
|
|
|
|
|
})
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
2023-02-24 16:03:17 +08:00
|
|
|
|
//console.log("1", myDataList)
|
2022-12-27 18:44:22 +08:00
|
|
|
|
setHotspotPoint(myDataList);
|
2023-01-11 10:18:20 +08:00
|
|
|
|
if (pageAct.sysMainTag == "LT") {
|
|
|
|
|
setLightPoint(myDataList);
|
|
|
|
|
}
|
2022-12-27 18:44:22 +08:00
|
|
|
|
callback ? callback() : "";
|
2022-12-26 18:20:32 +08:00
|
|
|
|
}
|
2022-12-27 15:17:52 +08:00
|
|
|
|
}, null, "POST").send();
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2022-12-26 18:20:32 +08:00
|
|
|
|
}
|
2022-12-26 18:32:21 +08:00
|
|
|
|
|
2022-12-27 18:44:22 +08:00
|
|
|
|
function setHotspotPoint(myDataList = []) {
|
2023-02-24 16:03:17 +08:00
|
|
|
|
//console.log("2",myDataList)
|
2022-12-27 18:44:22 +08:00
|
|
|
|
getHopspotPoint(myDataList);
|
2022-12-23 13:22:50 +08:00
|
|
|
|
}
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2023-01-10 18:39:07 +08:00
|
|
|
|
function setLightPoint(myDataList = []) {
|
2023-02-17 11:01:29 +08:00
|
|
|
|
// console.log(myDataList)
|
2023-01-09 16:32:28 +08:00
|
|
|
|
getLightData(myDataList);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-13 16:49:55 +08:00
|
|
|
|
// 取得 不可視 3D 模型類型
|
|
|
|
|
function getInviForge() {
|
|
|
|
|
let url = baseApiUrl + "/api/Device/GetForgeInvType";
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
2023-01-13 16:49:55 +08:00
|
|
|
|
ytAjax = new YourTeam.Ajax(url, null, function (res) {
|
|
|
|
|
if (!res || res.code != "0000" || !res.data) {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
let datas = res.data;
|
2023-02-14 15:16:11 +08:00
|
|
|
|
|
2023-01-13 16:49:55 +08:00
|
|
|
|
forgeInvType = datas.filter(x => x.sub_system_tag == pageAct.sysSubTag)[0]?.invisible_value;
|
|
|
|
|
forgeInvTypeDef = datas.filter(x => x.invisible_type == "default_value")[0]?.invisible_value;
|
|
|
|
|
}
|
|
|
|
|
}, null, "POST").send();
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-14 15:16:11 +08:00
|
|
|
|
// 設置 模型隱藏或透明
|
2023-01-13 16:49:55 +08:00
|
|
|
|
function setInviForge(type, devDbIds) {
|
|
|
|
|
if (type == "Hide") {
|
|
|
|
|
hideAllObjects(devDbIds);
|
|
|
|
|
} else if (type == "Opacity") {
|
|
|
|
|
setTransparentBuilding(0, devDbIds);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-29 16:03:58 +08:00
|
|
|
|
var parentEle = "";
|
2022-12-28 18:47:09 +08:00
|
|
|
|
onEvent("autodesk:click:sprite", "[name=forgeViewer]", function (e, obj) {
|
2022-12-31 18:03:16 +08:00
|
|
|
|
forgeUnFocusAll();
|
2023-02-18 21:00:48 +08:00
|
|
|
|
let position = [obj.event.target.toolController.lastClickX - 100, obj.event.target.toolController.lastClickY - 100];
|
2022-12-28 18:47:09 +08:00
|
|
|
|
let devObj = obj.myData;
|
2023-02-24 16:03:17 +08:00
|
|
|
|
let name = allDevList.filter(x => x.device_guid == devObj.device_guid)[0]?.full_name || devObj.full_name;
|
2022-12-31 18:03:16 +08:00
|
|
|
|
devObj.full_name = name;
|
|
|
|
|
parentEle = crePosPopover(position, devObj);
|
2022-12-28 18:47:09 +08:00
|
|
|
|
$(parentEle).click();
|
|
|
|
|
})
|
2022-12-29 16:03:58 +08:00
|
|
|
|
|
|
|
|
|
onEvent("autodesk:clickOut:sprite", "[name=forgeViewer]", function (e) {
|
|
|
|
|
$(parentEle).YTTooltip("hide");
|
|
|
|
|
})
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2022-12-28 18:47:09 +08:00
|
|
|
|
onEvent("autodesk:complete:sprite", "[name=forgeViewer]", function (e, obj) {
|
|
|
|
|
$("#floDevList a[name=devItem]").each((idx, ele) => {
|
|
|
|
|
let devNum = $(ele).data("number");
|
|
|
|
|
let dbid = obj.myDataList.filter(x => x.device_number == devNum)[0]?._dbId;
|
2023-01-05 18:37:12 +08:00
|
|
|
|
allDevList.forEach((dev, idx) => {
|
|
|
|
|
if (dev.device_number == devNum) {
|
|
|
|
|
dev.spriteDbid = dbid;
|
|
|
|
|
setForgeHotSpotColor(dev);
|
|
|
|
|
}
|
|
|
|
|
})
|
2022-12-28 18:47:09 +08:00
|
|
|
|
$(ele).data("dbId", dbid);
|
2023-01-05 18:37:12 +08:00
|
|
|
|
|
2022-12-28 18:47:09 +08:00
|
|
|
|
})
|
2022-12-31 18:03:16 +08:00
|
|
|
|
})
|
2023-01-03 16:47:23 +08:00
|
|
|
|
|
2022-12-31 18:03:16 +08:00
|
|
|
|
onEvent("yt:tooltip:show", "[name=devItem]", function (e, obj) {
|
|
|
|
|
forgeUnFocusAll();
|
2022-12-27 18:44:22 +08:00
|
|
|
|
})
|
2022-12-26 18:20:32 +08:00
|
|
|
|
|
2022-12-31 18:03:16 +08:00
|
|
|
|
function forgeUnFocusAll() {
|
|
|
|
|
$("#floDevList a[name=devItem]").each((idx, ele) => {
|
|
|
|
|
controlFocusHotspot($(ele).data("dbId"), false);
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-11-15 18:47:16 +08:00
|
|
|
|
</script>
|