spaceGraph.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. <template>
  2. <div id="graphContainer" ref="graphContainer">
  3. <div v-show="floorKey" v-loading="canvasLoading">
  4. <el-row class="buttons-box">
  5. <div>
  6. <el-autocomplete popper-class="my-autocomplete" v-model="search" :fetch-suggestions="querySearch"
  7. placeholder="输入平面图中已有的业务空间名称进行查找" width="180px" @select="handleSelect">
  8. <i class="el-icon-search el-input__icon" slot="suffix"></i>
  9. <template slot-scope="{ item }">
  10. <div class="name"
  11. style="position: relative;padding-right:40px;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;"
  12. :title="item.data.RoomLocalName">
  13. {{ item.data.RoomLocalName }}
  14. <span class="addr" style="position: absolute;right:0;color:#409EFF;">定位</span>
  15. </div>
  16. </template>
  17. </el-autocomplete>
  18. </div>
  19. <div class="button-group">
  20. <!-- 默认操作模式 -->
  21. <div v-show="type==1">
  22. <el-dropdown split-button type="primary" @click="editGraphy" @command="handleCommand">
  23. 创建业务空间
  24. <el-dropdown-menu slot="dropdown">
  25. <!-- <el-dropdown-item command="groupCreateBSpace">批量创建业务空间</el-dropdown-item> -->
  26. <el-dropdown-item command="createWall">创建墙体</el-dropdown-item>
  27. </el-dropdown-menu>
  28. </el-dropdown>
  29. <!-- 点击已经关联的业务空间 -->
  30. <el-button plain @click="refactorBSP" :disabled="zoneDisable" style="margin-left:10px;">编辑业务空间</el-button>
  31. <!-- <el-button plain :disabled="zoneDisable" style="margin-left:10px;">维护空间信息</el-button> -->
  32. <el-button plain @click="cancelGraphy" v-show="!zoneDisable">取 消</el-button>
  33. </div>
  34. <!-- 点击未关联的业务空间 -->
  35. <div v-show="type==3">
  36. <el-button plain @click="createNewZone">创建单个全新的业务空间</el-button>
  37. <el-button plain @click="cancelGraphy">取 消</el-button>
  38. </div>
  39. <!-- 重新划分业务空间 -->
  40. <div v-show="type==4">
  41. <el-button plain @click="cancelGraphy">取 消</el-button>
  42. <el-button type="primary" @click="saveRefactorBSP">保存</el-button>
  43. </div>
  44. <!-- 批量创建所选业务空间 -->
  45. <div v-show="type==5">
  46. <el-button type="primary" @click="groupCreateZone">批量创建所选业务空间</el-button>
  47. <el-button plain @click="cancelGraphy">取 消</el-button>
  48. </div>
  49. </div>
  50. </el-row>
  51. <canvas id="spaceCanvas" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
  52. <el-row class="canvas-actions-box">
  53. <canvas-fun :config="config" @fit="fit" @savePng="savePng" @saveSvg="saveSvg" @divide="divide" @clearDivide="clearDivide"
  54. ref="canvasFun" @saveJson="saveJson" @changeAbsorb="changeAbsorb" @scale="scale" @groupSelect="groupSelect" />
  55. </el-row>
  56. </div>
  57. <div v-show="!floorKey">
  58. <p style="text-align:center;margin-top:199px;">
  59. 暂无数据
  60. </p>
  61. </div>
  62. <!-- 创建新的业务空间 -->
  63. <createBSP ref="createBSP" @createRoom="createRoom"></createBSP>
  64. </div>
  65. </template>
  66. <script lang="ts">
  67. import { Vue, Component, Watch } from "vue-property-decorator";
  68. import { FloorView } from "@/utils/graph/FloorView";
  69. import { FloorScene } from "@/utils/graph/FloorScene";
  70. import canvasFun from "./canvasFun.vue";
  71. import {
  72. queryZone,
  73. queryIspace,
  74. createZone,
  75. updateZone,
  76. } from "@/api/datacenter";
  77. import createBSP from "./createBSP";
  78. import colorArr from "@/utils/graph/config/zoneColor";
  79. import { SObject } from "@persagy-web/base/lib";
  80. import { ItemColor } from "@persagy-web/big/lib";
  81. import { SSpaceItem } from "@persagy-web/big/lib/items/floor/SSpaceItem";
  82. import { SZoneItem } from "@persagy-web/big/lib/items/floor/ZoneItem";
  83. import { AppModule } from "@/store/modules/app";
  84. @Component({
  85. components: { canvasFun, createBSP },
  86. })
  87. export default class spaceGraph extends Vue {
  88. canvasWidth = 800;
  89. canvasHeight = 800;
  90. view: FloorView | null = null;
  91. scene: FloorScene | null = null;
  92. canvasLoading = false;
  93. type = 1;
  94. config = {
  95. isEdit: false,
  96. divide: true,
  97. groupSelect: false,
  98. };
  99. search = ""; //搜索
  100. zoneDisable = true;
  101. curZoneItem = {};
  102. zoneList = [];
  103. buildFloor: string[] = [];
  104. floor = {}; // 当前楼层对象
  105. floorKey = ""; // 当前楼层底图请求完整url
  106. curZoneType = "";
  107. allzone = [];
  108. BSPRelaISPList = [];
  109. businessSpaceList = [];
  110. BIMIDToSID = {};
  111. BIMIDToSIName = {};
  112. sourceIdToISP = {};
  113. get mapBaseUrl() {
  114. return AppModule.mapBaseUrl;
  115. }
  116. // 挂载
  117. mounted(): void {
  118. this.canvasWidth = this.$refs.graphContainer.offsetWidth;
  119. this.canvasHeight = this.$refs.graphContainer.offsetHeight;
  120. this.getGraph();
  121. }
  122. // 父组件调用查询楼层底图
  123. getData(floor: any, zoneType: any) {
  124. this.curZoneType = zoneType[zoneType.length - 1];
  125. this.canvasLoading = true;
  126. if (floor.infos && floor.infos.floorMap) {
  127. this.floor = floor;
  128. const url = this.mapBaseUrl + floor.infos.floorMap
  129. if (url == this.floorKey) {
  130. this.init(2)
  131. } else {
  132. this.floorKey = this.mapBaseUrl + floor.infos.floorMap;
  133. this.init(1);
  134. }
  135. } else {
  136. this.noMap();
  137. }
  138. }
  139. // 无底图时操作
  140. noMap() {
  141. this.floorKey = "";
  142. this.canvasLoading = false;
  143. }
  144. // 初始化
  145. init(initType: number): void {
  146. this.type = 1;
  147. if (this.scene) {
  148. this.scene.selectContainer.clear();
  149. this.scene.initSpaceColor();
  150. this.zoneDisable = true;
  151. this.scene.isZoneSelectable = true;
  152. this.scene.isSpaceSelectable = false;
  153. }
  154. if (
  155. this.buildFloor.indexOf("all") > -1 ||
  156. this.buildFloor.indexOf("noKnow") > -1
  157. ) {
  158. return;
  159. }
  160. if (initType == 1) {
  161. // 底图
  162. this.getGraph();
  163. } else {
  164. // 业务空间
  165. this.getBussiness();
  166. }
  167. this.config = {
  168. isEdit: false,
  169. divide: true,
  170. groupSelect: true,
  171. };
  172. // 获取当前楼层的元空间
  173. this.getFloorISpace();
  174. }
  175. // 获取底图
  176. getGraph(): void {
  177. const scene = new FloorScene();
  178. this.canvasLoading = true;
  179. this.clearGraphy();
  180. this.scene = null;
  181. scene.loadUrl(this.floorKey).then((res) => {
  182. if (this.view) {
  183. this.view.scene = scene;
  184. }
  185. this.scene = scene;
  186. this.getGraphSuc(res);
  187. });
  188. }
  189. // 获取底图成功
  190. getGraphSuc(res: any): void {
  191. this.canvasLoading = false;
  192. if (res == "error") {
  193. this.noMap();
  194. this.$message.warning("数据解析异常");
  195. return;
  196. }
  197. if (this.view) {
  198. this.view.fitSceneToView();
  199. this.view.minScale = this.view.scale;
  200. }
  201. if (this.$refs.canvasFun) {
  202. // @ts-ignore
  203. this.$refs.canvasFun.everyScale = this.view.scale;
  204. }
  205. if (this.scene) {
  206. this.scene.changeSelect = this.changeSelect;
  207. this.scene.isSpaceSelectable = false;
  208. }
  209. this.getBussiness();
  210. this.canvasLoading = false;
  211. }
  212. // 清除canvas
  213. clearGraphy() {
  214. if (this.view) {
  215. this.view.scene = null;
  216. return;
  217. }
  218. this.view = new FloorView("spaceCanvas");
  219. }
  220. // 搜索
  221. querySearch(queryString: string, cb: Function) {
  222. let restaurants = this.zoneList;
  223. let results = queryString
  224. ? restaurants.filter(this.createFilter(queryString))
  225. : restaurants;
  226. // 调用 callback 返回建议列表的数据
  227. cb(results);
  228. }
  229. // 过滤器
  230. createFilter(queryString: any) {
  231. return (restaurant: any) => {
  232. return restaurant.data.RoomLocalName.indexOf(queryString) > -1;
  233. };
  234. }
  235. // 查询选中,定位
  236. handleSelect(zone) {
  237. // 清空选中
  238. this.scene?.selectContainer.clear();
  239. this.curZoneItem = zone;
  240. this.scene?.selectContainer.setItem(zone);
  241. this.zoneDisable = false;
  242. this.view.fitSelectedToView();
  243. }
  244. // 点击创建业务空间
  245. editGraphy() {
  246. this.type = 3;
  247. this.config.isEdit = true;
  248. this.config.groupSelect = false;
  249. this.config.divide = true;
  250. this.scene!.isSpaceSelectable = true;
  251. this.scene!.isZoneSelectable = false;
  252. this.view?.update();
  253. console.log(12312312);
  254. }
  255. // 创建新的业务空间
  256. createNewZone() {
  257. let arr = this.scene?.selectContainer.itemList;
  258. if (arr.length) {
  259. let tempArr = [];
  260. arr.map((t) => {
  261. tempArr.push(this.BIMIDToSIName[t.data.SourceId]);
  262. });
  263. this.$refs.createBSP.showDialog(tempArr.toString());
  264. } else {
  265. this.$message.warning("请至少选择一个空间");
  266. }
  267. }
  268. handleCommand() {}
  269. // 编辑业务空间
  270. refactorBSP() {
  271. this.scene!.isZoneSelectable = false;
  272. this.scene!.isSpaceSelectable = true;
  273. this.type = 4;
  274. this.curZoneItem.visible = false;
  275. }
  276. editeSpaceDetail() {}
  277. // 获取元空间
  278. getFloorISpace() {
  279. const pa = {
  280. floorId: this.floor.id,
  281. buildingId: this.floor.buildingId,
  282. pageSize: 2000,
  283. };
  284. queryIspace(pa).then((res) => {
  285. if (res.message == this.floor.id) {
  286. this.BIMIDToSID = {};
  287. this.BIMIDToSIName = {};
  288. this.sourceIdToISP = {};
  289. res.content.map((t) => {
  290. let key = t.bimId.split(":")[1];
  291. this.BIMIDToSID[key] = t.id;
  292. this.BIMIDToSIName[key] = t.localName || t.name;
  293. this.sourceIdToISP[key] = t;
  294. });
  295. }
  296. });
  297. }
  298. // 获取业务空间
  299. getBussiness() {
  300. const pa = {
  301. filters: `classCode='${this.curZoneType}';floorId='${this.floor.id}';buildingId='${this.floor.buildingId}'`,
  302. pageSize: 2000,
  303. };
  304. this.canvasLoading = true;
  305. queryZone(pa).then((res) => {
  306. // if (res.FloorId == this.buildFloor[1] && res.ZoneType == tempType) {
  307. // 所有业务空间
  308. this.businessSpaceList = res.content;
  309. // 已关联元空间的业务空间
  310. this.BSPRelaISPList = [];
  311. res.content.map((t) => {
  312. if (t.outline && t.outline.length) {
  313. this.BSPRelaISPList.push(t);
  314. }
  315. });
  316. // 绘制业务空间
  317. let tempArr = this.BSPRelaISPList.map((t, i) => {
  318. return {
  319. RoomLocalName: t.localName || t.name,
  320. OutLine: t.outline,
  321. RoomID: t.id,
  322. Color: colorArr[i % colorArr.length],
  323. };
  324. }).filter((item) => item);
  325. console.log(this.scene);
  326. this.scene.removeAllZone();
  327. this.scene.addZoneList(tempArr);
  328. this.zoneList = this.scene.zoneList;
  329. this.view.update();
  330. this.canvasLoading = false;
  331. // }
  332. });
  333. }
  334. // 取消(所有取消公用)
  335. cancelGraphy() {
  336. this.init(2);
  337. }
  338. // 重新划分业务空间保存
  339. saveRefactorBSP() {
  340. const arr = this.scene?.selectContainer.itemList;
  341. const zoneObj = {
  342. id: this.curZoneItem.data.RoomID,
  343. classCode: this.curZoneType,
  344. outline: [],
  345. };
  346. if (arr.length) {
  347. arr?.forEach((t) => {
  348. if (t instanceof SSpaceItem) {
  349. zoneObj.outline.push(t.data.OutLine);
  350. }
  351. });
  352. }
  353. const pa = {
  354. content: [zoneObj],
  355. };
  356. this.canvasLoading = true;
  357. updateZone(pa).then((res) => {
  358. this.$message.success("更新成功");
  359. this.init(2);
  360. });
  361. }
  362. groupCreateZone() {}
  363. // 点击平面图事件
  364. changeSelect(selectContainer: SObject, data: any[]) {
  365. if (data.length) {
  366. console.log(data[0]);
  367. if (data[0].length) {
  368. if (data[0][0] instanceof SSpaceItem) {
  369. this.scene?.initSpaceColor();
  370. } else if (data[0][0] instanceof SZoneItem) {
  371. this.scene?.initZoneColor();
  372. this.zoneDisable = false;
  373. this.curZoneItem = data[0][0];
  374. }
  375. } else {
  376. this.scene?.initSpaceColor();
  377. this.scene?.initZoneColor();
  378. this.zoneDisable = true;
  379. }
  380. data[0].forEach((t) => {
  381. t.fillColor = ItemColor.selectColor;
  382. });
  383. } else {
  384. this.scene?.initSpaceColor();
  385. this.scene?.initZoneColor();
  386. this.zoneDisable = true;
  387. }
  388. }
  389. // 根据图创建新的业务空间-弹窗返回确认创建
  390. createRoom(val) {
  391. const zoneObj = {
  392. outline: [],
  393. localName: val,
  394. buildingId: this.floor.buildingId,
  395. floorId: this.floor.id,
  396. classCode: this.curZoneType,
  397. };
  398. let arr = this.scene?.selectContainer.itemList;
  399. arr?.forEach((t) => {
  400. zoneObj.outline.push(t.data.OutLine);
  401. });
  402. const pa = {
  403. content: [zoneObj],
  404. };
  405. this.canvasLoading = true;
  406. createZone(pa).then((res) => {
  407. this.$message.success("创建成功");
  408. this.init(2);
  409. });
  410. }
  411. // 适配底图到窗口
  412. fit() {
  413. this.view?.fitSceneToView();
  414. }
  415. // 保存为png
  416. savePng() {
  417. this.view?.saveImage(`1.png`, "png");
  418. }
  419. // 保存为svg
  420. saveSvg() {
  421. this.view?.saveSceneSvg(`1.svg`, 6400, 4800);
  422. }
  423. // 保存json
  424. saveJson() {
  425. this.view?.saveFloorJson(`1.json`);
  426. }
  427. // 切割划分
  428. divide() {
  429. this.scene.isCutting = true;
  430. }
  431. // 清除切割划分
  432. clearDivide() {
  433. // @ts-ignore
  434. this.view!.scene.clearCut();
  435. }
  436. // 缩放
  437. scale(val: number) {
  438. if (!this.view) {
  439. return;
  440. }
  441. let scale = this.view.scale;
  442. this.view.scaleByPoint(
  443. val / scale,
  444. this.canvasWidth / 2,
  445. this.canvasHeight / 2
  446. );
  447. }
  448. groupSelect() {
  449. console.log("groupSelect");
  450. }
  451. changeAbsorb() {
  452. console.log("changeAbsorb");
  453. }
  454. @Watch("view.scale", { immediate: true, deep: true })
  455. onScaleChange(n: number) {
  456. if (this.$refs.canvasFun) {
  457. // @ts-ignore
  458. let s = (n * 10) / this.view.minScale;
  459. // @ts-ignore
  460. this.$refs.canvasFun.sliderVal = s > 1000 ? 1000 : s;
  461. }
  462. }
  463. }
  464. </script>
  465. <style lang="scss">
  466. #graphContainer {
  467. position: relative;
  468. width: 100%;
  469. height: 100%;
  470. .canvas-actions-box {
  471. position: absolute;
  472. bottom: 14px;
  473. left: 50%;
  474. transform: translateX(-50%);
  475. z-index: 99;
  476. }
  477. .buttons-box {
  478. position: absolute;
  479. top: 16px;
  480. left: 0;
  481. padding: 0 16px;
  482. width: 100%;
  483. z-index: 999;
  484. & > div {
  485. float: left;
  486. }
  487. .el-autocomplete {
  488. display: inline-block;
  489. width: 320px;
  490. margin-right: 10px;
  491. }
  492. .button-group button,
  493. .button-group .el-dropdown {
  494. display: block;
  495. float: left;
  496. }
  497. .my-autocomplete {
  498. li {
  499. line-height: normal;
  500. padding: 7px;
  501. .name {
  502. text-overflow: ellipsis;
  503. overflow: hidden;
  504. }
  505. .addr {
  506. font-size: 12px;
  507. color: #b4b4b4;
  508. }
  509. .highlighted .addr {
  510. color: #ddd;
  511. }
  512. }
  513. }
  514. }
  515. }
  516. </style>