123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <template>
- <div
- class="screen-element"
- :class="{ link: elementInfo.link }"
- :id="`screen-element-${elementInfo.id}`"
- :style="{
- zIndex: elementIndex,
- color: theme.fontColor,
- fontFamily: theme.fontName,
- fontSize: theme.fontSize,
- visibility: needWaitAnimation ? 'hidden' : 'visible'
- }"
- :title="elementInfo.link?.target || ''"
- @click="$event => openLink($event)"
- >
- <component :is="currentElementComponent" :needWaitAnimation="needWaitAnimation" :elementInfo="elementInfo" />
- </div>
- </template>
- <script lang="ts" setup>
- import { computed } from "vue"
- import { storeToRefs } from "pinia"
- import { useSlidesStore } from "@/store"
- import { ElementTypes, ElementSubtypeTypes, type PPTElement } from "@/types/slides"
- import BaseImageElement from "@/views/components/element/ImageElement/BaseImageElement.vue"
- import BaseTextElement from "@/views/components/element/TextElement/BaseTextElement.vue"
- import BaseShapeElement from "@/views/components/element/ShapeElement/BaseShapeElement.vue"
- import BaseLineElement from "@/views/components/element/LineElement/BaseLineElement.vue"
- import BaseChartElement from "@/views/components/element/ChartElement/BaseChartElement.vue"
- import BaseTableElement from "@/views/components/element/TableElement/BaseTableElement.vue"
- import BaseLatexElement from "@/views/components/element/LatexElement/BaseLatexElement.vue"
- import ScreenVideoElement from "@/views/components/element/VideoElement/ScreenVideoElement.vue"
- import ScreenAudioElement from "@/views/components/element/AudioElement/ScreenAudioElement.vue"
- import ScreenCloudCoachElement from "@/views/components/element/cloudCoachElement/ScreenCloudCoachElement.vue"
- import ScreenEnjoyElement from "@/views/components/element/enjoyElement/ScreenEnjoyElement.vue"
- import ScreenListeningPracticeElement from "@/views/components/element/listeningPracticeElement/ScreenListeningPracticeElement.vue"
- import ScreenRhythmPracticeElement from "@/views/components/element/rhythmPracticeElement/ScreenRhythmPracticeElement.vue"
- const props = defineProps<{
- elementInfo: PPTElement
- elementIndex: number
- animationIndex: number
- turnSlideToId: (id: string) => void
- manualExitFullscreen: () => void
- }>()
- const currentElementComponent = computed<unknown>(() => {
- const elementTypeMap = {
- [ElementTypes.IMAGE]: BaseImageElement,
- [ElementTypes.TEXT]: BaseTextElement,
- [ElementTypes.SHAPE]: BaseShapeElement,
- [ElementTypes.LINE]: BaseLineElement,
- [ElementTypes.CHART]: BaseChartElement,
- [ElementTypes.TABLE]: BaseTableElement,
- [ElementTypes.LATEX]: BaseLatexElement,
- [ElementTypes.ELF]: null
- }
- const elementSubtypeMap = {
- [ElementSubtypeTypes.AUDIO]: ScreenAudioElement,
- [ElementSubtypeTypes.VIDEO]: ScreenVideoElement,
- [ElementSubtypeTypes.SING_PLAY]: ScreenCloudCoachElement,
- [ElementSubtypeTypes.ENJOY]: ScreenEnjoyElement,
- [ElementSubtypeTypes.LISTENING_PRACTICE]: ScreenListeningPracticeElement,
- [ElementSubtypeTypes.RHYTHM_PRACTICE]: ScreenRhythmPracticeElement
- }
- return elementTypeMap[props.elementInfo.type] || elementSubtypeMap[props.elementInfo.subtype] || null
- })
- const { formatedAnimations, theme } = storeToRefs(useSlidesStore())
- const needWaitAnimation = computed(() => {
-
- const elementIndexInAnimation = formatedAnimations.value.findIndex(item => {
- const elIds = item.animations.map(item => item.elId)
- return elIds.includes(props.elementInfo.id)
- })
-
- if (elementIndexInAnimation === -1) return false
-
-
- if (elementIndexInAnimation < props.animationIndex) return false
-
-
- const firstAnimation = formatedAnimations.value[elementIndexInAnimation].animations.find(item => item.elId === props.elementInfo.id)
- if (firstAnimation?.type === "in") return true
- return false
- })
- const openLink = (e: MouseEvent) => {
- if ((e.target as HTMLElement).tagName === "A") {
- props.manualExitFullscreen()
- return
- }
- const link = props.elementInfo.link
- if (!link) return
- if (link.type === "web") {
- props.manualExitFullscreen()
- window.open(link.target)
- } else if (link.type === "slide") {
- props.turnSlideToId(link.target)
- }
- }
- </script>
- <style lang="scss" scoped>
- .link {
- cursor: pointer;
- }
- </style>
|