| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730 |
- <template>
- <div class="home-wrap">
- <div class="play-container">
- <div
- v-if="configBg && configBg !== ''"
- class="bg-img"
- :style="{ backgroundImage: `url(${configBg})` }"
- ></div>
- <video
- v-if="configVideo && configVideo !== ''"
- class="bg-video"
- :src="configVideo"
- muted
- autoplay
- loop
- ></video>
- <div class="slider-wrap">
- <div
- v-for="(item, index) in interactionList"
- :key="index"
- >
- <Slider
- v-if="item.length"
- :list="item"
- :width="docW"
- :speed="60"
- :direction="index % 2 === 0 ? 'l-r' : 'r-l'"
- :customStyle="{ margin: '0 auto' }"
- ></Slider>
- </div>
- </div>
- <div class="container">
- <div
- v-loading="videoLoading"
- class="left"
- ref="videoWrapTmpRef"
- @click="showJoinBtn = !showJoinBtn"
- >
- <div
- v-if="
- currentLiveRoom?.live_room?.cdn === LiveRoomUseCDNEnum.yes ||
- [
- LiveRoomTypeEnum.tencent_css,
- LiveRoomTypeEnum.tencent_css_pk,
- ].includes(currentLiveRoom?.live_room?.type!)
- "
- class="cdn-ico"
- >
- <div class="txt">CDN</div>
- </div>
- <div
- class="cover"
- :style="{
- backgroundImage: `url(${
- currentLiveRoom?.live_room?.cover_img ||
- currentLiveRoom?.user?.avatar
- })`,
- }"
- ></div>
- <div
- v-if="currentLiveRoom?.live_room?.flv_url"
- ref="remoteVideoRef"
- ></div>
- <template v-if="currentLiveRoom">
- <VideoControls
- @click.stop
- :resolution="videoHeight"
- @refresh="handleRefresh"
- ></VideoControls>
- <div
- class="join-btn"
- :class="{
- show: showJoinBtn,
- }"
- >
- <div
- class="btn"
- @click="joinRoom({ roomId: currentLiveRoom.live_room?.id! })"
- >
- 进入直播
- </div>
- </div>
- </template>
- </div>
- <div class="right">
- <div
- v-if="topLiveRoomList.length"
- class="list"
- >
- <div
- v-for="(item, index) in topLiveRoomList"
- :key="index"
- :class="{
- item: 1,
- active: item.live_room_id === currentLiveRoom?.live_room_id,
- }"
- :style="{
- backgroundImage: `url(${
- item.live_room?.cover_img || item?.user?.avatar
- })`,
- }"
- @click="changeLiveRoom(item)"
- >
- <PullAuthTip
- v-if="
- item.live_room?.pull_is_should_auth ===
- LiveRoomPullIsShouldAuthEnum.yes
- "
- ></PullAuthTip>
- <div class="hidden">
- <div
- class="cdn-ico"
- v-if="
- item?.live_room?.cdn === LiveRoomUseCDNEnum.yes ||
- [
- LiveRoomTypeEnum.tencent_css,
- LiveRoomTypeEnum.tencent_css_pk,
- ].includes(item.live_room?.type!)
- "
- >
- <div class="txt">CDN</div>
- </div>
- </div>
- <div
- class="border"
- :style="{
- opacity:
- item.live_room_id === currentLiveRoom?.live_room_id ? 1 : 0,
- }"
- ></div>
- <div
- v-if="item.live_room_id === currentLiveRoom?.live_room_id"
- class="triangle"
- ></div>
- <div class="txt">{{ item.live_room?.name }}</div>
- </div>
- </div>
- <div
- v-else
- class="none"
- >
- {{ t('home.noliveRoomTip') }}
- </div>
- </div>
- </div>
- </div>
- <div class="area-container">
- <div class="area-item">
- <div class="title">{{ t('home.recommendLive') }}</div>
- <div class="live-room-list">
- <div
- v-for="(iten, indey) in otherLiveRoomList"
- :key="indey"
- class="live-room"
- @click="
- joinRoom({
- roomId: iten.live_room?.id!,
- })
- "
- >
- <div
- class="cover"
- :style="{
- backgroundImage: `url('${
- iten?.live_room?.cover_img || iten?.user?.avatar
- }')`,
- }"
- >
- <PullAuthTip
- v-if="
- iten.live_room?.pull_is_should_auth ===
- LiveRoomPullIsShouldAuthEnum.yes
- "
- ></PullAuthTip>
- <div
- v-if="
- iten?.live_room?.cdn === LiveRoomUseCDNEnum.yes ||
- [
- LiveRoomTypeEnum.tencent_css,
- LiveRoomTypeEnum.tencent_css_pk,
- ].includes(iten.live_room?.type!)
- "
- class="cdn-ico"
- >
- <div class="txt">CDN</div>
- </div>
- <div class="txt">{{ iten?.user?.username }}</div>
- </div>
- <div class="desc">{{ iten?.live_room?.name }}</div>
- </div>
- <div
- v-if="!otherLiveRoomList.length"
- class="null"
- >
- {{ t('common.nonedata') }}
- </div>
- </div>
- </div>
- </div>
- <div class="foot">*{{ t('home.copyrightTip') }}~</div>
- </div>
- </template>
- <script lang="ts" setup>
- import { onMounted, ref, watch } from 'vue';
- import { useI18n } from 'vue-i18n';
- import { useRoute, useRouter } from 'vue-router';
- import { fetchLiveList } from '@/api/live';
- import { fetchFindLiveConfigByKey } from '@/api/liveConfig';
- import { sliderList } from '@/constant';
- import { usePull } from '@/hooks/use-pull';
- import { ILive, LiveLineEnum } from '@/interface';
- import { routerName } from '@/router';
- import { useAppStore } from '@/store/app';
- import {
- LiveRoomIsShowEnum,
- LiveRoomPullIsShouldAuthEnum,
- LiveRoomTypeEnum,
- LiveRoomUseCDNEnum,
- } from '@/types/ILiveRoom';
- const route = useRoute();
- const router = useRouter();
- const appStore = useAppStore();
- const canvasRef = ref<Element>();
- const showJoinBtn = ref(false);
- const topNums = ref(6);
- const configBg = ref('');
- const configVideo = ref();
- // const configVideo = ref(
- // 'https://www.xdyun.com/resldmnqcom/ldq_website/all_ldy/cloudphone_xdyun_ldy_mobile/mobile/assets/xd-video-6c9bcd.mp4'
- // );
- const topLiveRoomList = ref<ILive[]>([]);
- const otherLiveRoomList = ref<ILive[]>([]);
- const currentLiveRoom = ref<ILive>();
- const interactionList = ref<any[]>([]);
- const videoWrapTmpRef = ref<HTMLDivElement>();
- const remoteVideoRef = ref<HTMLDivElement>();
- const docW = document.documentElement.clientWidth;
- const { t } = useI18n();
- const {
- videoWrapRef,
- videoLoading,
- remoteVideo,
- roomLiving,
- videoHeight,
- handleStopDrawing,
- handlePlay,
- } = usePull(route.params.roomId as string);
- onMounted(() => {
- handleSlideList();
- getLiveRoomList();
- getBg();
- videoWrapRef.value = videoWrapTmpRef.value;
- });
- watch(
- () => remoteVideo.value,
- (newVal) => {
- newVal.forEach((item) => {
- remoteVideoRef.value?.appendChild(item);
- });
- },
- {
- deep: true,
- }
- );
- function handleSlideList() {
- const row = 2;
- const res: any[] = [];
- const count = Math.ceil(sliderList.length / row);
- for (let i = 0, len = sliderList.length; i < len; i += count) {
- const item = sliderList.slice(i, i + count);
- res.push([...item]);
- }
- interactionList.value = res;
- }
- async function getBg() {
- try {
- const res = await fetchFindLiveConfigByKey('frontend_live_home_bg');
- if (res.code === 200) {
- const reg = /.+\.mp4$/g;
- const url = res.data.value as string;
- if (reg.exec(url)) {
- configVideo.value = res.data.value;
- } else {
- configBg.value = res.data.value;
- }
- }
- } catch (error) {
- console.log(error);
- }
- }
- function handleRefresh() {
- playLive(currentLiveRoom.value!);
- }
- function playLive(item: ILive) {
- handleStopDrawing();
- currentLiveRoom.value = item;
- canvasRef.value?.childNodes?.forEach((item) => {
- item.remove();
- });
- appStore.setLiveRoomInfo(item.live_room!);
- roomLiving.value = true;
- handlePlay(item.live_room!);
- }
- function changeLiveRoom(item: ILive) {
- if (item.id === currentLiveRoom.value?.id) return;
- if (
- ![
- LiveRoomTypeEnum.wertc_live,
- LiveRoomTypeEnum.wertc_meeting_one,
- LiveRoomTypeEnum.wertc_meeting_two,
- ].includes(item.live_room?.type!)
- ) {
- appStore.setLiveLine(LiveLineEnum.hls);
- }
- appStore.playing = true;
- playLive(item);
- }
- async function getLiveRoomList() {
- try {
- const res = await fetchLiveList({
- live_room_is_show: LiveRoomIsShowEnum.yes,
- orderName: 'created_at',
- orderBy: 'desc',
- });
- if (res.code === 200) {
- topLiveRoomList.value = res.data.rows.slice(0, topNums.value);
- otherLiveRoomList.value = res.data.rows.slice(topNums.value);
- if (res.data.total) {
- currentLiveRoom.value = topLiveRoomList.value[0];
- appStore.setLiveRoomInfo(currentLiveRoom.value.live_room!);
- roomLiving.value = true;
- }
- }
- } catch (error) {
- console.log(error);
- }
- }
- function joinRoom(data: { roomId: number }) {
- router.push({
- name: routerName.pull,
- params: { roomId: data.roomId },
- });
- }
- </script>
- <style lang="scss" scoped>
- .home-wrap {
- .play-container {
- position: relative;
- z-index: 1;
- padding-bottom: 50px;
- .bg-img {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- z-index: -1;
- width: 100%;
- height: 100%;
- background-position: center;
- background-size: cover;
- background-repeat: no-repeat;
- }
- .bg-video {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- z-index: -1;
- width: 100%;
- height: 100%;
- // object-fit: fill;
- }
- .slider-wrap {
- padding: 4px 0;
- }
- .container {
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- margin: 0 auto;
- height: calc($w-1100 / $video-ratio);
- .left {
- position: relative;
- display: inline-block;
- overflow: hidden;
- flex-shrink: 0;
- box-sizing: border-box;
- margin-right: 20px;
- width: $w-1100;
- height: 100%;
- border-radius: 4px;
- background-color: rgba($color: #000000, $alpha: 0.3);
- @extend %coverBg;
- .cdn-ico {
- position: absolute;
- top: -9px;
- right: -10px;
- z-index: 2;
- width: 70px;
- height: 32px;
- background-color: #f87c48;
- color: white;
- transform: rotate(45deg);
- transform-origin: bottom;
- .txt {
- margin-top: 11px;
- margin-left: 20px;
- background-image: initial !important;
- font-size: 14px;
- }
- }
- .cover {
- position: absolute;
- background-position: center center;
- background-size: cover;
- filter: blur(10px);
- inset: 0;
- }
- :deep(canvas) {
- position: absolute;
- top: 50%;
- left: 50%;
- // min-width: 100%;
- // min-height: 100%;
- max-width: $w-1100;
- max-height: calc($w-1100 / $video-ratio);
- transform: translate(-50%, -50%);
- user-select: none;
- }
- :deep(video) {
- position: absolute;
- top: 50%;
- left: 50%;
- // min-width: 100%;
- // min-height: 100%;
- max-width: $w-1100;
- max-height: calc($w-1100 / $video-ratio);
- transform: translate(-50%, -50%);
- user-select: none;
- }
- &:hover {
- .join-btn {
- display: inline-flex !important;
- }
- }
- .join-btn {
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 20;
- display: none;
- align-items: center;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- // width: 80%;
- transform: translate(-50%, -50%);
- &.show {
- display: inline-flex !important;
- }
- .btn {
- padding: 14px 26px;
- border: 2px solid rgba($color: $theme-color-gold, $alpha: 0.5);
- border-radius: 6px;
- background-color: rgba(0, 0, 0, 0.3);
- color: $theme-color-gold;
- font-size: 16px;
- cursor: pointer;
- &:hover {
- background-color: $theme-color-gold;
- color: white;
- }
- }
- }
- }
- .right {
- display: inline-block;
- overflow: scroll;
- flex-shrink: 0;
- box-sizing: border-box;
- padding: 12px 10px;
- height: 100%;
- border-radius: 4px;
- background-color: rgba($color: #000000, $alpha: 0.3);
- @extend %hideScrollbar;
- .list {
- .item {
- position: relative;
- box-sizing: border-box;
- margin-bottom: 10px;
- width: 200px;
- height: 110px;
- border-radius: 4px;
- background-color: rgba($color: #000000, $alpha: 0.3);
- cursor: pointer;
- @extend %coverBg;
- &:last-child {
- margin-bottom: 0;
- }
- .hidden {
- position: relative;
- overflow: hidden;
- width: 200px;
- height: 110px;
- .cdn-ico {
- position: absolute;
- top: -9px;
- right: -9px;
- z-index: 2;
- width: 60px;
- height: 28px;
- background-color: #f87c48;
- color: white;
- transform: rotate(45deg);
- transform-origin: bottom;
- .txt {
- margin-left: 10px;
- background-image: initial !important;
- font-size: 12px;
- line-height: 0.8;
- }
- }
- }
- .border {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 3;
- border: 2px solid $theme-color-gold;
- border-radius: 4px;
- }
- .triangle {
- position: absolute;
- top: 50%;
- left: 0;
- display: inline-block;
- border: 5px solid transparent;
- border-right-color: $theme-color-gold;
- transform: translate(-100%, -50%);
- }
- &.active {
- &::before {
- background-color: transparent;
- }
- }
- &:hover {
- &::before {
- background-color: transparent;
- }
- }
- &::before {
- position: absolute;
- display: block;
- width: 100%;
- height: 100%;
- border-radius: 4px;
- background-color: rgba(0, 0, 0, 0.4);
- content: '';
- transition: all cubic-bezier(0.22, 0.58, 0.12, 0.98) 0.4s;
- }
- .txt {
- position: absolute;
- bottom: 0;
- left: 0;
- box-sizing: border-box;
- padding: 4px 8px;
- width: 100%;
- border-radius: 0 0 4px 4px;
- background-image: linear-gradient(
- -180deg,
- rgba(0, 0, 0, 0),
- rgba(0, 0, 0, 0.6)
- );
- color: white;
- text-align: initial;
- font-size: 13px;
- @extend %singleEllipsis;
- }
- }
- }
- .none {
- width: 200px;
- color: white;
- text-align: center;
- font-size: 14px;
- }
- }
- }
- }
- .area-container {
- box-sizing: border-box;
- margin: 10px auto;
- width: $w-1350;
- .area-item {
- .title {
- padding: 10px 0;
- font-size: 26px;
- }
- .live-room {
- display: inline-block;
- margin-right: 32px;
- margin-bottom: 10px;
- width: 300px;
- cursor: pointer;
- .cover {
- position: relative;
- overflow: hidden;
- width: 100%;
- height: 150px;
- border-radius: 8px;
- background-position: center center;
- background-size: cover;
- .cdn-ico {
- position: absolute;
- top: -10px;
- right: -10px;
- z-index: 2;
- width: 70px;
- height: 28px;
- background-color: #f87c48;
- color: white;
- transform: rotate(45deg);
- transform-origin: bottom;
- .txt {
- margin-left: 18px;
- background-image: initial !important;
- font-size: 13px;
- }
- }
- .txt {
- position: absolute;
- bottom: 0;
- left: 0;
- box-sizing: border-box;
- padding: 4px 8px;
- width: 100%;
- border-radius: 0 0 4px 4px;
- background-image: linear-gradient(
- -180deg,
- rgba(0, 0, 0, 0),
- rgba(0, 0, 0, 0.6)
- );
- color: white;
- text-align: initial;
- font-size: 13px;
- @extend %singleEllipsis;
- }
- }
- .desc {
- margin-top: 4px;
- font-size: 14px;
- @extend %singleEllipsis;
- }
- }
- }
- }
- .foot {
- margin-top: 10px;
- text-align: center;
- }
- }
- // 屏幕宽度小于1330的时候
- @media screen and (max-width: 1330px) {
- .home-wrap {
- .play-container {
- .container {
- height: calc($w-900 / $video-ratio);
- .left {
- width: $w-900;
- :deep(canvas) {
- max-width: $w-900;
- max-height: calc($w-900 / $video-ratio);
- }
- :deep(video) {
- max-width: $w-900;
- max-height: calc($w-900 / $video-ratio);
- }
- }
- .right {
- }
- }
- }
- .area-container {
- width: $w-1150;
- }
- }
- }
- </style>
|