top_toolbar.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. <template>
  2. <div id='top_toolbar'>
  3. <!-- 顶部编辑器 -->
  4. <div class='tit'>
  5. <!-- <a-icon type="left" /> -->
  6. {{this.urlMsg.floorName}}
  7. </div>
  8. <div class='tool'>
  9. <ul>
  10. <li @click='saveMsg'>
  11. <img class='lock' :src='require(`./../../assets/images/t-save.png`)' alt />
  12. <span>保存</span>
  13. </li>
  14. <!-- <li>
  15. <a-icon type="edit" />
  16. <span>撤销</span>
  17. </li>
  18. <li>
  19. <a-icon type="edit" />
  20. <span>重做</span>
  21. </li>-->
  22. <li class='zoom-window'>
  23. <div>
  24. <img class='lock' @click='handleScale(-1)' :src='require(`./../../assets/images/缩小.png`)' alt />
  25. <span class='percentage'>{{scalePercent}}</span>
  26. <img class='lock' @click='handleScale(1)' :src='require(`./../../assets/images/放大 amplification.png`)' alt />
  27. </div>
  28. <span>缩放窗口</span>
  29. </li>
  30. <li>
  31. <a-dropdown :trigger='[`click`]'>
  32. <div class='ant-dropdown-link dropdown-flex' @click='e => e.preventDefault()'>
  33. <div>
  34. <img class='lock' :src='require(`./../../assets/images/t-format.png`)' alt />
  35. <div>对齐</div>
  36. </div>
  37. <a-icon type='caret-down' class='down-icon' />
  38. </div>
  39. <a-menu slot='overlay'>
  40. <a-menu-item
  41. :disabled='item.disable'
  42. v-for='item in alignmentOptions'
  43. :key='item.value'
  44. @click='changeAlignItem(item.value)'
  45. >
  46. <img style='width: 16px;margin-right: 5px;' :src='require(`./../../assets/images/`+item.img+`.png`)' alt />
  47. <span>{{item.label}}</span>
  48. </a-menu-item>
  49. </a-menu>
  50. </a-dropdown>
  51. </li>
  52. <!-- <li>
  53. <a-icon type="edit" />
  54. <span>图层</span>
  55. </li>
  56. <li>
  57. <a-icon type="edit" />
  58. <span>组合</span>
  59. </li>
  60. <li>
  61. <a-icon type="edit" />
  62. <span>打散</span>
  63. </li>-->
  64. <li @click='lockItem'>
  65. <Icon :name='!isLock?`lock`:`unlock`' />
  66. <span>{{isLock?"解锁":"锁定"}}</span>
  67. </li>
  68. <li @click='deleteItem'>
  69. <a-icon type='delete' />
  70. <span>删除</span>
  71. </li>
  72. <li>
  73. <a-upload
  74. name='avatar'
  75. class='avatar-uploader'
  76. :show-upload-list='false'
  77. :customRequest='customRequest'
  78. action='https://jsonplaceholder.typicode.com/posts/'
  79. :before-upload='beforeUpload'
  80. @change='handleChange'
  81. >
  82. <img v-if='0' :src='imageUrl' alt='avatar' />
  83. <div v-else>
  84. <a-icon :type='loading ? `loading` : `edit`' />
  85. <div class='ant-upload-text'>修改底图</div>
  86. </div>
  87. </a-upload>
  88. </li>
  89. </ul>
  90. </div>
  91. <div class='btn-list'>
  92. <div class='btn-list-item' @click='publishMap'>
  93. <Icon name='release' />
  94. <span>发布</span>
  95. </div>
  96. </div>
  97. </div>
  98. </template>
  99. <script>
  100. import bus from '@/bus'
  101. import { SGraphLayoutType } from '@saga-web/graph/lib'
  102. import systym from './codeMapSystem.js'
  103. import { MessageBox } from 'element-ui'
  104. import { uploadImg } from '@/api/editer.js'
  105. function getBase64(img, callback) {
  106. const reader = new FileReader()
  107. reader.addEventListener('load', () => callback(reader.result))
  108. reader.readAsDataURL(img)
  109. }
  110. export default {
  111. data() {
  112. return {
  113. loading: false, //添加图片,是否显示loading
  114. imageUrl: '',
  115. isLock: false, //是否锁定
  116. focusItem: null,
  117. alignmentOptions: [
  118. //对齐数据
  119. {
  120. value: SGraphLayoutType.Left,
  121. label: '左对齐',
  122. img: 't-left',
  123. disable: true
  124. },
  125. {
  126. value: SGraphLayoutType.Right,
  127. label: '右对齐',
  128. img: 't-right',
  129. disable: true
  130. },
  131. {
  132. value: SGraphLayoutType.Top,
  133. label: '顶对齐',
  134. img: 't-top',
  135. disable: true
  136. },
  137. {
  138. value: SGraphLayoutType.Bottom,
  139. label: '底对齐',
  140. img: 't-bottom',
  141. disable: true
  142. },
  143. {
  144. value: SGraphLayoutType.Center,
  145. label: '水平居中对齐',
  146. img: 't-center',
  147. disable: true
  148. },
  149. {
  150. value: SGraphLayoutType.Middle,
  151. label: '垂直居中对齐',
  152. img: 't-topandbottm',
  153. disable: true
  154. },
  155. {
  156. value: SGraphLayoutType.Vertical,
  157. label: '垂直分布',
  158. img: 't-vertical',
  159. disable: true
  160. },
  161. {
  162. value: SGraphLayoutType.Horizontal,
  163. label: '水平分布',
  164. img: 't-level',
  165. disable: true
  166. }
  167. ],
  168. scale: 0.5, //底图缩放比例
  169. initScale: 0.5, //初始 底图缩放比例
  170. baseScale: 1.0, //底图基础缩放比例,由底图加载完成后,传入进来
  171. scaleStep: 0.05 // +-缩放步进
  172. }
  173. },
  174. computed: {
  175. // 缩放比例显示文本
  176. scalePercent() {
  177. return (this.scale * 100).toFixed(0) + '%'
  178. }
  179. },
  180. methods: {
  181. handleChange(info) {
  182. if (info.file.status === 'uploading') {
  183. this.loading = true
  184. return
  185. }
  186. if (info.file.status === 'done') {
  187. // Get this url from response in real world.
  188. getBase64(info.file.originFileObj, imageUrl => {
  189. this.imageUrl = imageUrl
  190. this.loading = false
  191. console.log(imageUrl)
  192. bus.$emit('changeImgUrl', imageUrl)
  193. })
  194. }
  195. },
  196. beforeUpload(file) {
  197. const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png'
  198. if (!isJpgOrPng) {
  199. this.$message.error('You can only upload JPG file!')
  200. }
  201. const isLt2M = file.size / 1024 / 1024 < 2
  202. if (!isLt2M) {
  203. this.$message.error('Image must smaller than 2MB!')
  204. }
  205. return isJpgOrPng && isLt2M
  206. },
  207. // TODO: customRequest
  208. customRequest(info) {
  209. const formData = new FormData()
  210. formData.append('file', info.file)
  211. const postParams = formData
  212. uploadImg({ postParams }).then(res => {
  213. this.loading = false
  214. if (res.Result == 'success') {
  215. this.$message.success(`${info.file.name} file uploaded successfully.`)
  216. bus.$emit('changeImgUrl', res.EntityList[0])
  217. } else {
  218. this.$message.error(`${info.file.name} file upload failed.`)
  219. }
  220. })
  221. },
  222. /**
  223. * @name getInitScale
  224. * @description 获取底图加载完成后的,初始化的缩放比例initScale,设置为baseScale
  225. */
  226. getInitScale() {
  227. bus.$on('initScale', baseScale => {
  228. this.baseScale = Number(baseScale || 1)
  229. })
  230. },
  231. /**
  232. * @name getMouseScale
  233. * @description 滚轮滚动,导致的底图缩放比例 逻辑处理
  234. */
  235. getMouseScale() {
  236. // zoom 为缩放后改变的比例
  237. bus.$on('mouseScale', zoom => {
  238. this.scale = Number((zoom * this.initScale).toFixed(2))
  239. })
  240. },
  241. /**
  242. * @name handleScale
  243. * @param { Number } type -1:点击 - 缩小底图; 1:点击 + 放大底图
  244. * @description 点击 -+ 缩放底图
  245. */
  246. handleScale(type) {
  247. // +-按钮禁用处理
  248. let flag = true
  249. // 设置缩放范围 0.05 ~ 100
  250. if ((type < 0 && this.scale <= 0.05) || (type > 0 && this.scale >= 100)) {
  251. flag = false
  252. } else {
  253. flag = true
  254. }
  255. if (!flag) {
  256. return false
  257. }
  258. // emit 缩放比例 this.scale / oldScale
  259. const oldScale = this.scale
  260. this.scale = Number((oldScale + type * this.scaleStep).toFixed(2))
  261. bus.$emit('changeScale', this.scale / oldScale)
  262. },
  263. FocusItemChanged(itemMsg) {
  264. this.focusItem = null
  265. this.alignmentOptions.forEach(el => {
  266. el.disable = true
  267. })
  268. if (itemMsg.itemList.length == 1) {
  269. this.isLock = itemMsg.itemList[0].moveable
  270. this.focusItem = itemMsg.itemList[0]
  271. } else if (itemMsg.itemList.length > 1) {
  272. this.alignmentOptions.forEach(el => {
  273. el.disable = false
  274. })
  275. }
  276. },
  277. lockItem() {
  278. if (this.focusItem) {
  279. this.isLock = !this.isLock
  280. this.focusItem.moveable = this.isLock
  281. } else {
  282. this.$message.error('请选择指定对象!', 1)
  283. }
  284. },
  285. saveMsg() {
  286. // this.$message.success("保存成功!", 1);
  287. bus.$emit('saveMsgItem')
  288. },
  289. // 删除item
  290. deleteItem() {
  291. console.log(this.focusItem)
  292. if (this.focusItem) {
  293. bus.$emit('deleiteItem')
  294. // this.focusItem = null;
  295. this.$message.success('删除成功', 1)
  296. } else {
  297. this.$message.error('请选择指定对象!', 1)
  298. }
  299. },
  300. // 发布图例
  301. publishMap() {
  302. MessageBox.confirm('确认后即发布到平台?', '提示', {
  303. confirmButtonText: '确认',
  304. cancelButtonText: '取消',
  305. type: 'warning'
  306. })
  307. .then(() => {
  308. bus.$emit('publishMap')
  309. })
  310. .catch(() => {})
  311. },
  312. // 对齐item
  313. changeAlignItem(val) {
  314. bus.$emit('changeAlignItem', val)
  315. }
  316. },
  317. async mounted() {
  318. bus.$on('FocusItemChanged', itemMsg => {
  319. console.log('itemMsg', itemMsg)
  320. this.FocusItemChanged(itemMsg)
  321. })
  322. // 获取底图加载完成后的初始sacle
  323. await this.getInitScale()
  324. // 监听滚轮 底图缩放比例
  325. this.getMouseScale()
  326. },
  327. created() {
  328. const href = window.location.href
  329. // 路由
  330. // const route = href.split("?")[0];
  331. // 参数处理
  332. let params = href.split('?')[1]
  333. if (!params) {
  334. // 参数有问题
  335. return false
  336. }
  337. params = decodeURIComponent(params)
  338. // params = "categoryId=NTXT&ProjectID=5&BuildingID=1&FloorID=1"; // mock 参数
  339. const paramsArr = params.split('&')
  340. console.log('paramsArr', paramsArr)
  341. const obj = {}
  342. paramsArr.map(item => {
  343. const arr = item.split('=')
  344. obj[arr[0]] = arr[1]
  345. })
  346. this.urlMsg = obj
  347. const FloorName = this.urlMsg.FloorName ? this.urlMsg.FloorName : ''
  348. this.urlMsg.floorName = systym[this.urlMsg.categoryId] + '-' + FloorName
  349. }
  350. }
  351. </script>
  352. <style lang="less" scoped>
  353. ul,
  354. li {
  355. /*margin: 0;*/
  356. /*padding: 0;*/
  357. list-style: none;
  358. }
  359. #top_toolbar {
  360. width: 100%;
  361. height: 60px;
  362. background: rgba(255, 255, 255, 1);
  363. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  364. display: flex;
  365. align-items: center;
  366. justify-content: space-between;
  367. padding: 0 24px 0 24px;
  368. .tit {
  369. // flex: 1;
  370. font-size: 18px;
  371. font-weight: bold;
  372. color: #1f2429;
  373. }
  374. .tool {
  375. ul {
  376. display: flex;
  377. li {
  378. display: flex;
  379. justify-content: center;
  380. flex-direction: column;
  381. /*width: 62px;*/
  382. padding: 0 7px;
  383. margin-left: 7px;
  384. font-size: 12px;
  385. align-items: center;
  386. text-align: center;
  387. cursor: pointer;
  388. img {
  389. width: 16px;
  390. height: 16px;
  391. }
  392. .percentage {
  393. display: inline-block;
  394. width: 35px;
  395. border-bottom: 1px solid #c3c7cb;
  396. margin: 0 13px;
  397. font-size: 14px;
  398. }
  399. .dropdown-flex {
  400. display: flex;
  401. align-items: center;
  402. .down-icon {
  403. margin-left: 12px;
  404. }
  405. }
  406. }
  407. li:hover {
  408. background: #f5f6f7;
  409. }
  410. .zoom-window {
  411. border-left: 1px solid #8d9399;
  412. border-right: 1px solid #8d9399;
  413. }
  414. }
  415. }
  416. .btn-list {
  417. display: flex;
  418. align-items: center;
  419. justify-content: center;
  420. width: 72px;
  421. .btn-list-item {
  422. display: flex;
  423. justify-content: center;
  424. flex-direction: column;
  425. span {
  426. font-size: 12px;
  427. }
  428. cursor: pointer;
  429. }
  430. }
  431. }
  432. /deep/ .ant-dropdown-menu-item {
  433. display: flex;
  434. align-items: center;
  435. }
  436. </style>