baseTopoEditer.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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 { PTopoScene, PTopoParser } from "@/components/editClass/persagy-edit";
  20. import { SGraphView } from "@persagy-web/graph";
  21. import { SFloorParser } from "@persagy-web/big/lib";
  22. import topoTooltip from "./topoTooltip.vue";
  23. import { mapState, mapMutations } from "vuex";
  24. import bus from "@/bus/bus";
  25. import {
  26. saveGroup,
  27. readGroup,
  28. uploadGroup,
  29. getImageGroup,
  30. readPubGroup,
  31. } from "@/api/editer";
  32. export default {
  33. components: { topoTooltip },
  34. data() {
  35. return {
  36. scene: null, //场景
  37. view: null, //视图
  38. canvasWidth: 700, //画布宽
  39. canvasHeight: 700, //画布高
  40. havItem: false, //右击是否选中item
  41. showTooltip: false, //是否显示tooltip
  42. topoContent: {}, // 读图后存储图所有数据
  43. };
  44. },
  45. computed: {
  46. ...mapState([
  47. "editCmd",
  48. "legendObj",
  49. "graphId",
  50. "id",
  51. "isPub",
  52. "categoryId",
  53. "projectId",
  54. ]),
  55. },
  56. mounted() {
  57. this.canvasWidth = this.$refs.baseTopo.offsetWidth;
  58. this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
  59. this.scene = new PTopoScene();
  60. this.view = new SGraphView("persagy_topo");
  61. this.view.scene = this.scene;
  62. this.scene.clearCmdStatus = this.clearCmdStatus;
  63. // 初始化bus绑定事件
  64. this.initBusEvent();
  65. // 右键事件
  66. this.scene.getItem = this.onContextMenu;
  67. this.scene.emitChoice = this.emitChoice;
  68. //左键事件
  69. this.scene.vueOnMouseDown = this.vueOnMouseDown;
  70. // 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
  71. document.getElementById("baseTopo").oncontextmenu = function (e) {
  72. return false;
  73. };
  74. // 读取底图
  75. this.readtopoMsg();
  76. },
  77. methods: {
  78. ...mapMutations([
  79. "SETCHOICELEHEND",
  80. "SETLEGENDOBJ",
  81. "SETPROJECT",
  82. "SETCATEGROY",
  83. "SETISPUB",
  84. ]),
  85. // 恢复命令状态
  86. clearCmdStatus() {
  87. this.SETCHOICELEHEND("");
  88. this.SETLEGENDOBJ(null);
  89. },
  90. // 右键获取item
  91. onContextMenu(item, [event]) {
  92. this.showTooltip = true;
  93. if (item) {
  94. this.havItem = true;
  95. } else {
  96. this.havItem = false;
  97. }
  98. const doms = document.getElementsByClassName("topoTooltip-box")[0];
  99. doms.style.left = event.offsetX + "px";
  100. doms.style.top = event.offsetY + "px";
  101. },
  102. // 左键事键
  103. vueOnMouseDown(e) {
  104. // 关闭tooltip
  105. this.showTooltip = false;
  106. },
  107. // 选中后的回调函数
  108. emitChoice(itemList) {
  109. bus.$emit("emitChoice", itemList);
  110. },
  111. //初始化bus绑定事件
  112. initBusEvent() {
  113. // 改变样式
  114. bus.$on("updateStyle", (type, val) => {
  115. this.scene.updateStyle(type, val);
  116. });
  117. // 撤销
  118. bus.$on("topoUndo", (val) => {
  119. this.scene.undo();
  120. });
  121. // 重做
  122. bus.$on("topoRedo", (val) => {
  123. this.scene.redo();
  124. });
  125. // 删除
  126. bus.$on("deleteItem", (val) => {
  127. this.scene.deleteItem();
  128. });
  129. // 复制
  130. bus.$on("copy", (val) => {
  131. this.scene.copy();
  132. });
  133. // 粘贴
  134. bus.$on("paste", (val) => {
  135. this.scene.paste();
  136. });
  137. // 保存
  138. bus.$on("saveTopo", (val) => {
  139. const elements = this.scene.save();
  140. const obj = {
  141. elements,
  142. name: this.topoContent.name, // 名称
  143. categoryId: this.categoryId, // 图分类ID
  144. projectId: this.projectId, // 项目ID
  145. label: this.topoContent.label,
  146. buildingId: "1", // 建筑ID
  147. floorId: "1", // 楼层id
  148. note: "1", // 图说明
  149. log: {
  150. // 图操作日志
  151. mark: "1", // 图的存盘标记
  152. commandList: [
  153. {
  154. command: "1", // 命令
  155. desc: "1", // 描述
  156. detail: "1", // 详情
  157. },
  158. ],
  159. },
  160. };
  161. Object.assign(obj, {
  162. graphId: this.graphId,
  163. id: this.id,
  164. });
  165. console.log(obj);
  166. saveGroup(obj).then((res) => {
  167. // 设置发布状态为 未发布
  168. this.SETISPUB(0);
  169. const gid = res.entityList[0].graphId;
  170. const id = res.entityList[0].id;
  171. // 重设图id 与 id
  172. this.SETPROJECT({ graphId: gid, id: id });
  173. // 修改url参数
  174. this.$router.push({
  175. name: "Editer",
  176. query: {
  177. graphId: gid,
  178. id: id,
  179. categoryName: encodeURI(this.categoryName),
  180. isPub: 0,
  181. },
  182. });
  183. });
  184. });
  185. // 设置实例置顶置底
  186. bus.$on("setOrder", (val) => {
  187. this.scene.setOrder(val);
  188. });
  189. // 设置实例status状态
  190. bus.$on("setItemStatus", (val) => {
  191. this.scene.setItemStatus();
  192. });
  193. },
  194. // 读取拓扑图
  195. readtopoMsg() {
  196. const obj = {
  197. graphId: this.graphId,
  198. id: this.id,
  199. };
  200. if (this.isPub == 1) {
  201. // 已发布
  202. readPubGroup(obj).then((res) => {
  203. this.getDataSuc(res);
  204. });
  205. } else {
  206. readGroup(obj).then((res) => {
  207. this.getDataSuc(res);
  208. });
  209. }
  210. },
  211. // 读图成功回调
  212. getDataSuc(res) {
  213. this.SETCATEGROY(res.content.categoryId);
  214. this.topoContent = res.content;
  215. const parse = new PTopoParser();
  216. parse.parseData(res.content.elements);
  217. parse.markers.forEach((item) => {
  218. item.selectable = true;
  219. item.moveable = true;
  220. item.connect("finishCreated", this.scene, this.scene.finishCreated);
  221. item.connect("onContextMenu", this, this.scene.getItem);
  222. this.scene.addItem(item);
  223. });
  224. parse.nodes.forEach((item) => {
  225. item.connect("finishCreated", this.scene, this.scene.finishCreated);
  226. item.connect("onContextMenu", this, this.scene.getItem);
  227. this.scene.addItem(item);
  228. });
  229. this.view.fitSceneToView()
  230. },
  231. },
  232. watch: {
  233. editCmd(val) {
  234. console.log("val", val);
  235. if (this.scene) {
  236. // 设置当前编辑状态
  237. this.scene.editCmd = val;
  238. }
  239. },
  240. legendObj: {
  241. handler: function (val, oldVal) {
  242. this.scene.legendObj = val;
  243. },
  244. deep: true,
  245. },
  246. },
  247. created() {
  248. this.SETPROJECT(this.$route.query);
  249. this.SETISPUB(this.$route.query.isPub);
  250. this.categoryName = decodeURI(this.$route.query.categoryName);
  251. },
  252. };
  253. </script>
  254. <style lang="less" scoped>
  255. .baseTopo {
  256. width: 100%;
  257. height: 100%;
  258. position: relative;
  259. .topoTooltip-box {
  260. position: absolute;
  261. left: 0;
  262. top: 0;
  263. }
  264. }
  265. </style>