baseTopoEditer.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <div class="baseTopo" id="baseTopo" ref="baseTopo">
  3. <topoTooltip
  4. v-show="showTooltip"
  5. class="topoTooltip-box"
  6. ref="topoTooltip"
  7. :havItem="havItem"
  8. ></topoTooltip>
  9. <canvas
  10. id="persagy_topo"
  11. :width="canvasWidth"
  12. :height="canvasHeight"
  13. tabindex="0"
  14. ></canvas>
  15. </div>
  16. </template>
  17. <script>
  18. import { PTopoScene, PTopoParser } from "@/components/editClass/persagy-edit";
  19. import { SGraphView } from "@persagy-web/graph";
  20. import { SFloorParser } from "@persagy-web/big/lib";
  21. import topoTooltip from "./topoTooltip.vue";
  22. import { mapState, mapMutations } from "vuex";
  23. import bus from "@/bus/bus";
  24. import { saveGroup, readGroup, uploadGroup, getImageGroup } from "@/api/editer";
  25. export default {
  26. components: { topoTooltip },
  27. data() {
  28. return {
  29. scene: null, //场景
  30. view: null, //视图
  31. canvasWidth: 700, //画布宽
  32. canvasHeight: 700, //画布高
  33. havItem: false, //右击是否选中item
  34. showTooltip: false, //是否显示tooltip
  35. };
  36. },
  37. computed: {
  38. ...mapState(["choiceLegend", "legendObj"]),
  39. },
  40. mounted() {
  41. this.canvasWidth = this.$refs.baseTopo.offsetWidth;
  42. this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
  43. this.scene = new PTopoScene();
  44. this.view = new SGraphView("persagy_topo");
  45. this.view.scene = this.scene;
  46. this.scene.clearCmdStatus = this.clearCmdStatus;
  47. // 初始化bus绑定事件
  48. this.initBusEvent();
  49. // 右键事件
  50. this.scene.getItem = this.onContextMenu;
  51. this.scene.emitChoice = this.emitChoice;
  52. //左键事件
  53. this.scene.vueOnMouseDown = this.vueOnMouseDown;
  54. // 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
  55. document.getElementById("baseTopo").oncontextmenu = function (e) {
  56. return false;
  57. };
  58. // 读取底图
  59. this.readtopoMsg();
  60. // 读取平面图-------测试代码
  61. // this.readMapmsg();
  62. },
  63. methods: {
  64. ...mapMutations(["SETCHOICELEHEND"]),
  65. // 恢复命令状态
  66. clearCmdStatus() {
  67. this.SETCHOICELEHEND("");
  68. this.SETLEGENDOBJ(null);
  69. },
  70. // 右键获取item
  71. onContextMenu(item, [event]) {
  72. this.showTooltip = true;
  73. if (item) {
  74. this.havItem = true;
  75. } else {
  76. this.havItem = false;
  77. }
  78. const doms = document.getElementsByClassName("topoTooltip-box")[0];
  79. doms.style.left = event.offsetX + "px";
  80. doms.style.top = event.offsetY + "px";
  81. },
  82. // 左键事键
  83. vueOnMouseDown(e) {
  84. // 关闭tooltip
  85. this.showTooltip = false;
  86. },
  87. // 选中后的回调函数
  88. emitChoice(itemList) {
  89. bus.$emit("emitChoice", itemList);
  90. },
  91. //初始化bus绑定事件
  92. initBusEvent() {
  93. // 改变样式
  94. bus.$on("updateStyle", (type, val) => {
  95. this.scene.updateStyle(type, val);
  96. });
  97. // 撤销
  98. bus.$on("topoUndo", (val) => {
  99. this.scene.undo();
  100. });
  101. // 重做
  102. bus.$on("topoRedo", (val) => {
  103. this.scene.redo();
  104. });
  105. // 删除
  106. bus.$on("deleteItem", (val) => {
  107. this.scene.deleteItem();
  108. });
  109. // 复制
  110. bus.$on("copy", (val) => {
  111. this.scene.copy();
  112. });
  113. // 粘贴
  114. bus.$on("paste", (val) => {
  115. this.scene.paste();
  116. });
  117. // 保存
  118. bus.$on("saveTopo", (val) => {
  119. const elements = this.scene.save();
  120. const obj = {
  121. elements,
  122. name: "1", // 名称
  123. categoryID: "1", // 图分类ID
  124. projectID: "1", // 项目ID
  125. buildingID: "1", // 建筑ID
  126. floorID: "1", // 楼层id
  127. note: "1", // 图说明
  128. log: {
  129. // 图操作日志
  130. mark: "1", // 图的存盘标记
  131. commandList: [
  132. {
  133. command: "1", // 命令
  134. desc: "1", // 描述
  135. detail: "1", // 详情
  136. },
  137. ],
  138. },
  139. };
  140. Object.assign(obj, {
  141. graphId: "cd8ca79c337644d48c58c447cf21b757",
  142. id: "f15506fa5dcc4ce79064e459e5497748",
  143. });
  144. console.log(obj);
  145. saveGroup(obj).then((res) => {
  146. console.log("res", res);
  147. });
  148. });
  149. },
  150. // 读取拓扑图
  151. readtopoMsg() {
  152. let obj = {
  153. graphId: "cd8ca79c337644d48c58c447cf21b757",
  154. id: "f15506fa5dcc4ce79064e459e5497748",
  155. };
  156. readGroup(obj).then((res) => {
  157. const parse = new PTopoParser();
  158. parse.parseData(res.content.elements);
  159. parse.markers.forEach((item) => {
  160. item.selectable = true;
  161. item.moveable = true;
  162. this.scene.addItem(item);
  163. });
  164. });
  165. },
  166. readMapmsg() {
  167. let parser = new SFloorParser();
  168. const msg = require("./../../assets/map/1.json");
  169. parser.parseData(msg.EntityList[0].Elements);
  170. parser.spaceList.forEach((t) => this.scene.addItem(t));
  171. parser.wallList.forEach((t) => this.scene.addItem(t));
  172. parser.virtualWallList.forEach((t) => this.scene.addItem(t));
  173. parser.doorList.forEach((t) => this.scene.addItem(t));
  174. parser.columnList.forEach((t) => this.scene.addItem(t));
  175. parser.casementList.forEach((t) => this.scene.addItem(t));
  176. this.view.fitSceneToView();
  177. },
  178. },
  179. watch: {
  180. choiceLegend(val) {
  181. if (this.scene) {
  182. // 设置当前编辑状态
  183. this.scene.editCmd = this.choiceLegend;
  184. }
  185. },
  186. legendObj: {
  187. handler: function (val, oldVal) {
  188. this.scene.legendObj = val;
  189. },
  190. deep: true,
  191. },
  192. },
  193. };
  194. </script>
  195. <style lang="less" scoped>
  196. .baseTopo {
  197. width: 100%;
  198. height: 100%;
  199. position: relative;
  200. .topoTooltip-box {
  201. position: absolute;
  202. left: 0;
  203. top: 0;
  204. }
  205. }
  206. </style>