right_toolbar.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <template>
  2. <div id="right_toolbar">
  3. <!-- 右侧侧编辑器 -->
  4. <a-tabs class="atabless" default-active-key="1" @change="callback">
  5. <a-tab-pane key="1" tab="属性">
  6. <div class="property">
  7. <ul class="position">
  8. <li v-for="(item,i) in msgList" :key="i">
  9. <a-input
  10. :disabled="item.disable"
  11. @change="changeStatus(item)"
  12. size="small"
  13. v-model="item.msg"
  14. placeholder
  15. :suffix="item.unit"
  16. />
  17. </li>
  18. <li @click="lockItem" :title="isLock?'锁定':'解锁'">
  19. <Icon style="vertical-align: middle;" :name="isLock?'lock':'unlock'" />
  20. </li>
  21. </ul>
  22. <equipment-attr :key="key" v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
  23. <attrSelect v-else-if="attrType" :type="attrType" :focusItemList="focusItemList" />
  24. <baseInfo v-show='!attrType' ></baseInfo>
  25. <!-- <attrSelect v-show="attrType !== 'Equipment' " :type="attrType" :focusItemList="focusItemList" /> -->
  26. </div>
  27. </a-tab-pane>
  28. <a-tab-pane key="2" tab="元素" force-render>
  29. <div class="element">
  30. <a-input-search placeholder="搜索" style="margin-bottom: 12px;" v-model="key" @search="onSearch" />
  31. <ul class="element-list">
  32. <li v-for="ele in elementData" :key="ele.id" v-show="key?ele.name.search(key) != -1:true">
  33. <el-image style="width: 45px; height: 26px; margin-top: 6px;" :src="ele.data.Properties.IconUrl" fit="contain"></el-image>
  34. <span class="element-name">{{ele.name}}</span>
  35. </li>
  36. </ul>
  37. </div>
  38. </a-tab-pane>
  39. </a-tabs>
  40. </div>
  41. </template>
  42. <script>
  43. import attrSelect from "@/components/edit/attr_select";
  44. import equipmentAttr from './equipmentAttr.vue'
  45. import baseInfo from './baseInfo.vue'
  46. import bus from "@/bus";
  47. import bus2 from "@/bus2";
  48. import { SImageMarkerItem } from "../../lib/items/SImageMarkerItem";
  49. import { SImageLegendItem } from "../../lib/items/SImageLegendItem";
  50. import { SEquipmentItem } from "../../lib/items/SEquipmentItem";
  51. const msgList = [
  52. {
  53. msg: "",
  54. disable: false,
  55. name: "X",
  56. unit: "x"
  57. },
  58. {
  59. msg: "",
  60. disable: false,
  61. name: "Y",
  62. unit: "y"
  63. },
  64. {
  65. msg: "0°",
  66. disable: true,
  67. name: "",
  68. unit: ""
  69. },
  70. {
  71. msg: "",
  72. disable: true,
  73. name: "Width",
  74. unit: "w"
  75. },
  76. {
  77. msg: "",
  78. disable: true,
  79. name: "Height",
  80. unit: "h"
  81. }
  82. ];
  83. // import Select from "@/components/Select/Select.vue";
  84. export default {
  85. props: {
  86. focusItemList: {
  87. type: Object,
  88. default: function() {
  89. return {};
  90. },
  91. required: false
  92. }
  93. },
  94. components: {
  95. attrSelect,equipmentAttr,baseInfo
  96. },
  97. created() {
  98. this.listenElementData();
  99. },
  100. data() {
  101. return {
  102. msgList,
  103. attrType: "",
  104. elementData: [],
  105. key: "",
  106. isLock: true,
  107. aspectRatio: 1, // 元素宽高比
  108. key:1
  109. };
  110. },
  111. methods: {
  112. // 获取元素数据
  113. listenElementData() {
  114. bus2.$off('elementDataChange')
  115. bus2.$on("elementDataChange", val => {
  116. this.elementData = [];
  117. console.log(val);
  118. if (val.Nodes.length) {
  119. // 过滤掉 设备类 SEquipmentItem,不在右侧组件中暂时组件类
  120. let data = val.Nodes.filter(item => !item instanceof SEquipmentItem);
  121. this.elementData = this.elementData.concat(data);
  122. }
  123. if (val.Markers.length) {
  124. this.elementData = this.elementData.concat(val.Markers);
  125. }
  126. if (val.Relations.length) {
  127. this.elementData = this.elementData.concat(val.Relations);
  128. }
  129. console.log(this.elementData);
  130. });
  131. },
  132. callback(key) {
  133. console.log(key);
  134. },
  135. // 元素检索
  136. onSearch(key) {
  137. console.log(key);
  138. },
  139. // 切换锁状态
  140. lockItem() {
  141. this.isLock = !this.isLock;
  142. if (this.isLock) {
  143. let width, height;
  144. this.msgList.forEach(item => {
  145. if (item.name == "Width") {
  146. width = item.msg;
  147. } else if (item.name == "Height") {
  148. height = item.msg;
  149. }
  150. });
  151. this.aspectRatio = width / height;
  152. }
  153. },
  154. // 改变状态
  155. changeStatus(item) {
  156. if (item.name == "Width") {
  157. if (this.isLock) {
  158. const height = item.msg / this.aspectRatio;
  159. this.msgList.find(item => {
  160. return item.name == "Height";
  161. }).msg = height;
  162. bus.$emit("itemHeight", height);
  163. }
  164. bus.$emit("itemWidth", item.msg);
  165. } else if (item.name == "Height") {
  166. if (this.isLock) {
  167. const width = item.msg * this.aspectRatio;
  168. this.msgList.find(item => {
  169. return item.name == "Width";
  170. }).msg = width;
  171. bus.$emit("itemWidth", width);
  172. }
  173. bus.$emit("itemHeight", item.msg);
  174. } else if (item.name == "X" || item.name == "Y") {
  175. let x,
  176. y = "";
  177. this.msgList.forEach(t => {
  178. if (t.name == "X") {
  179. x = t.msg;
  180. } else if (t.name == "Y") {
  181. y = t.msg;
  182. }
  183. });
  184. bus.$emit("itemPositon", x, y);
  185. }
  186. }
  187. },
  188. watch: {
  189. focusItemList: function(newVal) {
  190. console.log('=================')
  191. console.log('focusItemList',newVal)
  192. this.attrType = newVal.itemType;
  193. this.key++
  194. // if (newVal.itemList.length !== 1) {
  195. // this.msgList.forEach(item => {
  196. // if (item.name == "X") {
  197. // item.msg = 0;
  198. // }
  199. // if (item.name == "Y") {
  200. // item.msg = 0;
  201. // }
  202. // if (item.name == "Width") {
  203. // item.msg = 0;
  204. // }
  205. // if (item.name == "Height") {
  206. // item.msg = 0;
  207. // }
  208. // });
  209. // this.aspectRatio = 1;
  210. // } else {
  211. // // 属性输入框宽高显示的数值
  212. // let inputW, inputH;
  213. // this.msgList.forEach(item => {
  214. // const Item = newVal.itemList[0];
  215. // const width = Item.boundingRect().width;
  216. // const height = Item.boundingRect().height;
  217. // if (item.name == "X") {
  218. // item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).x;
  219. // }
  220. // if (item.name == "Y") {
  221. // item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).y;
  222. // }
  223. // if (item.name == "Width") {
  224. // item.msg = width;
  225. // // Icon显示图片宽
  226. // if (Item instanceof SImageLegendItem) {
  227. // item.msg = Item.img.width;
  228. // }
  229. // // 针对图片及Icon
  230. // if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
  231. // item.disable = false;
  232. // } else {
  233. // item.disable = true;
  234. // }
  235. // inputW = item.msg;
  236. // }
  237. // if (item.name == "Height") {
  238. // item.msg = height;
  239. // // Icon显示图片高
  240. // if (Item instanceof SImageLegendItem) {
  241. // item.msg = Item.img.height;
  242. // }
  243. // // 针对图片及Icon
  244. // if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
  245. // item.disable = false;
  246. // } else {
  247. // item.disable = true;
  248. // }
  249. // inputH = item.msg;
  250. // }
  251. // });
  252. // this.aspectRatio = inputW / inputH;
  253. // }
  254. }
  255. }
  256. };
  257. </script>
  258. <style lang="less" scoped>
  259. ul,
  260. li {
  261. margin: 0;
  262. padding: 0;
  263. list-style: none;
  264. }
  265. #right_toolbar {
  266. width: 280px;
  267. height: 100%;
  268. background: rgba(255, 255, 255, 1);
  269. box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.11);
  270. .atabless {
  271. height: 100%;
  272. width: 100%;
  273. }
  274. .property {
  275. width: 100%;
  276. height: 100%;
  277. .formatting {
  278. display: flex;
  279. height: 50px;
  280. padding: 0 12px 0 12px;
  281. box-sizing: border-box;
  282. align-items: center;
  283. justify-content: space-around;
  284. li {
  285. width: 16px;
  286. height: 16px;
  287. cursor: pointer;
  288. img {
  289. width: 16px;
  290. height: 16px;
  291. }
  292. }
  293. }
  294. .position {
  295. display: flex;
  296. padding: 0 12px 30px 12px;
  297. box-sizing: border-box;
  298. display: flex;
  299. border-bottom: 1px solid #c3c7cb;
  300. flex-wrap: wrap;
  301. li {
  302. margin-top: 10px;
  303. width: 30%;
  304. margin-right: 8px;
  305. .lock {
  306. width: 16px;
  307. height: 16px;
  308. cursor: pointer;
  309. }
  310. }
  311. }
  312. }
  313. .element {
  314. margin: 0 12px 0 12px;
  315. height: 100%;
  316. .element-list {
  317. height: calc(100% - 44px);
  318. overflow-y: auto;
  319. box-sizing: border-box;
  320. li {
  321. width: 100%;
  322. height: 38px;
  323. line-height: 38px;
  324. padding-left: 12px;
  325. box-sizing: border-box;
  326. color: #1f2429;
  327. .element-name {
  328. display: inline-block;
  329. vertical-align: top;
  330. line-height: 38px;
  331. }
  332. &:hover {
  333. background: #f5f6f7;
  334. }
  335. }
  336. }
  337. }
  338. }
  339. /deep/ .ant-tabs .ant-tabs-top-content.ant-tabs-content-animated {
  340. height: calc(100% - 60px);
  341. }
  342. </style>