2021-12-05 11:19:25 +08:00

118 lines
2.9 KiB
Vue

<template>
<div
class="editable-element-shape"
:style="{
top: elementInfo.top + 'px',
left: elementInfo.left + 'px',
}"
>
<div
class="element-content"
:style="{ filter: shadowStyle ? `drop-shadow(${shadowStyle})` : '' }"
>
<svg
overflow="visible"
:width="svgWidth"
:height="svgHeight"
>
<defs>
<LinePointMarker
v-if="elementInfo.points[0]"
:id="elementInfo.id"
position="start"
:type="elementInfo.points[0]"
:color="elementInfo.color"
:baseSize="elementInfo.width"
/>
<LinePointMarker
v-if="elementInfo.points[1]"
:id="elementInfo.id"
position="end"
:type="elementInfo.points[1]"
:color="elementInfo.color"
:baseSize="elementInfo.width"
/>
</defs>
<path
:d="path"
:stroke="elementInfo.color"
:stroke-width="elementInfo.width"
:stroke-dasharray="lineDashArray"
fill="none"
stroke-linecap
stroke-linejoin
stroke-miterlimit
:marker-start="elementInfo.points[0] ? `url(#${elementInfo.id}-${elementInfo.points[0]}-start)` : ''"
:marker-end="elementInfo.points[1] ? `url(#${elementInfo.id}-${elementInfo.points[1]}-end)` : ''"
></path>
</svg>
</div>
</div>
</template>
<script lang="ts">
import { computed, defineComponent, PropType } from 'vue'
import { PPTLineElement } from '@/types/slides'
import { getLineElementPath } from '@/utils/element'
import useElementShadow from '@/views/components/element/hooks/useElementShadow'
import LinePointMarker from './LinePointMarker.vue'
export default defineComponent({
name: 'editable-element-shape',
components: {
LinePointMarker,
},
props: {
elementInfo: {
type: Object as PropType<PPTLineElement>,
required: true,
},
},
setup(props) {
const shadow = computed(() => props.elementInfo.shadow)
const { shadowStyle } = useElementShadow(shadow)
const svgWidth = computed(() => {
const width = Math.abs(props.elementInfo.start[0] - props.elementInfo.end[0])
return width < 24 ? 24 : width
})
const svgHeight = computed(() => {
const height = Math.abs(props.elementInfo.start[1] - props.elementInfo.end[1])
return height < 24 ? 24 : height
})
const lineDashArray = computed(() => props.elementInfo.style === 'dashed' ? '10, 5' : '0, 0')
const path = computed(() => {
return getLineElementPath(props.elementInfo)
})
return {
shadowStyle,
svgWidth,
svgHeight,
lineDashArray,
path,
}
},
})
</script>
<style lang="scss" scoped>
.editable-element-shape {
position: absolute;
}
.element-content {
width: 100%;
height: 100%;
position: relative;
svg {
transform-origin: 0 0;
overflow: visible;
}
}
</style>