index.vue
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
<div>
<n-spin size="medium" :show="showLoading" :content-style="{ background: 'red' }">
<template #description> 视频正在努力加载中...... </template>
<div>
<VideoPlay
:baseSize="{ w, h }"
:sourceSrc="option.dataset"
:autoPlay="option.autoplay"
:avatar="option.poster"
/>
</div>
</n-spin>
</div>
</template>
<script setup lang="ts">
import { PropType, toRefs, shallowReactive, watch, ref } from 'vue'
import { CreateComponentType } from '@/packages/index.d'
import { option as configOption } from './config'
import { VideoPlay } from './components'
const props = defineProps({
chartConfig: {
type: Object as PropType<CreateComponentType>,
required: true
}
})
const showLoading = ref(true)
const { w, h } = toRefs(props.chartConfig.attr)
const { autoplay, dataset, poster } = toRefs(props.chartConfig.option as typeof configOption)
const option = shallowReactive({
dataset: configOption.dataset,
poster: configOption.poster,
autoplay: configOption.autoplay
})
const loadTime = (time: number, status: boolean) => {
setTimeout(() => {
showLoading.value = status
}, time)
}
watch(
() => dataset?.value,
(newData: string) => {
loadTime(800, true)
if (newData) {
loadTime(2000, false)
}
option.dataset = newData
},
{
immediate: true
}
)
watch(
() => [poster.value, autoplay.value],
newData => {
option.poster = newData.at(-2) as string
option.autoplay = newData.at(-1) as boolean
},
{
immediate: true
}
)
</script>
<style lang="scss" scoped></style>