index.vue
3.01 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
<div>
<n-spin size="medium" :show="showLoading" :content-style="{ background: 'red' }">
<template #description> 视频正在努力加载中...... </template>
<div>
<VideoPlay ref="videoPlayerRef" :baseSize="{ w, h }" :sourceSrc="sourceUrl" :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 { AccessMode, Dataset, option as configOption, sourceTypeEnum } from './config'
import { VideoPlay } from './components'
import { getVideoControlStart } from '@/api/external/flvPlay'
import { getVideoUrl } from '@/api/external/common'
const props = defineProps({
chartConfig: {
type: Object as PropType<CreateComponentType>,
required: true
}
})
const showLoading = ref(false)
const { w, h } = toRefs(props.chartConfig.attr)
const { autoplay, dataset, poster, customVideoUrl } = toRefs(props.chartConfig.option as typeof configOption)
const option = shallowReactive({
dataset: configOption.dataset,
poster: configOption.poster,
autoplay: configOption.autoplay
})
const sourceUrl = ref('')
const videoPlayerRef = ref<InstanceType<typeof VideoPlay> | null>()
// 针对萤石云或者海康威视,根据视频id获取播放流地址
const getVideoUrlById = async (id: string) => {
const res = await getVideoUrl(id)
if (!res) return
const { url } = res.data
return url
}
// 针对gbt28181,根据设备id和通道号获取播放流地址
const getVideoControlList = async (deviceId: string, channelId: string) => {
const {
data: { flv }
} = await getVideoControlStart({
deviceId,
channelId
})
return flv
}
// 针对自定义地址,直接获取地址
const getCustomUrl = (url: string) => {
return url
}
async function getPlaySource(params: Dataset) {
try {
showLoading.value = true
const { accessMode, id, deviceId, channelId, customUrl } = params
if (accessMode === AccessMode.Streaming && id) {
return await getVideoUrlById(id!)
} else if (accessMode === AccessMode.GBT28181 && deviceId && channelId) {
return await getVideoControlList(deviceId!, channelId!)
} else {
return getCustomUrl(customUrl!)
}
} finally {
showLoading.value = false
}
}
watch(
() => dataset?.value,
async (newData) => {
videoPlayerRef.value?.dispose()
sourceUrl.value = await getPlaySource(newData)
videoPlayerRef.value?.anewInit()
},
{
immediate: true
}
)
watch(
() => customVideoUrl.value,
(newData) => {
if(newData){
videoPlayerRef.value?.dispose()
sourceUrl.value = newData;
videoPlayerRef.value?.anewInit()
}
},
{
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>