basePlanEditer.vue 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003
  1. <template>
  2. <div class="basePlan" id="basePlan" ref="basePlan">
  3. <planTooltip
  4. v-show="showTooltip"
  5. class="planTooltip-box"
  6. ref="planTooltip"
  7. @closeTooltip="showTooltip = false"
  8. :havItem="havItem"
  9. :contextMenuItem="contextMenuItem"
  10. ></planTooltip>
  11. <!-- 加载中 -->
  12. <div v-loading="planLoading" class="plan-loading" element-loading-text="平面图加载中"></div>
  13. <canvas style="border: none; outline: medium" id="persagy_plan" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
  14. </div>
  15. </template>
  16. <script>
  17. import { SFloorParser, getJsonz } from "@persagy-web/big";
  18. import { SImageItem, SImageShowType, SGraphPropertyCommand } from "@persagy-web/graph";
  19. import { SPlanView, SPlanParser, SPlanScene, SPlanDecorator, SPlanEquipment, SPlanZone } from "@/lib";
  20. import planTooltip from "./planTooltip.vue";
  21. import { mapState, mapMutations } from "vuex";
  22. import base64ToFile from "@/utils/base64ToFile";
  23. import { v1 as uuidv1 } from "uuid";
  24. import bus from "@/bus/bus";
  25. import { planerSave, planerRead, planerPublish } from "@/api/labsl";
  26. import { equipQuery, spaceQuery } from "@/api/equipcomponent";
  27. import { imgBaseUrl } from "@/api/imageservice";
  28. export default {
  29. components: { planTooltip },
  30. data() {
  31. return {
  32. scene: null, //场景
  33. view: null, //视图
  34. canvasWidth: 700, //画布宽
  35. canvasHeight: 700, //画布高
  36. havItem: false, //右击是否选中item
  37. contextMenuItem: null, // 右键选中的item
  38. showTooltip: false, //是否显示tooltip
  39. planContent: {}, // 读图后存储图所有数据
  40. autoSave: null, // 自动保存定时器
  41. ruleNum: 0, //规则数量
  42. loadedRuleNum: 0, //已加载规则数量
  43. baseMapStyle: {
  44. // 底图样式
  45. default: {
  46. strokeColor: "#F0F3F7",
  47. fillColor: "#F0F3F7",
  48. lineWidth: 1,
  49. effect: {},
  50. },
  51. },
  52. changeScaleByClick: false, //区分滚轮,点击 事件改变的缩放比例
  53. initScale: 1,
  54. planLoading: true, //平面图顶部loading提示
  55. parser: null, //底图解析后的数据
  56. isInitSave:false, //初始化保存
  57. };
  58. },
  59. computed: {
  60. ...mapState([
  61. "editCmd",
  62. "legendObj",
  63. "graphId",
  64. "id",
  65. "projectId",
  66. "floorMap",
  67. "equipItemMap",
  68. "zoneIteMap",
  69. "buildingId",
  70. "floorId",
  71. "folderId",
  72. "objExtInfo",
  73. "styleMap",
  74. "ruleList",
  75. "version",
  76. "outline",
  77. ]),
  78. },
  79. mounted() {
  80. window.vim = this;
  81. // 如果为新建图、默认加载后保存使之生成缩略图
  82. if(this.$route.query.version == "1.0.1"){
  83. this.isInitSave = true
  84. }else {
  85. this.isInitSave = false
  86. }
  87. // 获取 canvas 的宽高
  88. this.canvasWidth = this.$refs.basePlan.offsetWidth;
  89. this.canvasHeight = this.$refs.basePlan.offsetHeight - 10;
  90. // 初始化场景类
  91. this.view = new SPlanView("persagy_plan");
  92. if (this.scene) this.view.scene = this.scene;
  93. this.init();
  94. // 初始化bus绑定事件
  95. this.initBusEvent();
  96. // 右键事件
  97. this.scene.getItem = this.onContextMenu;
  98. this.scene.emitChoice = this.emitChoice;
  99. //左键事件
  100. this.scene.vueOnMouseDown = this.vueOnMouseDown;
  101. // 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
  102. document.getElementById("basePlan").oncontextmenu = function (e) {
  103. return false;
  104. };
  105. // 2分钟自动保存
  106. this.autoSave = setInterval(() => {
  107. this.autoSavePlan();
  108. }, 120000);
  109. // 页面销毁前,清除定时器
  110. this.$once("hook:beforeDestroy", () => {
  111. clearInterval(this.autoSave);
  112. });
  113. },
  114. methods: {
  115. ...mapMutations([
  116. "SETCHOICELEHEND",
  117. "SETLEGENDOBJ",
  118. "SETPROJECT",
  119. "SETVERSION",
  120. "ADDEQUIP",
  121. "REMOVEEQUIP",
  122. "ADDZONE",
  123. "REMOVEZONE",
  124. "DELETEITEM",
  125. "INITSTYLE",
  126. "INITRULELIST",
  127. "INITOBJEXTINFO",
  128. "ADDSTYLE",
  129. "SETOUTLINE",
  130. "DELETESTYLE",
  131. ]),
  132. // 清空画布
  133. clearImg() {
  134. this.scene = new SPlanScene();
  135. this.scene.imgServeUrl = imgBaseUrl;
  136. this.scene.emitChoice = this.emitChoice;
  137. this.scene.clearCmdStatus = this.clearCmdStatus;
  138. this.scene.vueOnMouseDown = this.vueOnMouseDown;
  139. this.scene.maskFinishCreated = this.maskFinishCreated;
  140. if (this.view) {
  141. this.view.update();
  142. }
  143. },
  144. /**
  145. * 区域显示的蒙板创建完成之后,存放vuex
  146. */
  147. maskFinishCreated(SBaseMaskEdit) {
  148. this.SETOUTLINE(SBaseMaskEdit);
  149. },
  150. // 初始化
  151. init() {
  152. this.clearImg();
  153. this.view ? (this.view.scene = this.scene) : null;
  154. // 读取平面图数据
  155. this.readPlanMsg().then((showBaseMap) => {
  156. // 判断是否有楼层底图,有则获取数据并解析
  157. if (this.floorMap) this.getMapBlob(showBaseMap);
  158. });
  159. },
  160. // 请求获取地图的压缩包
  161. getMapBlob(showBaseMap) {
  162. if (this.floorMap.includes("png") || this.floorMap.includes("jpg")) {
  163. const url = `/image-service/common/image_get?systemId=dataPlatform&key=${this.floorMap}`;
  164. this.getImage(url);
  165. } else {
  166. const url = `/image-service/common/file_get?systemId=revit&key=${this.floorMap}`;
  167. getJsonz(url).then((data) => {
  168. // 解析数据并放入压缩包中
  169. this.parserData(data, showBaseMap);
  170. });
  171. }
  172. },
  173. // 获取图片
  174. getImage(url) {
  175. const imgItem = new SImageItem(null, url);
  176. imgItem.showType = SImageShowType.AutoFit;
  177. imgItem.connect("imgLoadOver", this, () => {
  178. // 画板是否可拖动;
  179. this.scene.addItem(imgItem);
  180. this.view.DragMove = true;
  181. this.view.fitSceneToView();
  182. // 接口无规则字段时,在底图加载完成后关闭loading
  183. if (!this.planContent?.ruleList) {
  184. this.planLoading = false;
  185. }
  186. });
  187. },
  188. // 解析数据并注入 scene 类中
  189. parserData(data, showBaseMap) {
  190. // 修改 vuex 底图显隐
  191. this.ADDSTYLE({
  192. id: "defaultMapStyle",
  193. style: {
  194. ...this.styleMap.defaultMapStyle,
  195. showBaseMap, //显隐值
  196. },
  197. });
  198. const parser = new SFloorParser();
  199. parser.parseData(data);
  200. this.parser = parser;
  201. parser.spaceList.forEach((t) => {
  202. //是否显示空间
  203. // t.visible = this.isSpaceSelectable;
  204. t.visible = showBaseMap;
  205. //设置样式
  206. Object.assign(t, this.baseMapStyle.default);
  207. //是否展示名称
  208. // t.showBaseName = true;
  209. // 是否可选
  210. t.selectable = false;
  211. // t.connect("onMouseDown", this, this.clickSpaceItem);
  212. // 添加图例
  213. this.scene.addItem(t);
  214. });
  215. parser.wallList.forEach((t) => {
  216. // 是否显示
  217. // t.visible = this.isShowWall;
  218. t.visible = showBaseMap;
  219. // 是否可选
  220. t.selectable = false;
  221. this.scene.addItem(t);
  222. });
  223. // parser.virtualWallList.forEach((t) => {
  224. // // 是否显示
  225. // // t.visible = this.isShowVirtualWall;
  226. // t.visible = showBaseMap;
  227. // // 是否可选
  228. // t.selectable = false;
  229. // this.scene.addItem(t);
  230. // });
  231. // parser.doorList.forEach((t) => {
  232. // // 是否显示
  233. // // t.visible = this.isShowDoor;
  234. // t.visible = showBaseMap;
  235. // // 是否可选
  236. // t.selectable = false;
  237. // this.scene.addItem(t);
  238. // });
  239. // parser.columnList.forEach((t) => {
  240. // // 是否显示
  241. // // t.visible = this.isShowColumn;
  242. // t.visible = showBaseMap;
  243. // // 是否可选
  244. // t.selectable = false;
  245. // this.scene.addItem(t);
  246. // });
  247. // parser.casementList.forEach((t) => {
  248. // // 是否显示
  249. // // t.visible = this.isShowWindow;
  250. // t.visible = showBaseMap;
  251. // // 是否可选
  252. // t.selectable = false;
  253. // this.scene.addItem(t);
  254. // });
  255. // 画板是否可拖动
  256. this.view.DragMove = true;
  257. this.view.fitSceneToView();
  258. // 接口无规则字段时,在底图加载完成后关闭loading
  259. // 加载完,如果符合条件,则走自动保存
  260. if(this.isInitSave){
  261. this.savePlanDraft();
  262. }
  263. if (!this.planContent?.ruleList) {
  264. this.planLoading = false;
  265. }
  266. // 设置初始化缩放比例
  267. this.initScale = this.view.scale;
  268. bus.$emit("initScale", this.view.scale);
  269. },
  270. // 恢复命令状态
  271. clearCmdStatus() {
  272. this.SETCHOICELEHEND("");
  273. this.SETLEGENDOBJ(null);
  274. },
  275. // 右键获取item
  276. onContextMenu(item, [event]) {
  277. this.showTooltip = true;
  278. if (item) {
  279. this.havItem = true;
  280. this.contextMenuItem = item;
  281. } else {
  282. this.havItem = false;
  283. this.contextMenuItem = null;
  284. }
  285. const doms = document.getElementsByClassName("planTooltip-box")[0];
  286. doms.style.left = event.offsetX + "px";
  287. doms.style.top = event.offsetY + "px";
  288. },
  289. // 左键事键
  290. vueOnMouseDown(e) {
  291. // 关闭tooltip
  292. this.showTooltip = false;
  293. },
  294. // 选中后的回调函数
  295. emitChoice(itemList) {
  296. bus.$emit("emitChoice", itemList);
  297. },
  298. //初始化bus绑定事件
  299. initBusEvent() {
  300. // 属性入栈
  301. bus.$off("undoAttr");
  302. bus.$on("undoAttr", (item, styletype, oldMsg, newMsg) => {
  303. this.scene.undoStack.push(new SGraphPropertyCommand(this.scene, item, styletype, oldMsg, newMsg));
  304. });
  305. // 改变样式
  306. bus.$off("updateStyle");
  307. bus.$on("updateStyle", (type, val) => {
  308. this.scene.updateStyle(type, val);
  309. });
  310. // 撤销
  311. bus.$off("planUndo");
  312. bus.$on("planUndo", (val) => {
  313. this.scene.undo();
  314. });
  315. // 重做
  316. bus.$off("planRedo");
  317. bus.$on("planRedo", (val) => {
  318. this.scene.redo();
  319. });
  320. // 删除
  321. bus.$off("deleteItem");
  322. bus.$on("deleteItem", (val) => {
  323. this.scene.deleteItem([val]);
  324. this.DELETEITEM();
  325. });
  326. // 复制
  327. bus.$off("copy");
  328. bus.$on("copy", (val) => {
  329. this.scene.copy();
  330. });
  331. // 粘贴
  332. bus.$off("paste");
  333. bus.$on("paste", (val) => {
  334. this.scene.paste();
  335. });
  336. // 保存
  337. bus.$off("savePlan");
  338. bus.$on("savePlan", (val) => {
  339. this.savePlanDraft();
  340. });
  341. // 设置实例置顶置底
  342. bus.$off("setOrder");
  343. bus.$on("setOrder", (val) => {
  344. this.scene.setItemOrder(val);
  345. });
  346. // 设置实例status状态
  347. bus.$off("setItemStatus");
  348. bus.$on("setItemStatus", (val) => {
  349. this.scene.setItemStatus();
  350. });
  351. // 下载图片
  352. bus.$off("savePlanImg");
  353. bus.$on("savePlanImg", () => {
  354. // 隐藏选择器
  355. this.scene.selectContainer.clear();
  356. this.view.saveImageSize(`${this.planContent.name}.png`, "png", this.canvasWidth, this.canvasHeight, this.view.backgroundColor.value);
  357. });
  358. // 发布图片
  359. bus.$off("issuePlan");
  360. bus.$on("issuePlan", () => {
  361. this.savePlanDraft().then(() => {
  362. this.issueDraft();
  363. });
  364. });
  365. // 手动添加设备实例
  366. bus.$off("addEquipment");
  367. bus.$on("addEquipment", (equipList) => {
  368. this.mergeEquipData(equipList);
  369. });
  370. // 手动删除设备实例
  371. bus.$off("removeEquipment");
  372. bus.$on("removeEquipment", (classCode, delClassCode) => {
  373. this.removeEquipment(classCode, delClassCode);
  374. });
  375. // 手动添加空间实例
  376. bus.$off("addZone");
  377. bus.$on("addZone", (zoneList) => {
  378. this.mergeZoneData(zoneList);
  379. });
  380. // 手动删除空间实例
  381. bus.$off("removeZone");
  382. bus.$on("removeZone", (classCode, delClassCode) => {
  383. this.removeZone(classCode, delClassCode);
  384. });
  385. // 更改设备信息点
  386. bus.$off("changeEquipMsgPoint");
  387. bus.$on("changeEquipMsgPoint", (val) => {
  388. this.scene.changeEquipMsgPoint(val);
  389. });
  390. // 选中item
  391. bus.$off("chioceItem");
  392. bus.$on("chioceItem", (item) => {
  393. this.scene.toggleItem(item);
  394. });
  395. // 比例缩放
  396. bus.$off("scale");
  397. bus.$on("scale", (newV, oldV) => {
  398. this.changeScaleByClick = true;
  399. this.view.scaleByPoint(newV / oldV, this.canvasWidth / 2, this.canvasHeight / 2);
  400. this.changeScaleByClick = false;
  401. });
  402. // 更改对齐方式
  403. bus.$off("changeAlignItem");
  404. bus.$on("changeAlignItem", (val) => {
  405. this.scene.changeAlignItem(val);
  406. });
  407. // 底图显隐
  408. bus.$off("showBaseMap");
  409. bus.$on("showBaseMap", (val) => {
  410. this.showBaseMapFn(val);
  411. });
  412. // 取消区域显示
  413. bus.$off("deleteOutline");
  414. bus.$on("deleteOutline", () => {
  415. this.scene.removeItem(this.outline);
  416. this.scene.selectContainer.clear();
  417. this.view.update();
  418. this.SETOUTLINE(null);
  419. });
  420. // 更改背景色
  421. bus.$off("changeBackgroundColor");
  422. bus.$on("changeBackgroundColor", (val) => {
  423. this.changeBackgroundColor(val);
  424. });
  425. },
  426. // 更改底图背景色
  427. changeBackgroundColor(backgroundColor) {
  428. // 更新 vuex 中 styleMap 下 defaultMapStyle 的 backgroundColor 值
  429. this.ADDSTYLE({
  430. id: "defaultMapStyle",
  431. style: {
  432. ...this.styleMap.defaultMapStyle,
  433. backgroundColor, //背景色
  434. },
  435. });
  436. this.scene.changeBackgroundColor(backgroundColor);
  437. },
  438. // 是否显示底图
  439. showBaseMapFn(val) {
  440. // 更新 vuex 中 styleMap 下 defaultMapStyle 的 showBaseMap 值
  441. this.ADDSTYLE({
  442. id: "defaultMapStyle",
  443. style: {
  444. ...this.styleMap.defaultMapStyle,
  445. showBaseMap: val, //显隐值
  446. },
  447. });
  448. const { parser } = this;
  449. parser.spaceList.forEach((t) => {
  450. //是否显示空间
  451. t.visible = val;
  452. });
  453. parser.wallList.forEach((t) => {
  454. t.visible = val;
  455. });
  456. parser.virtualWallList.forEach((t) => {
  457. t.visible = val;
  458. });
  459. parser.doorList.forEach((t) => {
  460. t.visible = val;
  461. });
  462. parser.columnList.forEach((t) => {
  463. t.visible = val;
  464. });
  465. parser.casementList.forEach((t) => {
  466. t.visible = val;
  467. });
  468. if (this.view?.scene) this.view.fitSceneToView();
  469. // 设置初始化缩放比例
  470. this.initScale = this.view.scale;
  471. bus.$emit("initScale", this.view.scale);
  472. },
  473. // 读取拓扑图
  474. readPlanMsg() {
  475. const obj = {
  476. graphId: this.graphId,
  477. id: this.id,
  478. };
  479. return new Promise((resolve, reject) => {
  480. planerRead(obj).then((res) => {
  481. // resolve 是否显示底图,供 parserData 使用
  482. if (res?.content?.style?.defaultMapStyle?.showBaseMap === false) {
  483. resolve(false);
  484. } else {
  485. resolve(true);
  486. }
  487. this.getDataSuc(res);
  488. });
  489. });
  490. },
  491. // 读图成功回调
  492. async getDataSuc(res) {
  493. if (res.result == "failure") return;
  494. this.SETPROJECT(res.content);
  495. this.planContent = res.content;
  496. // 初始化对象实例信息
  497. if (res.content.elements.objExtInfo?.length) {
  498. const objExtInfo = {};
  499. if (res.content.elements.objExtInfo?.length) {
  500. res.content.elements.objExtInfo.forEach((item) => {
  501. if (item?.properties?.id) objExtInfo[item.properties.id] = item;
  502. });
  503. }
  504. this.INITOBJEXTINFO(objExtInfo);
  505. }
  506. // 初始化样式信息
  507. if (res.content.style) {
  508. // 拼接设备默认样式
  509. this.INITSTYLE(res.content.style);
  510. } else {
  511. this.INITSTYLE({});
  512. }
  513. // 底图背景颜色
  514. if (this.scene) {
  515. const backgroundColor = res.content.style?.defaultMapStyle?.backgroundColor
  516. ? res.content.style?.defaultMapStyle?.backgroundColor
  517. : "#00000000";
  518. this.changeBackgroundColor(backgroundColor);
  519. // 初始化保存图背景色
  520. }
  521. // 加载规则,显示实例数据
  522. if (res.content.ruleList?.length) {
  523. this.INITRULELIST(res.content.ruleList);
  524. this.ruleNum = res.content.ruleList.length;
  525. const ruleList = res.content.ruleList;
  526. // 同步执行规则,进行设备/设备组/空间的添加,删除
  527. for (let index = 0; index < ruleList.length; index++) {
  528. const rule = ruleList[index];
  529. // 查询规则
  530. if (rule.commond && rule.commond === "query") {
  531. const params = { ...rule.params, buildingId: this.buildingId, floorId: this.floorId };
  532. if (rule?.returnType === "equip") {
  533. const res = await equipQuery(params);
  534. if (res.result === "success") this.mergeEquipData(res.content);
  535. } else if (rule?.returnType === "zone") {
  536. const res = await spaceQuery(params);
  537. if (res.result === "success") this.mergeZoneData(res.content);
  538. } else if (rule?.returnType === "equipGroup") {
  539. console.error("请求设备组数据");
  540. this.loadedRuleNum++;
  541. if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
  542. }
  543. } else if (rule.commond && rule.commond === "delete") {
  544. // 删除规则
  545. // console.error("删除命令!!!", rule);
  546. // 删除设备实例
  547. if (rule?.returnType === "equip") {
  548. const classCode = rule?.params?.classCode;
  549. if (classCode) {
  550. this.removeEquipment(classCode);
  551. }
  552. } else if (rule?.returnType === "zone") {
  553. // 删除空间实例
  554. const classCode = rule?.params?.classCode;
  555. if (classCode) {
  556. this.removeZone(classCode);
  557. }
  558. } else if (rule?.returnType === "equipGroup") {
  559. // 删除设备组
  560. //
  561. this.loadedRuleNum++;
  562. if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
  563. }
  564. }
  565. }
  566. } else {
  567. this.INITRULELIST([]);
  568. if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
  569. }
  570. // 加载区域显示
  571. if (res.content.outline) {
  572. const outline = res.content.outline;
  573. const item = this.scene.initMaskItem(outline);
  574. this.SETOUTLINE(item);
  575. }
  576. },
  577. // 解析设备数据
  578. mergeEquipData(equipList) {
  579. equipList.forEach((equip) => {
  580. if (!this.equipItemMap[equip.id]) {
  581. if (this.objExtInfo[equip.id]) {
  582. equip = { ...this.objExtInfo[equip.id], ...equip };
  583. }
  584. if (!equip.pos) {
  585. //如果未维护设备在图中的坐标
  586. if (equip.locationJson) {
  587. // 判断设备是否维护BIM坐标
  588. const { x, y, z } = equip.locationJson;
  589. equip.pos = { x, y: -y, z };
  590. } else {
  591. // 否则显示默认坐标位置
  592. equip.pos = { x: 0, y: 0, z: 0 };
  593. }
  594. }
  595. // 添加设备对象类型
  596. equip.properties = { type: "BaseEquipment" };
  597. const equipItem = new SPlanEquipment(null, equip);
  598. equipItem.visible = Boolean(equipItem.legendData.bimLocation);
  599. // equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
  600. equipItem.connect("onContextMenu", this, this.scene.getItem);
  601. // console.log(equip.classCode, equip.codeName);
  602. // TODO: 设备样式
  603. const equipStyle = window.__systemConf.equipStyle;
  604. // 使用设备自身的样式
  605. if (this.styleMap[equip.id]) {
  606. SPlanDecorator.equipDecorator(equipItem, this.styleMap[equip.id]);
  607. } else if (this.styleMap[equip.classCode]) {
  608. // 使用自身设备类的样式
  609. SPlanDecorator.equipDecorator(equipItem, this.styleMap[equip.classCode]);
  610. } else if (equipStyle[equip.classCode]) {
  611. // 使用配置文件中的设备类样式
  612. SPlanDecorator.equipDecorator(equipItem, equipStyle[equip.classCode]);
  613. } else {
  614. // 使用配置文件中的默认样式
  615. SPlanDecorator.equipDecorator(equipItem, equipStyle["defaultEquipStyle"]);
  616. }
  617. this.scene.addItem(equipItem);
  618. this.ADDEQUIP(equipItem);
  619. }
  620. });
  621. this.loadedRuleNum++;
  622. if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
  623. },
  624. /**
  625. * 删除设备实例
  626. *
  627. * @param { string } classCode 删除的设备类code值
  628. * @param { string } delClassCode 是否删除的设备类的样式值
  629. */
  630. removeEquipment(classCode, delClassCode = false) {
  631. for (const key in this.equipItemMap) {
  632. const equipItem = this.equipItemMap[key];
  633. if (equipItem?.legendData?.classCode === classCode) {
  634. // 删除vuex中保存的设备实例
  635. this.REMOVEEQUIP(equipItem);
  636. // 删除图上的设备实例
  637. this.scene.removeItem(equipItem);
  638. // 点击左侧列表删除设备类,触发删除 vuex 设备类样式
  639. if (delClassCode) {
  640. this.DELETESTYLE(equipItem?.legendData?.id);
  641. }
  642. }
  643. }
  644. // 点击左侧列表删除设备类,触发删除 vuex 设备类样式
  645. if (delClassCode) {
  646. this.DELETESTYLE(classCode);
  647. }
  648. this.view.update();
  649. this.loadedRuleNum++;
  650. if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
  651. },
  652. // 解析空间数据
  653. mergeZoneData(zoneList) {
  654. zoneList.forEach((zone) => {
  655. if (!this.zoneIteMap[zone.id]) {
  656. if (this.objExtInfo[zone.id]) {
  657. zone = { ...this.objExtInfo[zone.id], ...zone };
  658. }
  659. // 添加设备对象类型
  660. zone.properties = { type: "BaseZone" };
  661. const zoneItem = new SPlanZone(null, zone);
  662. zoneItem.visible = Boolean(zoneItem.legendData.outline);
  663. // zoneItem.connect("finishCreated", this.scene, this.scene.finishCreated);
  664. zoneItem.connect("onContextMenu", this, this.scene.getItem);
  665. // TODO: addItem 需要写在 zoneDecorator 修饰器前,保证在 SPlanZone中能使用 this.scene.view.scale
  666. this.scene.addItem(zoneItem);
  667. if (this.styleMap[zone.id]) {
  668. SPlanDecorator.zoneDecorator(zoneItem, this.styleMap[zone.id]);
  669. } else if (this.styleMap[zone.classCode]) {
  670. SPlanDecorator.zoneDecorator(zoneItem, this.styleMap[zone.classCode]);
  671. } else {
  672. SPlanDecorator.zoneDecorator(zoneItem, this.styleMap["defaultZoneStyle"]);
  673. }
  674. this.ADDZONE(zoneItem);
  675. }
  676. });
  677. this.loadedRuleNum++;
  678. if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
  679. },
  680. /**
  681. * 删除空间实例
  682. *
  683. * @param { string } classCode 删除的空间类code值
  684. * @param { string } delClassCode 是否删除的设备类的样式值
  685. */
  686. removeZone(classCode, delClassCode = false) {
  687. for (const key in this.zoneIteMap) {
  688. const zoneItem = this.zoneIteMap[key];
  689. if (zoneItem?.legendData?.classCode === classCode) {
  690. // 删除vuex中保存的空间实例
  691. this.REMOVEZONE(zoneItem);
  692. // 删除图上的空间实例
  693. this.scene.removeItem(zoneItem);
  694. // 点击左侧列表删除空间类,触发删除 vuex 空间类样式
  695. if (delClassCode) {
  696. this.DELETESTYLE(zoneItem?.legendData?.id);
  697. }
  698. }
  699. }
  700. // 点击左侧列表删除空间类,触发删除 vuex 设备类样式
  701. if (delClassCode) {
  702. this.DELETESTYLE(classCode);
  703. }
  704. this.view.update();
  705. this.loadedRuleNum++;
  706. if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
  707. },
  708. // 加载通用元素和管线元素
  709. loadMarkRelation() {
  710. const anchorList = []; //保存锚点对象
  711. const parse = new SPlanParser();
  712. parse.parseData(this.planContent.elements);
  713. parse.markers.forEach((item) => {
  714. item.selectable = true;
  715. item.moveable = true;
  716. item.connect("finishCreated", this.scene, this.scene.finishCreated);
  717. item.connect("onContextMenu", this, this.scene.getItem);
  718. // 判断如果是图,需要拼接路径
  719. if (item.data.properties.type == "BaseImage") {
  720. item.showSelect = false;
  721. item.isTransform = false;
  722. if (item.data.style?.default?.url) {
  723. item.url = imgBaseUrl + item.data.style.default.url;
  724. }
  725. }
  726. // 背景图片, 拼接路径
  727. if (item.data.properties.type == "BgImage") {
  728. if (item.data.style?.default?.url) {
  729. item.url = imgBaseUrl + item.data.style.default.url;
  730. }
  731. }
  732. this.scene.addItem(item);
  733. });
  734. // 管线元素最后添加
  735. parse.relations.forEach((t) => {
  736. // 设置锚点
  737. if (t.anchor1Id) {
  738. let startAnc = null;
  739. anchorList.forEach((aItem) => {
  740. if (aItem.id == t.anchor1Id) {
  741. startAnc = aItem;
  742. }
  743. });
  744. if (startAnc) {
  745. startAnc.isConnected = true;
  746. startAnc.parent?.connect("changePos", t, t.changePos);
  747. t.startAnchor = startAnc || null;
  748. console.log("startAnc", startAnc);
  749. }
  750. }
  751. if (t.anchor12d) {
  752. let endAnc = null;
  753. anchorList.forEach((aItem) => {
  754. if (aItem.id == t.anchor12d) {
  755. endAnc = aItem;
  756. }
  757. });
  758. if (endAnc) {
  759. endAnc.isConnected = true;
  760. endAnc.parent?.connect("changePos", t, t.changePos);
  761. t.endAnchor = endAnc || null;
  762. }
  763. }
  764. t.showSelect = false;
  765. t.connect("finishCreated", this.scene, this.scene.finishCreated);
  766. t.connect("onContextMenu", this, this.scene.getItem);
  767. this.scene.addItem(t);
  768. });
  769. if (this.view?.scene) this.view.fitSceneToView();
  770. // 接口有规则字段时,在使用rule接口查询,删除设备/空间后, 关闭loading
  771. if (this.planContent?.ruleList) {
  772. this.planLoading = false;
  773. }
  774. // 设置初始化缩放比例
  775. this.initScale = this.view.scale;
  776. bus.$emit("initScale", this.view.scale);
  777. },
  778. // 生成快照并保存草稿
  779. savePlanDraft() {
  780. const uuid = uuidv1();
  781. return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)])
  782. .then((vals) => {
  783. // 重设版本号
  784. if (vals[1].version && vals[1].id && vals[1].graphId) {
  785. this.SETPROJECT(vals[1]);
  786. this.$message.success(`保存成功`);
  787. // ${vals[1].version}
  788. const { folderId, folderName, buildingId, floorId, floorLocalName, name, floorMap } = this.$route.query;
  789. this.$router.replace({
  790. name: "Editer",
  791. query: {
  792. folderId,
  793. folderName,
  794. buildingId,
  795. floorId,
  796. floorLocalName,
  797. name,
  798. floorMap,
  799. id: vals[1].id,
  800. graphId: vals[1].graphId,
  801. version: vals[1].version,
  802. projectId:this.projectId
  803. },
  804. });
  805. } else {
  806. console.error(`保存图接口缺少返回参数!`);
  807. }
  808. })
  809. .catch((msg) => {
  810. this.$message.error(msg);
  811. });
  812. },
  813. // 生成快照
  814. generateSnap(uuid) {
  815. // 隐藏选择器
  816. this.scene.selectContainer.clear();
  817. setTimeout(() => {
  818. // base64数据
  819. const data = this.view.imageUrl("png");
  820. // 根据base64生成file
  821. const file = base64ToFile(data);
  822. const reader = new FileReader();
  823. const fileType = file.name.split(".");
  824. const imgType = fileType[fileType.length - 1];
  825. return new Promise((resolve, reject) => {
  826. reader.onloadend = function () {
  827. // 这个事件在读取结束后,无论成功或者失败都会触发
  828. if (reader.error) {
  829. console.log("reader error", reader.error);
  830. reject(reader.error);
  831. } else {
  832. // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
  833. const xhr = new XMLHttpRequest();
  834. xhr.open(
  835. "POST",
  836. `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`
  837. );
  838. xhr.send(reader.result);
  839. xhr.onreadystatechange = function () {
  840. if (xhr.readyState == 4) {
  841. if (xhr.status == 200) {
  842. resolve(xhr);
  843. }
  844. }
  845. };
  846. }
  847. };
  848. reader.readAsArrayBuffer(file);
  849. });
  850. }, 80);
  851. },
  852. // 保存草稿
  853. saveDraft(uuid) {
  854. const { elements, outline } = this.scene.save();
  855. const { id, graphId, name, buildingId, floorId, folderId, state, projectId, label = [], note = "" } = this.planContent;
  856. const obj = {
  857. elements, // 平面图展示所需数据
  858. id, //图编号
  859. graphId, // 图 id
  860. name, // 名称
  861. folderId, // 文件夹 id
  862. projectId, // 项目id
  863. label, // 图标签
  864. buildingId, // 建筑 id
  865. floorId, // 楼层 id
  866. state, // 标记
  867. note, // 图说明
  868. style: this.styleMap, // 样式库
  869. ruleList: this.ruleList, // 实例数据获取规则
  870. pic: `${uuid}.png`, // 图快照
  871. version: this.version, // 版本号
  872. viewBackground: this.view.backgroundColor.value, //视图背景色
  873. };
  874. // 区域显示时,上送区域显示的outline点坐标数组
  875. if (outline) {
  876. obj.outline = outline;
  877. }
  878. return new Promise((resolve, reject) => {
  879. planerSave(obj).then((res) => {
  880. if (res.result === "success") {
  881. resolve(res.entityList[0]);
  882. } else {
  883. reject(res.message);
  884. }
  885. });
  886. });
  887. },
  888. // 自动保存
  889. autoSavePlan() {
  890. if (this.scene && this.scene.undoStack.isChange) {
  891. this.savePlanDraft().then(() => {
  892. this.scene.undoStack.isChange = false;
  893. });
  894. }
  895. },
  896. // 发布草稿
  897. issueDraft() {
  898. const pa = {
  899. graphId: this.graphId,
  900. id: this.id,
  901. };
  902. planerPublish(pa)
  903. .then((res) => {
  904. if (res.result === "success") {
  905. this.$message.success(`发布成功${res.entityList[0].version}`);
  906. console.log(this.folderId);
  907. this.$router.push({ name: "Home", params: { folderId: this.folderId } });
  908. } else {
  909. this.$message.error(`发布失败!失败原因:${res.message}`);
  910. }
  911. })
  912. .catch((error) => {
  913. this.$message.error(`发布失败!失败原因:${error}`);
  914. });
  915. },
  916. },
  917. watch: {
  918. editCmd(val) {
  919. // console.trace(val);
  920. if (this.scene) {
  921. // 设置当前编辑状态
  922. this.scene.editCmd = val;
  923. }
  924. },
  925. legendObj: {
  926. handler: function (val, oldVal) {
  927. this.scene.legendObj = val;
  928. },
  929. deep: true,
  930. },
  931. // 监听scale的变化
  932. "view.scale": {
  933. handler(scale) {
  934. // 滚轮触发的缩放
  935. if (!this.changeScaleByClick) {
  936. bus.$emit("mouseScale", scale / this.initScale);
  937. }
  938. },
  939. },
  940. },
  941. beforeDestroy() {
  942. clearInterval(this.autoSave);
  943. },
  944. };
  945. </script>
  946. <style lang="less" scoped>
  947. .basePlan {
  948. width: 100%;
  949. height: 100%;
  950. position: relative;
  951. .planTooltip-box {
  952. position: absolute;
  953. left: 0;
  954. top: 0;
  955. }
  956. .plan-loading {
  957. position: absolute !important;
  958. top: 10px;
  959. left: 50%;
  960. width: 200px;
  961. height: 50px;
  962. z-index: 9;
  963. transform: translateX(-50%);
  964. /deep/ .el-loading-mask {
  965. border-radius: 3px;
  966. background-color: #edf2fc;
  967. .el-loading-spinner {
  968. display: flex;
  969. align-items: center;
  970. justify-content: center;
  971. margin-top: 0 !important;
  972. transform: translateY(-50%) !important;
  973. svg {
  974. width: 20px;
  975. height: 20px;
  976. margin-right: 10px;
  977. circle {
  978. stroke: #909399;
  979. }
  980. }
  981. .el-loading-text {
  982. color: #909399;
  983. }
  984. }
  985. }
  986. }
  987. }
  988. </style>