viewer.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <div class="mainpage" id="rootElement" ref="rootElement"></div>
  3. </template>
  4. <script>
  5. import Vue from 'vue'
  6. import { Topology, Lock, Options, Pen } from '@topology/core'
  7. import * as FileSaver from 'file-saver'
  8. import { Store } from 'le5le-store'
  9. import { monitor } from '../../network/network'
  10. import example from '@/static/json/example.json'
  11. export default {
  12. data()
  13. {
  14. return {
  15. dataSubscribe: '',
  16. nodes: {},
  17. pullDataTimer: '',
  18. paintLockSubscribe: {},
  19. canvas: null,
  20. }
  21. },
  22. mounted()
  23. {
  24. this.init();
  25. this.pullDataTimer = setInterval(this.pullTagData, 1000);
  26. },
  27. watch: {
  28. '$route'(to, from)
  29. {
  30. this.$router.go(0);
  31. }
  32. },
  33. methods: {
  34. init()
  35. {
  36. window.scrollTo(0, 0);
  37. if (this.canvas == null) {
  38. this.canvas = new Topology('rootElement', this.canvasOptions);
  39. this.canvasHeight = this.canvas.canvas.height;
  40. this.dataSubscribe = Store.subscribe('wxwData', value =>
  41. {
  42. for (let i = 0; i < value.length; i++) {
  43. if (this.nodes[value[i].point]) {
  44. let penArray = this.nodes[value[i].point];
  45. for (let e in penArray) {
  46. let pent = penArray[e].binding.type;
  47. switch (pent.toLowerCase()) {
  48. case 'di': {
  49. penArray[e].fillStyle = parseInt(value[i].latestValue) % 2 == 0 ? "#e00404ff" : "#21e004ff";
  50. } break;
  51. case 'ai': {
  52. penArray[e].text = value[i].latestValue;
  53. } break;
  54. default:
  55. { }
  56. break;
  57. }
  58. }
  59. }
  60. else {
  61. // console.log(value[i].point);
  62. //console.log(this.nodes[value[i].point])
  63. }
  64. }
  65. this.canvas.render();
  66. });
  67. this.paintLockSubscribe = Store.subscribe('viewLock', tag =>
  68. {
  69. if (this.canvas) {
  70. this.canvas.lock(tag);
  71. }
  72. });
  73. }
  74. this.open();
  75. },
  76. open()
  77. {
  78. window.v = this.canvas;
  79. window.s = this.$store;
  80. if (this.$route.query.path) {
  81. monitor.getJsonFileBy(this.$route.query.path, res =>
  82. {
  83. if (res.data && res.data.data && res.data.data.pagejson) {
  84. this.canvas.open(res.data.data.pagejson);
  85. this.canvas.lock(2);
  86. }
  87. else {
  88. this.canvas.open(JSON.stringify(example));
  89. this.canvas.lock(2);
  90. }
  91. });
  92. }
  93. else {
  94. this.canvas.open(JSON.stringify(example));
  95. this.canvas.lock(2);
  96. }
  97. },
  98. pullTagData()
  99. {
  100. window.nnn = this.nodes;
  101. //if ((!this.nodes || Object.keys(this.nodes).length == 0) && this.canvas && this.canvas.data.pens.length > 0) {
  102. if (this.canvas && this.canvas.data.pens.length > 0) {
  103. // 遍历出所有要查询的节点
  104. for (let i = 0; i < this.canvas.data.pens.length; i++) {
  105. let node = this.canvas.data.pens[i];
  106. if (node.binding && node.binding.tagName != "") {
  107. if (!this.nodes[node.binding.tagName]) {
  108. this.nodes[node.binding.tagName] = [];
  109. }
  110. if (!this.nodes[node.binding.tagName][node.id]) {
  111. this.nodes[node.binding.tagName][node.id] = node;
  112. }
  113. }
  114. }
  115. }
  116. monitor.getTagValues(Object.keys(this.nodes));
  117. }
  118. },
  119. beforeDestroy()
  120. {
  121. if (this.dataSubscribe != '') {
  122. this.dataSubscribe.unsubscribe();
  123. }
  124. if (this.pullDataTimer != '') {
  125. clearTimeout(this.pullDataTimer);
  126. }
  127. }
  128. }
  129. </script>
  130. <style lang="css" scoped>
  131. .mainpage {
  132. height: 100%;
  133. width: 100%;
  134. }
  135. </style>