|
|
@@ -1,741 +1,179 @@
|
|
|
<template>
|
|
|
<div class="home-wrap">
|
|
|
<div class="left">
|
|
|
- <div class="head">
|
|
|
- <div class="info">
|
|
|
- <div class="avatar"></div>
|
|
|
- <div class="detail">
|
|
|
- <div class="top">
|
|
|
- <span class="tag">未开播</span>
|
|
|
- <button @click="addTrack">addTrack</button>
|
|
|
- <button @click="handleMedia">handleMedia</button>
|
|
|
- <button @click="batchSendOffer">batchSendOffer</button>
|
|
|
- <!-- 房东的猫livehouse/音乐节 -->
|
|
|
- {{ networkStore.getRtcMap(roomId)?.rtcStatus }}
|
|
|
- </div>
|
|
|
- <div class="bottom">
|
|
|
- <span class="tag">UP 3</span>
|
|
|
- {{ getSocketId() }}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="other">
|
|
|
- <div class="top">
|
|
|
- <span class="item">
|
|
|
- <i class="ico"></i>
|
|
|
- <span>直播间管理</span>
|
|
|
- </span>
|
|
|
- <span class="item">
|
|
|
- <i class="ico"></i>
|
|
|
- <span>1人看过</span>
|
|
|
- </span>
|
|
|
- <span class="item">
|
|
|
- <i class="ico"></i>
|
|
|
- <span>分享</span>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- <div class="bottom">关注量:5</div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="video-wrap">
|
|
|
- <video
|
|
|
- id="localVideo"
|
|
|
- ref="localVideoRef"
|
|
|
- autoplay
|
|
|
- webkit-playsinline="true"
|
|
|
- playsinline
|
|
|
- x-webkit-airplay="allow"
|
|
|
- x5-video-player-type="h5"
|
|
|
- x5-video-player-fullscreen="true"
|
|
|
- x5-video-orientation="portraint"
|
|
|
- :muted="muted"
|
|
|
- controls
|
|
|
- ></video>
|
|
|
- </div>
|
|
|
- <div class="gift">
|
|
|
- <div
|
|
|
- v-for="(item, index) in giftList"
|
|
|
- :key="index"
|
|
|
- class="item"
|
|
|
- >
|
|
|
- <div class="ico"></div>
|
|
|
- <div class="name">{{ item.name }}</div>
|
|
|
- <div class="price">{{ item.price }}</div>
|
|
|
- </div>
|
|
|
+ <video src=""></video>
|
|
|
+ <div
|
|
|
+ class="btn"
|
|
|
+ @click="joinRoom()"
|
|
|
+ >
|
|
|
+ 进入直播
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
- <div class="tab">
|
|
|
- <span>在线用户</span>
|
|
|
- <span> | </span>
|
|
|
- <span>大航海</span>
|
|
|
- </div>
|
|
|
- <div class="user-list">
|
|
|
+ <div class="list">
|
|
|
<div
|
|
|
- v-for="(item, index) in liveUserList"
|
|
|
+ v-for="(item, index) in liveRoomList"
|
|
|
:key="index"
|
|
|
- class="item"
|
|
|
+ :class="{ item: 1, active: item.roomId === currentRoom.roomId }"
|
|
|
+ :style="{ backgroundImage: `url(${item.img})` }"
|
|
|
+ @click="currentRoom = item"
|
|
|
>
|
|
|
- <div class="info">
|
|
|
- <div class="avatar"></div>
|
|
|
- <div class="nickname">{{ item.socketId }}</div>
|
|
|
- </div>
|
|
|
- <div class="expr">{{ item.expr }}</div>
|
|
|
+ <div class="txt">{{ item.txt }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="msg-list">
|
|
|
- <div
|
|
|
- v-for="(item, index) in msgList"
|
|
|
- :key="index"
|
|
|
- class="item"
|
|
|
- >
|
|
|
- <span class="name">{{ item.nickname }}:</span>
|
|
|
- <span class="msg">{{ item.msg }}</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="send-msg">
|
|
|
- <textarea class="ipt"></textarea>
|
|
|
- <div class="btn">发送</div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
-import { onMounted, ref, watch } from 'vue';
|
|
|
-import { useRoute } from 'vue-router';
|
|
|
+import { ref } from 'vue';
|
|
|
+import { useRouter } from 'vue-router';
|
|
|
|
|
|
-import { IAdminIn, liveTypeEnum } from '@/interface';
|
|
|
-import { WebRTCClass } from '@/network/webRtc';
|
|
|
-import {
|
|
|
- WebSocketClass,
|
|
|
- WsConnectStatusEnum,
|
|
|
- WsMsgTypeEnum,
|
|
|
-} from '@/network/webSocket';
|
|
|
-import { useAppStore } from '@/store/app';
|
|
|
-import { useNetworkStore } from '@/store/network';
|
|
|
-
|
|
|
-const networkStore = useNetworkStore();
|
|
|
-const route = useRoute();
|
|
|
-const appStore = useAppStore();
|
|
|
-const roomIdRef = ref<HTMLInputElement>();
|
|
|
-const joinRef = ref<HTMLButtonElement>();
|
|
|
-const leaveRef = ref<HTMLButtonElement>();
|
|
|
-const defaultRoomId = '19990507';
|
|
|
-const roomId = ref<string>(defaultRoomId);
|
|
|
-const websocketInstant = ref<WebSocketClass>();
|
|
|
-// const liveUserList = ref<{ id: string; rooms: string[] }[]>([]);
|
|
|
-const isDone = ref(false);
|
|
|
-const muted = ref(true);
|
|
|
-const localVideoRef = ref<HTMLVideoElement>();
|
|
|
-const localStream = ref();
|
|
|
-const currType = ref(liveTypeEnum.screen); // 1:摄像头,2:录屏
|
|
|
-const id = ref('');
|
|
|
-const joined = ref(false);
|
|
|
-const rtcNum = ref(1);
|
|
|
-const isAdmin = ref(route.query.id === '1234');
|
|
|
-const offerSended = ref(new Set());
|
|
|
-const answerSended = ref(new Set());
|
|
|
-
|
|
|
-const giftList = ref([
|
|
|
- { name: '鲜花', ico: '', price: '免费' },
|
|
|
- { name: '肥宅水', ico: '', price: '2元' },
|
|
|
- { name: '小鸡腿', ico: '', price: '3元' },
|
|
|
- { name: '大鸡腿', ico: '', price: '5元' },
|
|
|
- { name: '一杯咖啡', ico: '', price: '10元' },
|
|
|
-]);
|
|
|
-const msgList = ref([
|
|
|
- { nickname: '鲜花', msg: '423425' },
|
|
|
- { nickname: '肥宅水', msg: 'sdgdsgsg' },
|
|
|
- { nickname: '小鸡腿', msg: '63463gsd' },
|
|
|
- { nickname: '大鸡腿', msg: '46326fb26' },
|
|
|
- { nickname: '一杯咖啡', msg: 'shgd544' },
|
|
|
- { nickname: 'sdsg', msg: 'shgd544' },
|
|
|
- { nickname: 'gdsg', msg: 'we' },
|
|
|
- { nickname: 'sgdx', msg: 'shgd544' },
|
|
|
- { nickname: 'gsdx', msg: 'ew' },
|
|
|
- { nickname: 'gs', msg: 'etew' },
|
|
|
- { nickname: 'gwe', msg: 'shgd544' },
|
|
|
- { nickname: 'tewtwe', msg: 'shgd544' },
|
|
|
- { nickname: 'hdfh', msg: 'ew' },
|
|
|
- { nickname: '534', msg: 'etew' },
|
|
|
- { nickname: '234232', msg: 'shgd544' },
|
|
|
-]);
|
|
|
-
|
|
|
-const liveUserList = ref<
|
|
|
+const router = useRouter();
|
|
|
+const liveRoomList = ref([
|
|
|
+ {
|
|
|
+ roomId: '123456',
|
|
|
+ txt: '视频聊天',
|
|
|
+ // eslint-disable-next-line
|
|
|
+ img: require('@/assets/img/CoCo.webp'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ roomId: '2323',
|
|
|
+ txt: '游戏赛事',
|
|
|
+ // eslint-disable-next-line
|
|
|
+ img: require('@/assets/img/Hololo.webp'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ roomId: '4454',
|
|
|
+ txt: '户外直播',
|
|
|
+ // eslint-disable-next-line
|
|
|
+ img: require('@/assets/img/MoonTIT.webp'),
|
|
|
+ },
|
|
|
{
|
|
|
- socketId: string;
|
|
|
- avatar: string;
|
|
|
- expr: number;
|
|
|
- }[]
|
|
|
->([
|
|
|
- // { nickname: '鲜花', avatar: '423425', expr: 100 },
|
|
|
- // { nickname: '肥宅水', avatar: 'sdgdsgsg', expr: 100 },
|
|
|
- // { nickname: '小鸡腿', avatar: '63463gsd', expr: 100 },
|
|
|
- // { nickname: '大鸡腿', avatar: '46326fb26', expr: 100 },
|
|
|
- // { nickname: '一杯咖啡', avatar: 'shgd544', expr: 100 },
|
|
|
+ roomId: '43232',
|
|
|
+ txt: '鬼畜',
|
|
|
+ // eslint-disable-next-line
|
|
|
+ img: require('@/assets/img/Nill.webp'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ roomId: '4647457',
|
|
|
+ txt: '闲聊',
|
|
|
+ // eslint-disable-next-line
|
|
|
+ img: require('@/assets/img/Ojin.webp'),
|
|
|
+ },
|
|
|
]);
|
|
|
|
|
|
-interface IOffer {
|
|
|
- socketId: string;
|
|
|
- roomId: string;
|
|
|
- data: {
|
|
|
- sdp: any;
|
|
|
- target: string;
|
|
|
- sender: string;
|
|
|
- receiver: string;
|
|
|
- };
|
|
|
- isAdmin: boolean;
|
|
|
-}
|
|
|
-
|
|
|
-interface ICandidate {
|
|
|
- socketId: string;
|
|
|
- roomId: string;
|
|
|
- data: {
|
|
|
- candidate: string;
|
|
|
- sdpMid: string | null;
|
|
|
- sdpMLineIndex: number | null;
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-onMounted(() => {
|
|
|
- id.value = route.query.id as string;
|
|
|
- websocketInstant.value = new WebSocketClass({
|
|
|
- roomId: roomId.value,
|
|
|
- url:
|
|
|
- process.env.NODE_ENV === 'development'
|
|
|
- ? 'ws://localhost:4300'
|
|
|
- : 'wss://live.hsslive.cn',
|
|
|
- isAdmin: isAdmin.value,
|
|
|
- });
|
|
|
- websocketInstant.value.update();
|
|
|
- initReceive();
|
|
|
- sendJoin();
|
|
|
- localVideoRef.value?.addEventListener('loadstart', () => {
|
|
|
- console.warn('视频流-loadstart');
|
|
|
- const rtc = networkStore.getRtcMap(roomId.value);
|
|
|
- if (!rtc) return;
|
|
|
- rtc.rtcStatus.loadstart = true;
|
|
|
- rtc.update();
|
|
|
- });
|
|
|
-
|
|
|
- localVideoRef.value?.addEventListener('abort', () => {
|
|
|
- console.warn('视频流-abort');
|
|
|
- });
|
|
|
-
|
|
|
- localVideoRef.value?.addEventListener('pause', () => {
|
|
|
- console.warn('视频流-pause');
|
|
|
- });
|
|
|
- localVideoRef.value?.addEventListener('error', () => {
|
|
|
- console.warn('视频流-error');
|
|
|
- });
|
|
|
+const currentRoom = ref(liveRoomList.value[0]);
|
|
|
|
|
|
- localVideoRef.value?.addEventListener('loadedmetadata', () => {
|
|
|
- console.warn('视频流-loadedmetadata');
|
|
|
- const rtc = networkStore.getRtcMap(roomId.value);
|
|
|
- if (!rtc) return;
|
|
|
- rtc.rtcStatus.loadedmetadata = true;
|
|
|
- rtc.update();
|
|
|
- if (isAdmin.value) {
|
|
|
- batchSendOffer();
|
|
|
- }
|
|
|
- });
|
|
|
-});
|
|
|
-
|
|
|
-watch(
|
|
|
- () => appStore.liveStatus,
|
|
|
- (newVal) => {
|
|
|
- if (newVal) {
|
|
|
- console.log('开始直播');
|
|
|
- join();
|
|
|
- }
|
|
|
- }
|
|
|
-);
|
|
|
-
|
|
|
-function getSocketId() {
|
|
|
- return networkStore.wsMap.get(roomId.value!)?.socketIo?.id || '-1';
|
|
|
-}
|
|
|
-
|
|
|
-function sendJoin() {
|
|
|
- const instance = networkStore.wsMap.get(roomId.value);
|
|
|
- if (!instance) return;
|
|
|
- instance.send({ msgType: WsMsgTypeEnum.join, data: {} });
|
|
|
-}
|
|
|
-
|
|
|
-function join() {
|
|
|
- console.log('join的房间号', roomId.value);
|
|
|
- if (!roomId.value) {
|
|
|
- console.error('房间号不能为空!');
|
|
|
- alert('房间号不能为空!');
|
|
|
- return;
|
|
|
- }
|
|
|
- handleMedia();
|
|
|
-}
|
|
|
-
|
|
|
-function batchSendOffer() {
|
|
|
- liveUserList.value.forEach(async (item) => {
|
|
|
- if (
|
|
|
- !offerSended.value.has(item.socketId) &&
|
|
|
- item.socketId !== getSocketId()
|
|
|
- ) {
|
|
|
- await startNewWebRtc(item.socketId);
|
|
|
- await addTrack();
|
|
|
- console.warn('new WebRTCClass完成');
|
|
|
- console.log('执行sendOffer', {
|
|
|
- sender: getSocketId(),
|
|
|
- receiver: item.socketId,
|
|
|
- });
|
|
|
- sendOffer({ sender: getSocketId(), receiver: item.socketId });
|
|
|
- offerSended.value.add(item.socketId);
|
|
|
- }
|
|
|
- });
|
|
|
-}
|
|
|
-
|
|
|
-async function handleMedia() {
|
|
|
- if (isAdmin.value) {
|
|
|
- try {
|
|
|
- if (currType.value === liveTypeEnum.camera) {
|
|
|
- await startMediaDevices();
|
|
|
- } else if (currType.value === liveTypeEnum.screen) {
|
|
|
- await startGetDisplayMedia();
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('用户拒绝', error);
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-function initReceive() {
|
|
|
- const instance = websocketInstant.value;
|
|
|
- if (!instance?.socketIo) return;
|
|
|
- // websocket连接成功
|
|
|
- instance.socketIo.on(WsConnectStatusEnum.connect, () => {
|
|
|
- console.log('【websocket】websocket连接成功', instance.socketIo?.id);
|
|
|
- if (!instance) return;
|
|
|
- instance.status = WsConnectStatusEnum.connect;
|
|
|
- instance.update();
|
|
|
- });
|
|
|
-
|
|
|
- // websocket连接断开
|
|
|
- instance.socketIo.on(WsConnectStatusEnum.disconnect, () => {
|
|
|
- console.log('【websocket】websocket连接断开', instance);
|
|
|
- if (!instance) return;
|
|
|
- instance.status = WsConnectStatusEnum.disconnect;
|
|
|
- instance.update();
|
|
|
- });
|
|
|
-
|
|
|
- // 当前所有在线用户
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.adminIn, (data: IAdminIn) => {
|
|
|
- console.log('【websocket】收到管理员正在直播', data);
|
|
|
- if (isDone.value) return;
|
|
|
- // sendOffer({ sender: getSocketId(), receiver: data.socketId });
|
|
|
- });
|
|
|
-
|
|
|
- // 当前所有在线用户
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.liveUser, (data) => {
|
|
|
- console.log('【websocket】当前所有在线用户');
|
|
|
- if (!instance) return;
|
|
|
- });
|
|
|
-
|
|
|
- // 收到offer
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.offer, async (data: IOffer) => {
|
|
|
- console.warn('【websocket】收到offer', data);
|
|
|
- if (!instance) return;
|
|
|
- if (data.data.receiver === getSocketId()) {
|
|
|
- console.log('收到offer,这个offer是发给我的');
|
|
|
- const rtc = startNewWebRtc(data.data.sender);
|
|
|
- await rtc.setRemoteDescription(data.data.sdp);
|
|
|
- const sdp = await rtc.createAnswer();
|
|
|
- await rtc.setLocalDescription(sdp);
|
|
|
- websocketInstant.value?.send({
|
|
|
- msgType: WsMsgTypeEnum.answer,
|
|
|
- data: { sdp, sender: getSocketId(), receiver: data.data.sender },
|
|
|
- });
|
|
|
- } else {
|
|
|
- console.log('收到offer,但是这个offer不是发给我的');
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- // 收到answer
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.answer, async (data: IOffer) => {
|
|
|
- console.warn('【websocket】收到answer', data);
|
|
|
- if (isDone.value) return;
|
|
|
- if (!instance) return;
|
|
|
- const rtc = networkStore.getRtcMap(`${roomId.value}___${data.socketId}`);
|
|
|
- console.log(rtc, '收到answer收到answer');
|
|
|
- if (!rtc) return;
|
|
|
- rtc.rtcStatus.answer = true;
|
|
|
- rtc.update();
|
|
|
- if (data.data.receiver === getSocketId()) {
|
|
|
- console.log('收到answer,这个answer是发给我的');
|
|
|
- await rtc.setRemoteDescription(data.data.sdp);
|
|
|
- } else {
|
|
|
- console.log('收到answer,但这个answer不是发给我的');
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- // 收到candidate
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.candidate, (data: ICandidate) => {
|
|
|
- console.warn('【websocket】收到candidate', data);
|
|
|
- if (isDone.value) return;
|
|
|
- if (!instance) return;
|
|
|
- const rtc =
|
|
|
- networkStore.getRtcMap(`${roomId.value}___${data.socketId}`) ||
|
|
|
- networkStore.getRtcMap(roomId.value);
|
|
|
- if (!rtc) return;
|
|
|
- if (data.socketId !== getSocketId()) {
|
|
|
- console.log('不是我发的candidate');
|
|
|
- const candidate = new RTCIceCandidate({
|
|
|
- sdpMid: data.data.sdpMid,
|
|
|
- sdpMLineIndex: data.data.sdpMLineIndex,
|
|
|
- candidate: data.data.candidate,
|
|
|
- });
|
|
|
- rtc.peerConnection
|
|
|
- ?.addIceCandidate(candidate)
|
|
|
- .then(() => {
|
|
|
- console.log('candidate成功');
|
|
|
- // rtc.handleStream();
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- console.error('candidate失败', err);
|
|
|
- });
|
|
|
- } else {
|
|
|
- console.log('是我发的candidate');
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- // 用户加入房间
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.join, (data) => {
|
|
|
- console.log('【websocket】用户加入房间', data);
|
|
|
- if (!instance) return;
|
|
|
- });
|
|
|
-
|
|
|
- // 用户加入房间
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.joined, (data) => {
|
|
|
- console.log('【websocket】用户加入房间完成', data);
|
|
|
- joined.value = true;
|
|
|
- liveUserList.value.push({
|
|
|
- avatar: 'red',
|
|
|
- socketId: `${getSocketId()}`,
|
|
|
- expr: 1,
|
|
|
- });
|
|
|
- });
|
|
|
-
|
|
|
- // 其他用户加入房间
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.otherJoin, (data) => {
|
|
|
- console.log('【websocket】其他用户加入房间', data);
|
|
|
- liveUserList.value.push({
|
|
|
- avatar: 'red',
|
|
|
- socketId: data.socketId,
|
|
|
- expr: 1,
|
|
|
- });
|
|
|
- console.log('当前所有在线用户', JSON.stringify(liveUserList.value));
|
|
|
- if (isAdmin.value && joined.value) {
|
|
|
- batchSendOffer();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- // 用户离开房间
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.leave, (data) => {
|
|
|
- console.log('【websocket】用户离开房间', data);
|
|
|
- if (!instance) return;
|
|
|
- instance.socketIo?.emit(WsMsgTypeEnum.leave, {
|
|
|
- roomId: instance.roomId,
|
|
|
- });
|
|
|
- });
|
|
|
-
|
|
|
- // 用户离开房间完成
|
|
|
- instance.socketIo.on(WsMsgTypeEnum.leaved, (data) => {
|
|
|
- console.log('【websocket】用户离开房间完成', data);
|
|
|
- if (!instance) return;
|
|
|
- const res = liveUserList.value.filter(
|
|
|
- (item) => item.socketId !== data.socketId
|
|
|
- );
|
|
|
- console.log('当前所有在线用户', JSON.stringify(res));
|
|
|
- liveUserList.value = res;
|
|
|
- });
|
|
|
-}
|
|
|
-
|
|
|
-async function startMediaDevices() {
|
|
|
- currType.value = liveTypeEnum.camera;
|
|
|
- if (!localStream.value) {
|
|
|
- // WARN navigator.mediaDevices在localhost和https才能用,http://192.168.1.103:8000局域网用不了
|
|
|
- const event = await navigator.mediaDevices.getUserMedia({
|
|
|
- video: true,
|
|
|
- audio: true,
|
|
|
- });
|
|
|
- console.log('getUserMedia成功', event);
|
|
|
- if (!localVideoRef.value) return;
|
|
|
- localVideoRef.value.srcObject = event;
|
|
|
- localStream.value = event;
|
|
|
- }
|
|
|
-}
|
|
|
-const isAddTrack = ref(false);
|
|
|
-function addTrack() {
|
|
|
- if (!localStream.value) return;
|
|
|
- // if (isAddTrack.value || !localStream.value) return;
|
|
|
- liveUserList.value.forEach((item) => {
|
|
|
- if (item.socketId !== getSocketId()) {
|
|
|
- localStream.value.getTracks().forEach((track) => {
|
|
|
- const rtc = networkStore.getRtcMap(
|
|
|
- `${roomId.value}___${item.socketId}`
|
|
|
- );
|
|
|
- rtc?.addTrack(track, localStream.value);
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
- isAddTrack.value = true;
|
|
|
-}
|
|
|
-
|
|
|
-async function startGetDisplayMedia() {
|
|
|
- currType.value = liveTypeEnum.screen;
|
|
|
- if (!localStream.value) {
|
|
|
- // WARN navigator.mediaDevices.getDisplayMedia在localhost和https才能用,http://192.168.1.103:8000局域网用不了
|
|
|
- const event = await navigator.mediaDevices.getDisplayMedia({
|
|
|
- video: true,
|
|
|
- audio: true,
|
|
|
- });
|
|
|
- console.log('getDisplayMedia成功', event);
|
|
|
- if (!localVideoRef.value) return;
|
|
|
- localVideoRef.value.srcObject = event;
|
|
|
- localStream.value = event;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-async function sendOffer({
|
|
|
- sender,
|
|
|
- receiver,
|
|
|
-}: {
|
|
|
- sender: string;
|
|
|
- receiver: string;
|
|
|
-}) {
|
|
|
- if (isDone.value) return;
|
|
|
- if (!websocketInstant.value) return;
|
|
|
- const rtc = networkStore.getRtcMap(`${roomId.value}___${receiver}`);
|
|
|
- if (!rtc) return;
|
|
|
- const sdp = await rtc.createOffer();
|
|
|
- await rtc.setLocalDescription(sdp);
|
|
|
- websocketInstant.value.send({
|
|
|
- msgType: WsMsgTypeEnum.offer,
|
|
|
- data: { sdp, sender, receiver },
|
|
|
- });
|
|
|
-}
|
|
|
-
|
|
|
-function startNewWebRtc(receiver: string) {
|
|
|
- console.warn('开始new WebRTCClass', receiver);
|
|
|
- const rtc = new WebRTCClass({ roomId: `${roomId.value}___${receiver}` });
|
|
|
- rtc.rtcStatus.joined = true;
|
|
|
- rtc.update();
|
|
|
- return rtc;
|
|
|
-}
|
|
|
-
|
|
|
-function leave() {
|
|
|
- if (joinRef.value && leaveRef.value && roomIdRef.value) {
|
|
|
- roomIdRef.value.disabled = false;
|
|
|
- joinRef.value.disabled = false;
|
|
|
- leaveRef.value.disabled = true;
|
|
|
- }
|
|
|
- if (!websocketInstant.value) return;
|
|
|
- websocketInstant.value.socketIo?.emit(WsMsgTypeEnum.leave, {
|
|
|
- roomId: websocketInstant.value.roomId,
|
|
|
- });
|
|
|
+function joinRoom() {
|
|
|
+ router.push({ path: `/${currentRoom.value.roomId}` });
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.home-wrap {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- margin: 20px auto 0;
|
|
|
- min-width: 1200px;
|
|
|
- width: 80%;
|
|
|
+ padding: 20px 0;
|
|
|
+ min-width: $large-width;
|
|
|
+ height: 610px;
|
|
|
+ background-color: skyblue;
|
|
|
+ text-align: center;
|
|
|
+
|
|
|
.left {
|
|
|
- min-width: 1000px;
|
|
|
- border-radius: 10px;
|
|
|
- background-color: white;
|
|
|
- color: #9499a0;
|
|
|
- .head {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- padding: 20px;
|
|
|
- .tag {
|
|
|
+ position: relative;
|
|
|
+ display: inline-block;
|
|
|
+ width: $large-left-width;
|
|
|
+ height: 100%;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: papayawhip;
|
|
|
+ vertical-align: top;
|
|
|
+ &:hover {
|
|
|
+ .btn {
|
|
|
display: inline-block;
|
|
|
- margin-right: 5px;
|
|
|
- padding: 1px 4px;
|
|
|
- border: 1px solid;
|
|
|
- border-radius: 2px;
|
|
|
- color: #9499a0;
|
|
|
- font-size: 12px;
|
|
|
- }
|
|
|
-
|
|
|
- .info {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- .avatar {
|
|
|
- margin-right: 20px;
|
|
|
- width: 64px;
|
|
|
- height: 64px;
|
|
|
- border-radius: 50%;
|
|
|
- background-color: yellow;
|
|
|
- }
|
|
|
- .detail {
|
|
|
- .top {
|
|
|
- margin-bottom: 10px;
|
|
|
- color: #18191c;
|
|
|
- }
|
|
|
- .bottom {
|
|
|
- font-size: 14px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .other {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: center;
|
|
|
- font-size: 12px;
|
|
|
- .top {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- .item {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- margin-right: 20px;
|
|
|
- .ico {
|
|
|
- display: inline-block;
|
|
|
- margin-right: 4px;
|
|
|
- width: 10px;
|
|
|
- height: 10px;
|
|
|
- border-radius: 50%;
|
|
|
- background-color: skyblue;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .bottom {
|
|
|
- margin-top: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .video-wrap {
|
|
|
- // height: 100px;
|
|
|
- height: 500px;
|
|
|
- background-color: #18191c;
|
|
|
- #localVideo {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
}
|
|
|
}
|
|
|
- .gift {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
+ .btn {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ display: none;
|
|
|
padding: 10px 20px;
|
|
|
- background-color: white;
|
|
|
- .item {
|
|
|
- margin-right: 10px;
|
|
|
- text-align: center;
|
|
|
-
|
|
|
- .ico {
|
|
|
- width: 50px;
|
|
|
- height: 50px;
|
|
|
- background-color: skyblue;
|
|
|
- }
|
|
|
- .name {
|
|
|
- color: #18191c;
|
|
|
- font-size: 12px;
|
|
|
- }
|
|
|
- .price {
|
|
|
- color: #9499a0;
|
|
|
- font-size: 12px;
|
|
|
- }
|
|
|
+ border: 1px solid rgba($color: rebeccapurple, $alpha: 0.3);
|
|
|
+ border-radius: 4px;
|
|
|
+ color: rebeccapurple;
|
|
|
+ font-size: 14px;
|
|
|
+ cursor: pointer;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ &:hover {
|
|
|
+ background-color: rgba($color: rebeccapurple, $alpha: 0.3);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
.right {
|
|
|
- position: relative;
|
|
|
- box-sizing: border-box;
|
|
|
- min-width: 300px;
|
|
|
- border-radius: 10px;
|
|
|
- background-color: white;
|
|
|
- color: #9499a0;
|
|
|
- .tab {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-evenly;
|
|
|
- padding: 5px 0;
|
|
|
- font-size: 12px;
|
|
|
- }
|
|
|
- .user-list {
|
|
|
- overflow-y: scroll;
|
|
|
- padding: 0 15px;
|
|
|
- height: 100px;
|
|
|
+ display: inline-block;
|
|
|
+ margin-left: 10px;
|
|
|
+ padding: 10px;
|
|
|
+ padding-bottom: 0;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: rgba($color: #000000, $alpha: 0.3);
|
|
|
+ vertical-align: top;
|
|
|
+
|
|
|
+ .list {
|
|
|
.item {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
+ position: relative;
|
|
|
margin-bottom: 10px;
|
|
|
- font-size: 12px;
|
|
|
- .info {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-
|
|
|
- .avatar {
|
|
|
- margin-right: 5px;
|
|
|
- width: 25px;
|
|
|
- height: 25px;
|
|
|
- border-radius: 50%;
|
|
|
- background-color: skyblue;
|
|
|
+ width: 200px;
|
|
|
+ height: 110px;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: rgba($color: #000000, $alpha: 0.3);
|
|
|
+ background-position: center;
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ cursor: pointer;
|
|
|
+ &.active {
|
|
|
+ &::before {
|
|
|
+ background-color: transparent;
|
|
|
}
|
|
|
- .nickname {
|
|
|
- color: black;
|
|
|
+ }
|
|
|
+ &:hover {
|
|
|
+ &::before {
|
|
|
+ background-color: transparent;
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
- .msg-list {
|
|
|
- overflow-y: scroll;
|
|
|
- padding: 0 15px;
|
|
|
- height: 350px;
|
|
|
- .item {
|
|
|
- margin-bottom: 10px;
|
|
|
- font-size: 12px;
|
|
|
- .name {
|
|
|
- color: #9499a0;
|
|
|
+ &::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;
|
|
|
}
|
|
|
- .msg {
|
|
|
- color: #61666d;
|
|
|
+ .txt {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 2px;
|
|
|
+ left: 4px;
|
|
|
+ color: white;
|
|
|
+ font-size: 13px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .send-msg {
|
|
|
- position: absolute;
|
|
|
- bottom: 15px;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 0 10px;
|
|
|
- width: 100%;
|
|
|
- .ipt {
|
|
|
- display: block;
|
|
|
- box-sizing: border-box;
|
|
|
- margin: 0 auto;
|
|
|
- padding: 10px;
|
|
|
- width: 100%;
|
|
|
- height: 60px;
|
|
|
- outline: none;
|
|
|
- border: 1px solid hsla(0, 0%, 60%, 0.2);
|
|
|
- border-radius: 4px;
|
|
|
- background-color: #f1f2f3;
|
|
|
- font-size: 14px;
|
|
|
- }
|
|
|
- .btn {
|
|
|
- box-sizing: border-box;
|
|
|
- margin-top: 10px;
|
|
|
- margin-left: auto;
|
|
|
- padding: 5px;
|
|
|
- width: 80px;
|
|
|
- border-radius: 4px;
|
|
|
- background-color: #23ade5;
|
|
|
- color: white;
|
|
|
- text-align: center;
|
|
|
- font-size: 12px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 屏幕宽度小于$large-width的时候
|
|
|
+@media screen and (max-width: $large-width) {
|
|
|
+ .home-wrap {
|
|
|
+ height: 460px;
|
|
|
+ .left {
|
|
|
+ width: $medium-left-width;
|
|
|
+ }
|
|
|
+ .right {
|
|
|
+ .list {
|
|
|
+ .item {
|
|
|
+ width: 150px;
|
|
|
+ height: 80px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|