baseTopoEditer.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. <template>
  2. <div class="baseTopo" id="baseTopo" ref="baseTopo">
  3. <topoTooltip
  4. v-show="showTooltip"
  5. class="topoTooltip-box"
  6. ref="topoTooltip"
  7. @closeTooltip="showTooltip = false"
  8. :havItem="havItem"
  9. ></topoTooltip>
  10. <canvas
  11. id="persagy_topo"
  12. :width="canvasWidth"
  13. :height="canvasHeight"
  14. tabindex="0"
  15. ></canvas>
  16. </div>
  17. </template>
  18. <script>
  19. import {
  20. PTopoScene,
  21. PTopoParser,
  22. PTopoView,
  23. } from "@/components/editClass/persagy-edit";
  24. // import { SGraphView } from "@persagy-web/graph";
  25. // import { SFloorParser } from "@persagy-web/big/lib";
  26. import topoTooltip from "./topoTooltip.vue";
  27. import { mapState, mapMutations } from "vuex";
  28. import base64ToFile from "@/utils/base64ToFile"
  29. import { v1 as uuidv1 } from "uuid";
  30. import bus from "@/bus/bus";
  31. import {
  32. saveGroup,
  33. readGroup,
  34. uploadGroup,
  35. getImageGroup,
  36. readPubGroup,
  37. } from "@/api/editer";
  38. import { publishGraph } from "@/api/home"
  39. export default {
  40. components: { topoTooltip },
  41. data() {
  42. return {
  43. scene: null, //场景
  44. view: null, //视图
  45. canvasWidth: 700, //画布宽
  46. canvasHeight: 700, //画布高
  47. havItem: false, //右击是否选中item
  48. showTooltip: false, //是否显示tooltip
  49. topoContent: {}, // 读图后存储图所有数据
  50. };
  51. },
  52. computed: {
  53. ...mapState([
  54. "editCmd",
  55. "legendObj",
  56. "graphId",
  57. "id",
  58. "isPub",
  59. "categoryId",
  60. "projectId",
  61. ]),
  62. },
  63. mounted() {
  64. this.canvasWidth = this.$refs.baseTopo.offsetWidth;
  65. this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
  66. this.scene = new PTopoScene();
  67. this.view = new PTopoView("persagy_topo");
  68. this.view.scene = this.scene;
  69. this.scene.clearCmdStatus = this.clearCmdStatus;
  70. // 初始化bus绑定事件
  71. this.initBusEvent();
  72. // 右键事件
  73. this.scene.getItem = this.onContextMenu;
  74. this.scene.emitChoice = this.emitChoice;
  75. //左键事件
  76. this.scene.vueOnMouseDown = this.vueOnMouseDown;
  77. // 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
  78. document.getElementById("baseTopo").oncontextmenu = function (e) {
  79. return false;
  80. };
  81. // 读取底图
  82. this.readtopoMsg();
  83. },
  84. methods: {
  85. ...mapMutations([
  86. "SETCHOICELEHEND",
  87. "SETLEGENDOBJ",
  88. "SETPROJECT",
  89. "SETCATEGROY",
  90. "SETISPUB",
  91. ]),
  92. // 恢复命令状态
  93. clearCmdStatus() {
  94. this.SETCHOICELEHEND("");
  95. this.SETLEGENDOBJ(null);
  96. },
  97. // 右键获取item
  98. onContextMenu(item, [event]) {
  99. this.showTooltip = true;
  100. if (item) {
  101. this.havItem = true;
  102. } else {
  103. this.havItem = false;
  104. }
  105. const doms = document.getElementsByClassName("topoTooltip-box")[0];
  106. doms.style.left = event.offsetX + "px";
  107. doms.style.top = event.offsetY + "px";
  108. },
  109. // 左键事键
  110. vueOnMouseDown(e) {
  111. // 关闭tooltip
  112. this.showTooltip = false;
  113. },
  114. // 选中后的回调函数
  115. emitChoice(itemList) {
  116. bus.$emit("emitChoice", itemList);
  117. },
  118. //初始化bus绑定事件
  119. initBusEvent() {
  120. // 改变样式
  121. bus.$off('updateStyle');
  122. bus.$on("updateStyle", (type, val) => {
  123. this.scene.updateStyle(type, val);
  124. });
  125. // 撤销
  126. bus.$off('topoUndo');
  127. bus.$on("topoUndo", (val) => {
  128. this.scene.undo();
  129. });
  130. // 重做
  131. bus.$off('topoRedo');
  132. bus.$on("topoRedo", (val) => {
  133. this.scene.redo();
  134. });
  135. // 删除
  136. bus.$off('deleteItem');
  137. bus.$on("deleteItem", (val) => {
  138. this.scene.deleteItem();
  139. });
  140. // 复制
  141. bus.$off('copy');
  142. bus.$on("copy", (val) => {
  143. this.scene.copy();
  144. });
  145. // 粘贴
  146. bus.$off('paste');
  147. bus.$on("paste", (val) => {
  148. this.scene.paste();
  149. });
  150. // 保存
  151. bus.$off('saveTopo');
  152. bus.$on("saveTopo", (val) => {
  153. this.saveTopoDraft()
  154. });
  155. // 设置实例置顶置底
  156. bus.$off('setOrder');
  157. bus.$on("setOrder", (val) => {
  158. this.scene.setOrder(val);
  159. });
  160. // 设置实例status状态
  161. bus.$off('setItemStatus');
  162. bus.$on("setItemStatus", (val) => {
  163. this.scene.setItemStatus();
  164. });
  165. // 下载图片
  166. bus.$off('saveTopoImg');
  167. bus.$on("saveTopoImg", () => {
  168. // 隐藏选择器
  169. this.scene.selectContainer.clear();
  170. setTimeout(() => {
  171. this.view.saveImage(`${this.topoContent.name}.png`, "png");
  172. },80)
  173. });
  174. // 发布图片
  175. bus.$off('issueTopo');
  176. bus.$on("issueTopo", () => {
  177. this.saveTopoDraft().then(() => {
  178. this.issueDraft()
  179. })
  180. });
  181. // 手动添加设备实例
  182. bus.$off('addEquipment');
  183. bus.$on("addEquipment", (val) => {
  184. this.addEquipmentList(val);
  185. });
  186. },
  187. // 读取拓扑图
  188. readtopoMsg() {
  189. const obj = {
  190. graphId: this.graphId,
  191. id: this.id,
  192. };
  193. if (this.isPub == 1) {
  194. // 已发布
  195. readPubGroup(obj).then((res) => {
  196. this.getDataSuc(res);
  197. });
  198. } else {
  199. readGroup(obj).then((res) => {
  200. this.getDataSuc(res);
  201. });
  202. }
  203. },
  204. // 读图成功回调
  205. getDataSuc(res) {
  206. if(res.result == "failure") return;
  207. this.SETCATEGROY(res.content.categoryId);
  208. this.topoContent = res.content;
  209. const parse = new PTopoParser();
  210. parse.parseData(res.content.elements);
  211. parse.markers.forEach((item) => {
  212. item.selectable = true;
  213. item.moveable = true;
  214. item.connect("finishCreated", this.scene, this.scene.finishCreated);
  215. item.connect("onContextMenu", this, this.scene.getItem);
  216. this.scene.addItem(item);
  217. });
  218. parse.nodes.forEach((item) => {
  219. item.connect("finishCreated", this.scene, this.scene.finishCreated);
  220. item.connect("onContextMenu", this, this.scene.getItem);
  221. this.scene.addItem(item);
  222. });
  223. this.view.fitSceneToView();
  224. },
  225. // 保存草稿
  226. saveTopoDraft(){
  227. const uuid = uuidv1();
  228. return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)]).then(vals => {
  229. this.$message.success(`保存成功${vals[1].version}`);
  230. })
  231. },
  232. // 生成快照
  233. generateSnap(uuid) {
  234. // 隐藏选择器
  235. this.scene.selectContainer.clear();
  236. setTimeout(() => {
  237. // base64数据
  238. const data = this.view.imageUrl('png');
  239. // 根据base64生成file
  240. const file = base64ToFile(data);
  241. const reader = new FileReader();
  242. const fileType = file.name.split(".");
  243. const imgType = fileType[fileType.length - 1];
  244. return new Promise((resolve, reject) => {
  245. reader.onloadend = function () {
  246. // 这个事件在读取结束后,无论成功或者失败都会触发
  247. if (reader.error) {
  248. console.log('reader error', reader.error);
  249. reject(reader.error)
  250. } else {
  251. // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
  252. const xhr = new XMLHttpRequest();
  253. xhr.open("POST", `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`);
  254. xhr.send(reader.result);
  255. xhr.onreadystatechange = function () {
  256. if (xhr.readyState == 4) {
  257. if (xhr.status == 200) {
  258. resolve(xhr)
  259. }
  260. }
  261. };
  262. }
  263. };
  264. reader.readAsArrayBuffer(file);
  265. })
  266. },80)
  267. },
  268. // 保存草稿
  269. saveDraft(uuid) {
  270. const elements = this.scene.save();
  271. const obj = {
  272. elements,
  273. name: this.topoContent.name, // 名称
  274. categoryId: this.categoryId, // 图分类ID
  275. projectId: this.projectId, // 项目ID
  276. label: this.topoContent.label,
  277. buildingId: "1", // 建筑ID
  278. floorId: "1", // 楼层id
  279. note: "1", // 图说明
  280. pic: `${uuid}.png`,
  281. graphId: this.graphId,
  282. id: this.id,
  283. log: {
  284. // 图操作日志
  285. mark: "1", // 图的存盘标记
  286. commandList: [
  287. {
  288. command: "1", // 命令
  289. desc: "1", // 描述
  290. detail: "1", // 详情
  291. },
  292. ],
  293. },
  294. };
  295. return new Promise((resolve, reject) => {
  296. saveGroup(obj).then((res) => {
  297. // 如果是从已发布跳转过来
  298. if (this.isPub == 1) {
  299. // 设置发布状态为 未发布
  300. this.SETISPUB(0);
  301. const gid = res.entityList[0].graphId;
  302. const id = res.entityList[0].id;
  303. // 重设图id 与 id
  304. this.SETPROJECT({ graphId: gid, id: id });
  305. // 修改url参数
  306. this.$router.push({
  307. name: "Editer",
  308. query: {
  309. graphId: gid,
  310. id: id,
  311. categoryName: encodeURI(this.categoryName),
  312. isPub: 0,
  313. },
  314. });
  315. }
  316. resolve(res.entityList[0])
  317. });
  318. })
  319. },
  320. // 发布草稿
  321. issueDraft(){
  322. const pa = {
  323. graphId: this.graphId,
  324. id: this.id
  325. }
  326. publishGraph(pa).then(res => {
  327. this.$message.success('发布成功');
  328. })
  329. },
  330. // 手动添加设备
  331. addEquipmentList(list) {
  332. const parse = new PTopoParser();
  333. list.forEach((item, i) => {
  334. const x = (i + 1) * 100;
  335. let data = {
  336. /** 名称 */
  337. name: "基础设备",
  338. /** 返回物理世界对象 ID 列表 */
  339. attachObjectIds: [item.id],
  340. size: { width: 50, height: 50 },
  341. /** 图标 (Image),线类型 (Line) */
  342. type: "Image",
  343. /** 位置 */
  344. pos: { x: x, y: 100 },
  345. /** 由应用自己定义 */
  346. properties: {
  347. type: "BaseEquipment",
  348. },
  349. style: {
  350. default: {
  351. strokecolor: "#c0ccda",
  352. url: require("./../../assets/images/equip/lengganji.svg"),
  353. },
  354. },
  355. };
  356. parse.addNode(data);
  357. parse.nodes.forEach((item) => {
  358. item.connect("finishCreated", this.scene, this.scene.finishCreated);
  359. item.connect("onContextMenu", this, this.scene.getItem);
  360. this.scene.addItem(item);
  361. });
  362. this.view.fitSceneToView();
  363. });
  364. },
  365. },
  366. watch: {
  367. editCmd(val) {
  368. console.log("val", val);
  369. if (this.scene) {
  370. // 设置当前编辑状态
  371. this.scene.editCmd = val;
  372. }
  373. },
  374. legendObj: {
  375. handler: function (val, oldVal) {
  376. this.scene.legendObj = val;
  377. },
  378. deep: true,
  379. },
  380. },
  381. created() {
  382. this.SETPROJECT(this.$route.query);
  383. this.SETISPUB(this.$route.query.isPub);
  384. this.categoryName = decodeURI(this.$route.query.categoryName);
  385. },
  386. };
  387. </script>
  388. <style lang="less" scoped>
  389. .baseTopo {
  390. width: 100%;
  391. height: 100%;
  392. position: relative;
  393. .topoTooltip-box {
  394. position: absolute;
  395. left: 0;
  396. top: 0;
  397. }
  398. }
  399. </style>