mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
160 lines
4.1 KiB
Vue
160 lines
4.1 KiB
Vue
<template>
|
|
<div
|
|
class="base-element-shape"
|
|
:style="{
|
|
top: elementInfo.top + 'px',
|
|
left: elementInfo.left + 'px',
|
|
width: elementInfo.width + 'px',
|
|
height: elementInfo.height + 'px',
|
|
}"
|
|
>
|
|
<div
|
|
class="rotate-wrapper"
|
|
:style="{ transform: `rotate(${elementInfo.rotate}deg)` }"
|
|
>
|
|
<div
|
|
class="element-content"
|
|
:style="{
|
|
opacity: elementInfo.opacity,
|
|
filter: shadowStyle ? `drop-shadow(${shadowStyle})` : '',
|
|
transform: flipStyle,
|
|
color: text.defaultColor,
|
|
fontFamily: text.defaultFontName,
|
|
}"
|
|
>
|
|
<svg
|
|
overflow="visible"
|
|
:width="elementInfo.width"
|
|
:height="elementInfo.height"
|
|
>
|
|
<defs v-if="elementInfo.gradient">
|
|
<GradientDefs
|
|
:id="`base-gradient-${elementInfo.id}`"
|
|
:type="elementInfo.gradient.type"
|
|
:color1="elementInfo.gradient.color[0]"
|
|
:color2="elementInfo.gradient.color[1]"
|
|
:rotate="elementInfo.gradient.rotate"
|
|
/>
|
|
</defs>
|
|
<g
|
|
:transform="`scale(${elementInfo.width / elementInfo.viewBox[0]}, ${elementInfo.height / elementInfo.viewBox[1]}) translate(0,0) matrix(1,0,0,1,0,0)`"
|
|
>
|
|
<path
|
|
vector-effect="non-scaling-stroke"
|
|
stroke-linecap="butt"
|
|
stroke-miterlimit="8"
|
|
stroke-linejoin=""
|
|
:d="elementInfo.path"
|
|
:fill="elementInfo.gradient ? `url(#base-gradient-${elementInfo.id})` : elementInfo.fill"
|
|
:stroke="outlineColor"
|
|
:stroke-width="outlineWidth"
|
|
:stroke-dasharray="outlineStyle === 'dashed' ? '10 5' : '0 0'"
|
|
></path>
|
|
</g>
|
|
</svg>
|
|
|
|
<div class="shape-text" :class="text.align">
|
|
<div class="ProseMirror-static" v-html="text.content"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent, PropType } from 'vue'
|
|
import { PPTShapeElement, ShapeText } from '@/types/slides'
|
|
import useElementOutline from '@/views/components/element/hooks/useElementOutline'
|
|
import useElementShadow from '@/views/components/element/hooks/useElementShadow'
|
|
import useElementFlip from '@/views/components/element/hooks/useElementFlip'
|
|
|
|
import GradientDefs from './GradientDefs.vue'
|
|
|
|
export default defineComponent({
|
|
name: 'base-element-shape',
|
|
components: {
|
|
GradientDefs,
|
|
},
|
|
props: {
|
|
elementInfo: {
|
|
type: Object as PropType<PPTShapeElement>,
|
|
required: true,
|
|
},
|
|
},
|
|
setup(props) {
|
|
const outline = computed(() => props.elementInfo.outline)
|
|
const { outlineWidth, outlineStyle, outlineColor } = useElementOutline(outline)
|
|
|
|
const shadow = computed(() => props.elementInfo.shadow)
|
|
const { shadowStyle } = useElementShadow(shadow)
|
|
|
|
const flipH = computed(() => props.elementInfo.flipH)
|
|
const flipV = computed(() => props.elementInfo.flipV)
|
|
const { flipStyle } = useElementFlip(flipH, flipV)
|
|
|
|
const text = computed<ShapeText>(() => {
|
|
const defaultText: ShapeText = {
|
|
content: '',
|
|
defaultFontName: '微软雅黑',
|
|
defaultColor: '#000',
|
|
align: 'middle',
|
|
}
|
|
if (!props.elementInfo.text) return defaultText
|
|
|
|
return props.elementInfo.text
|
|
})
|
|
|
|
return {
|
|
shadowStyle,
|
|
outlineWidth,
|
|
outlineStyle,
|
|
outlineColor,
|
|
flipStyle,
|
|
text,
|
|
}
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.base-element-shape {
|
|
position: absolute;
|
|
}
|
|
.rotate-wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.element-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
|
|
svg {
|
|
transform-origin: 0 0;
|
|
overflow: visible;
|
|
}
|
|
}
|
|
.shape-text {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
line-height: 1.2;
|
|
word-break: break-word;
|
|
|
|
&.top {
|
|
justify-content: flex-start;
|
|
}
|
|
&.middle {
|
|
justify-content: center;
|
|
}
|
|
&.bottom {
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
</style>
|