LineShape.vue 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <script setup>
  2. import {computed,onMounted,ref} from 'vue'
  3. import { useDebounceFn } from '@vueuse/core'
  4. import LineMarker from './LineMarker.vue'
  5. const props=defineProps({
  6. itemData:{
  7. type:Object,
  8. default:{}
  9. }
  10. })
  11. const svgWidth=computed(()=>{
  12. const width = Math.abs(props.itemData.start[0] - props.itemData.end[0])
  13. return width < 25 ? 25 : width
  14. })
  15. const svgHeight=computed(()=>{
  16. const height = Math.abs(props.itemData.start[1] - props.itemData.end[1])
  17. return height < 25 ? 25 : height
  18. })
  19. // 需要单独缩放图层模块
  20. let scale=ref('')
  21. const domResize=useDebounceFn (()=>{
  22. console.log('更新layer大小');
  23. const w= document.getElementsByClassName('ppt-detail-page')[0].clientWidth
  24. scale.value=`scale(${w/906},${w/906})`
  25. },0)
  26. onMounted(() => {
  27. window.addEventListener("resize", () => {
  28. // domResize()
  29. }, false)
  30. })
  31. </script>
  32. <template>
  33. <div
  34. class="line-shape-box"
  35. :style="{
  36. top: itemData.percentageTop*100 + '%',
  37. left: itemData.percentageLeft*100 + '%',
  38. transform:scale
  39. }"
  40. >
  41. <svg
  42. overflow="visible"
  43. :width="svgWidth"
  44. :height="svgHeight"
  45. >
  46. <defs>
  47. <LineMarker
  48. v-if="itemData.points[0]"
  49. :id="itemData.id"
  50. position="start"
  51. :type="itemData.points[0]"
  52. :color="itemData.color"
  53. :baseSize="itemData.strokeWidth"
  54. />
  55. <LineMarker
  56. v-if="itemData.points[1]"
  57. :id="itemData.id"
  58. position="end"
  59. :type="itemData.points[1]"
  60. :color="itemData.color"
  61. :baseSize="itemData.strokeWidth"
  62. />
  63. </defs>
  64. <path
  65. :d="`M ${itemData.start[0]}, ${itemData.start[1]} L ${itemData.end[0]}, ${itemData.end[1]}`"
  66. fill="none"
  67. :stroke="itemData.color"
  68. :stroke-width="itemData.strokeWidth"
  69. :stroke-dasharray="itemData.style === 'dashed' ? '10 6' : '0 0'"
  70. :marker-start="itemData.points[0] ? `url(#${itemData.id}-${itemData.points[0]}-start)` : ''"
  71. :marker-end="itemData.points[1] ? `url(#${itemData.id}-${itemData.points[1]}-end)` : ''"
  72. ></path>
  73. </svg>
  74. </div>
  75. </template>
  76. <style lang="scss" scoped>
  77. .line-shape-box{
  78. position: absolute;
  79. pointer-events: none;
  80. transform-origin: 0 0;
  81. svg{
  82. overflow:visible;
  83. transform-origin: 0 0;
  84. }
  85. }
  86. </style>