79 lines
2.0 KiB
Vue
79 lines
2.0 KiB
Vue
<script setup lang="ts">
|
|
import {
|
|
getResourcesData,
|
|
getResponsiveClass,
|
|
getResponsiveSrc,
|
|
} from '#layers/utils/dataUtil'
|
|
import type { PageDataComponent } from '#layers/types/api/pageData'
|
|
|
|
const props = defineProps<{
|
|
componentData: PageDataComponent
|
|
gradientClass?: string
|
|
groupSets?: boolean
|
|
}>()
|
|
|
|
const resourcesData = computed(() => {
|
|
return getResourcesData({
|
|
resources: props.componentData?.resources,
|
|
groupSets: props.groupSets,
|
|
})
|
|
})
|
|
const bgStyles = computed(() => {
|
|
return getResponsiveSrc(resourcesData.value?.res_path, {
|
|
resourcesType: 'bg',
|
|
})
|
|
})
|
|
const videoSrc = computed(() => {
|
|
return getResponsiveSrc(resourcesData.value?.res_path, {
|
|
resourcesType: 'video',
|
|
})
|
|
})
|
|
const posterSrc = computed(() => {
|
|
return getResponsiveSrc(resourcesData.value?.res_path)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="absolute inset-0 w-full h-full">
|
|
<!-- 이미지 타입-->
|
|
<div
|
|
v-if="resourcesData?.group_type === 'image'"
|
|
class="w-full h-full bg-cover bg-center bg-no-repeat"
|
|
:class="getResponsiveClass()"
|
|
:style="bgStyles"
|
|
/>
|
|
|
|
<!-- 비디오 타입 -->
|
|
<template v-else-if="resourcesData?.group_type === 'video'">
|
|
<!-- 모바일 비디오 (sm 미만) -->
|
|
<video
|
|
v-if="videoSrc?.mobileSrc"
|
|
class="w-full h-full object-cover sm:hidden"
|
|
:poster="posterSrc?.mobileSrc"
|
|
autoplay
|
|
muted
|
|
loop
|
|
playsinline
|
|
>
|
|
<source :src="videoSrc.mobileSrc" type="video/mp4" />
|
|
<source :src="videoSrc.mobileSrc" type="video/webm" />
|
|
</video>
|
|
<!-- PC 비디오 (sm 이상) -->
|
|
<video
|
|
v-if="videoSrc?.pcSrc"
|
|
class="w-full h-full object-cover hidden sm:block"
|
|
:poster="posterSrc?.pcSrc"
|
|
autoplay
|
|
muted
|
|
loop
|
|
playsinline
|
|
>
|
|
<source :src="videoSrc.pcSrc" type="video/mp4" />
|
|
<source :src="videoSrc.pcSrc" type="video/webm" />
|
|
</video>
|
|
</template>
|
|
|
|
<div class="absolute inset-0" :class="gradientClass" />
|
|
</div>
|
|
</template>
|