| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- <template>
- <div class="video-controls-wrap">
- <div class="left">
- <div
- class="play"
- @click="appStore.playing = !appStore.playing"
- >
- <n-icon size="25">
- <Pause v-if="appStore.playing"></Pause>
- <Play v-else></Play>
- </n-icon>
- </div>
- <div
- class="refresh"
- @click="debounceRefresh"
- >
- <n-icon size="25">
- <RefreshSharp></RefreshSharp>
- </n-icon>
- </div>
- <div
- class="muted"
- @click="cacheStore.setMuted(!cacheStore.muted)"
- >
- <n-popover
- placement="top"
- trigger="hover"
- :flip="false"
- :style="{ padding: '4px 4px 24px 4px' }"
- :show-arrow="false"
- >
- <template #trigger>
- <n-icon size="25">
- <VolumeMuteOutline v-if="cacheStore.muted"></VolumeMuteOutline>
- <VolumeHighOutline v-else></VolumeHighOutline>
- </n-icon>
- </template>
- <div class="slider">
- <div class="txt">{{ cacheStore.volume }}</div>
- <n-slider
- :value="cacheStore.volume"
- :step="1"
- vertical
- :tooltip="false"
- @update-value="(v) => cacheStore.setVolume(v)"
- />
- </div>
- </n-popover>
- </div>
- </div>
- <div class="right">
- <div
- class="item fps"
- v-if="props.control?.fps && appStore.videoFps"
- >
- {{ appStore.videoFps }}帧
- </div>
- <div
- class="item kbs"
- v-if="props.control?.kbs && appStore.videoKBs"
- >
- {{ appStore.videoKBs }}KB/s
- </div>
- <div
- class="item resolution"
- v-if="props.control?.resolution && resolution"
- >
- {{ resolution }}
- </div>
- <div
- class="item line"
- v-if="props.control?.line"
- >
- <Dropdown
- :positon="'center'"
- :is-top="true"
- >
- <template #btn>
- <div class="btn">线路</div>
- </template>
- <template #list>
- <div class="list">
- <div
- class="iten"
- :class="{ active: appStore.liveLine === item }"
- v-for="item in LiveLineEnum"
- :key="item"
- @click="changeLiveLine(item)"
- >
- {{ item }}
- </div>
- </div>
- </template>
- </Dropdown>
- </div>
- <div
- class="item speed"
- v-if="props.control?.speed"
- >
- <Dropdown
- :positon="'center'"
- :is-top="true"
- >
- <template #btn>
- <div class="btn">倍速</div>
- </template>
- <template #list>
- <div
- class="list"
- @click="handleTip"
- >
- <div class="iten">2.0x</div>
- <div class="iten">1.5x</div>
- <div class="iten active">1.0x</div>
- <div class="iten">0.5x</div>
- </div>
- </template>
- </Dropdown>
- </div>
- <div
- class="item render"
- v-if="props.control?.renderMode"
- >
- <Dropdown
- :positon="'center'"
- :is-top="true"
- >
- <template #btn>
- <div class="btn">渲染模式</div>
- </template>
- <template #list>
- <div class="list">
- <div
- class="iten"
- :class="{ active: appStore.videoControls?.renderMode === item }"
- v-for="item in LiveRenderEnum"
- :key="item"
- @click="appStore.videoControls.renderMode = item"
- >
- {{ item }}
- </div>
- </div>
- </template>
- </Dropdown>
- </div>
- <div
- class="item"
- v-if="props.control?.pipMode"
- >
- <span
- class="txt"
- @click="handlePip"
- >
- {{
- !appStore.videoControlsValue.pipMode ? '开启画中画' : '退出画中画'
- }}
- </span>
- </div>
- <div
- class="item"
- v-if="props.control?.pageFullMode"
- >
- <span
- class="txt"
- @click="handlePageFull"
- >
- {{
- !appStore.videoControlsValue.pageFullMode
- ? '开启网页全屏'
- : '退出网页全屏'
- }}
- </span>
- </div>
- <div
- class="item"
- v-if="props.control?.fullMode"
- >
- <span
- class="txt"
- @click="emits('fullScreen')"
- >
- 全屏
- </span>
- </div>
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import {
- Pause,
- Play,
- RefreshSharp,
- VolumeHighOutline,
- VolumeMuteOutline,
- } from '@vicons/ionicons5';
- import { debounce, isSafari } from 'billd-utils';
- import { onMounted, onUnmounted } from 'vue';
- import { handleTip } from '@/hooks/use-common';
- import { LiveLineEnum, LiveRenderEnum } from '@/interface';
- import { AppRootState, useAppStore } from '@/store/app';
- import { usePiniaCacheStore } from '@/store/cache';
- import { LiveRoomTypeEnum } from '@/types/ILiveRoom';
- const props = withDefaults(
- defineProps<{
- resolution?: string;
- control?: AppRootState['videoControls'];
- }>(),
- {}
- );
- const emits = defineEmits([
- 'refresh',
- 'fullScreen',
- 'pageFullScreen',
- 'pictureInPicture',
- ]);
- const cacheStore = usePiniaCacheStore();
- const appStore = useAppStore();
- const debounceRefresh = debounce(() => {
- emits('refresh');
- }, 500);
- onMounted(() => {
- window.addEventListener('keydown', handleKeydown);
- });
- onUnmounted(() => {
- window.removeEventListener('keydown', handleKeydown);
- });
- function handleKeydown(e) {
- if (e.key === 'Escape') {
- console.log('esc');
- if (appStore.videoControlsValue.pageFullMode) {
- window.$message.info('已退出网页全屏');
- appStore.videoControlsValue.pageFullMode = false;
- }
- }
- }
- function handlePip() {
- if (
- isSafari() &&
- appStore.videoControls.renderMode === LiveRenderEnum.canvas
- ) {
- window.$message.info('请先切换渲染模式为video');
- return;
- }
- emits('pictureInPicture');
- appStore.videoControlsValue.pipMode = !appStore.videoControlsValue.pipMode;
- }
- function handlePageFull() {
- emits('pageFullScreen');
- if (!appStore.videoControlsValue.pageFullMode) {
- window.$message.info('按esc可快速退出网页全屏');
- }
- appStore.videoControlsValue.pageFullMode =
- !appStore.videoControlsValue.pageFullMode;
- }
- function changeLiveLine(item: LiveLineEnum) {
- if (
- [
- LiveRoomTypeEnum.wertc_live,
- LiveRoomTypeEnum.wertc_meeting_one,
- LiveRoomTypeEnum.wertc_meeting_two,
- ].includes(appStore.liveRoomInfo?.type!) &&
- item !== LiveLineEnum.rtc
- ) {
- window.$message.info('不支持该线路!');
- return;
- } else if (
- ![
- LiveRoomTypeEnum.wertc_live,
- LiveRoomTypeEnum.wertc_meeting_one,
- LiveRoomTypeEnum.wertc_meeting_two,
- ].includes(appStore.liveRoomInfo?.type!) &&
- item === LiveLineEnum.rtc
- ) {
- window.$message.info('不支持该线路!');
- return;
- }
- appStore.setLiveLine(item);
- }
- </script>
- <style lang="scss" scoped>
- .slider {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- width: 24px;
- height: 80px;
- text-align: center;
- .txt {
- font-size: 12px;
- }
- }
- .video-controls-wrap {
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 50;
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- padding: 0 20px 0 10px;
- width: 100%;
- height: 40px;
- background-image: linear-gradient(
- -180deg,
- rgba(0, 0, 0, 0),
- rgba(0, 0, 0, 0.7)
- );
- color: white;
- text-align: initial;
- user-select: none;
- .left {
- display: flex;
- align-items: center;
- .muted,
- .refresh,
- .play {
- display: flex;
- align-items: center;
- margin-right: 10px;
- cursor: pointer;
- }
- }
- .right {
- display: flex;
- align-items: center;
- .item {
- position: relative;
- margin-right: 15px;
- cursor: pointer;
- &.fps,
- &.kbs,
- &.resolution {
- cursor: no-drop;
- }
- }
- .render,
- .resolution,
- .line,
- .speed,
- .full {
- &:hover {
- .list {
- display: block;
- }
- }
- :deep(.wrap) {
- border-radius: 0px;
- background-color: rgba($color: #000000, $alpha: 0.5);
- color: white;
- }
- .list {
- text-align: center;
- .iten {
- padding: 6px 10px;
- &.active {
- color: $theme-color-gold;
- }
- &:not(:last-child) {
- margin-bottom: 4px;
- }
- &:hover {
- background-color: rgba($color: #ffffff, $alpha: 0.1);
- cursor: pointer;
- }
- }
- }
- }
- & > :last-child {
- margin-right: 0px;
- }
- }
- }
- </style>
|