baseTopoEditer.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <div class="baseTopo" ref="baseTopo">
  3. <canvas id="persagy_topo" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
  4. </div>
  5. </template>
  6. <script>
  7. import { PTopoScene } from "@/components/editClass/persagy-edit";
  8. // import { BaseLineEdit } from "@/components/editClass/big-edit";
  9. import { SGraphView } from "@persagy-web/graph";
  10. import { mapState, mapMutations } from "vuex";
  11. export default {
  12. data() {
  13. return {
  14. scene: null, //场景
  15. view: null, //视图
  16. canvasWidth: 700, //画布宽
  17. canvasHeight: 700 //画布高
  18. };
  19. },
  20. computed: {
  21. ...mapState(["choiceLegend"])
  22. },
  23. mounted() {
  24. this.canvasWidth = this.$refs.baseTopo.offsetWidth;
  25. this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
  26. this.scene = new PTopoScene();
  27. this.view = new SGraphView("persagy_topo");
  28. this.view.scene = this.scene;
  29. this.scene.clearCmdStatus = this.clearCmdStatus;
  30. // this.scene.root.children = [];
  31. // this.lineItem = new BaseLineEdit(null, []);
  32. // this.lineItem.status = SItemStatus.Create;
  33. // this.lineItem.connect("finishCreated", this, this.finishCreated);
  34. // this.scene.addItem(this.lineItem);
  35. // this.scene.grabItem = this.lineItem;
  36. // this.view.update();
  37. },
  38. methods: {
  39. ...mapMutations(["SETCHOICELEHEND"]),
  40. // 恢复命令状态
  41. clearCmdStatus() {
  42. this.SETCHOICELEHEND("");
  43. }
  44. },
  45. watch: {
  46. choiceLegend(val) {
  47. if (this.scene) {
  48. // 设置当前编辑状态
  49. this.scene.editCmd = this.choiceLegend;
  50. }
  51. }
  52. }
  53. };
  54. </script>
  55. <style lang="less" scoped>
  56. .baseTopo {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. </style>