index.vue
2.67 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
<template>
<div>
<n-spin size="medium" :show="showLoading" class="player-spin">
<XGPlayer
ref="XGPlayerRef"
@userAction="handleOnUserAction"
:url="sourceUrl"
:stream-type="playType"
:config="{ width: '100%', height: '100%', poster: poster }"
:auto-play="autoplay"
/>
</n-spin>
</div>
</template>
<script setup lang="ts">
import { PropType, toRefs, shallowReactive, watch, ref, nextTick } from 'vue'
import { CreateComponentType } from '@/packages/index.d'
import { Dataset, getPlayUrl, option as configOption } from './config'
import { XGPlayer } from '@/components/Video'
import { StreamType, UserActionEventType } from '@/components/Video/src/types'
import { CameraRecord } from '@/api/external/common/model'
import { isNullOrUnDef } from '@/utils/external/is'
const props = defineProps({
chartConfig: {
type: Object as PropType<CreateComponentType>,
required: true
}
})
const showLoading = ref(false)
const XGPlayerRef = ref<InstanceType<typeof XGPlayer>>()
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 playType = ref<StreamType>()
async function getPlaySource(params: Dataset) {
if (!autoplay.value) return
doPlaySource(params)
}
async function doPlaySource(params?: Dataset) {
const { id, channelId, deviceId, accessMode, customUrl, playProtocol } = params as unknown as Dataset
if (isNullOrUnDef(accessMode)) return
const { type, url } =
(await getPlayUrl({
id: id,
accessMode: accessMode,
playProtocol: playProtocol,
videoUrl: customUrl,
params: {
deviceId: deviceId,
channelNo: channelId
}
} as unknown as CameraRecord)) || {}
sourceUrl.value = url!
playType.value = type
}
function handleOnUserAction(event: UserActionEventType) {
console.log(event)
const { from, to, pluginName } = event
if (from && !to) {
doPlaySource(dataset?.value)
nextTick(() => {
XGPlayerRef.value?.getPlayerInstance()?.play()
})
} else if (!from && to && pluginName !== "fullscreen") {
nextTick(() => {
XGPlayerRef.value?.getPlayerInstance()?.pause()
})
}
}
watch(
() => dataset?.value,
async newData => {
getPlaySource(newData)
},
{
immediate: true
}
)
</script>
<style lang="scss" scoped>
.player-spin {
width: 100%;
height: 100%;
@include deep() {
.n-spin-content {
width: 100%;
height: 100%;
}
}
}
</style>