Compare commits
No commits in common. "2f5f1f7f2a2f210f97e34bcd6f977244f36b78e7" and "7c393f0541725b4816da1630314e8a42e35f0786" have entirely different histories.
2f5f1f7f2a
...
7c393f0541
@ -71,7 +71,7 @@ interface LyricItem {
|
|||||||
export default function Controls(): JSX.Element {
|
export default function Controls(): JSX.Element {
|
||||||
const ref = useRef<HTMLDialogElement | null>(null);
|
const ref = useRef<HTMLDialogElement | null>(null);
|
||||||
const [history, setHistory] = useState<LyricItem[]>([]);
|
const [history, setHistory] = useState<LyricItem[]>([]);
|
||||||
const { songId, songName, songArtist, listener } = useContext(DanmuContext);
|
const { songId, songName, songArtist } = useContext(DanmuContext);
|
||||||
|
|
||||||
const { start, resume, pause, setLyrics, offset, setOffset } =
|
const { start, resume, pause, setLyrics, offset, setOffset } =
|
||||||
useLyricsRunner((line) => {
|
useLyricsRunner((line) => {
|
||||||
@ -82,12 +82,6 @@ export default function Controls(): JSX.Element {
|
|||||||
},
|
},
|
||||||
...items,
|
...items,
|
||||||
]);
|
]);
|
||||||
if (listener) {
|
|
||||||
// 测试用
|
|
||||||
// listener('666');
|
|
||||||
// 实际输出歌词
|
|
||||||
listener(line.slice(0, 10));
|
|
||||||
}
|
|
||||||
console.log(line);
|
console.log(line);
|
||||||
}, 200);
|
}, 200);
|
||||||
|
|
||||||
|
@ -1,34 +1,15 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { useState, useEffect, useCallback, useRef, useContext } from "react";
|
import { useState, useEffect, useCallback, useRef } from "react";
|
||||||
import useWebSocket, { ReadyState } from "react-use-websocket";
|
import useWebSocket, { ReadyState } from "react-use-websocket";
|
||||||
import MessageDispatcher from "./message";
|
import MessageDispatcher from "./message";
|
||||||
import { Token } from "@/lib/types";
|
import { Token } from "@/lib/types";
|
||||||
import dayjs from "dayjs";
|
import dayjs from "dayjs";
|
||||||
import { DanmuContext } from "./provider";
|
|
||||||
|
|
||||||
const MOMO_IM_URL = "wss://live-ws.immomo.com/ws/im";
|
const MOMO_IM_URL = "wss://live-ws.immomo.com/ws/im";
|
||||||
|
|
||||||
const useGenMessage = () => {
|
|
||||||
const [msgId, setMsgId] = useState(3);
|
|
||||||
return {
|
|
||||||
genMessage(text: string) {
|
|
||||||
const msg = {
|
|
||||||
msg_id: msgId,
|
|
||||||
client_time: Date.now(),
|
|
||||||
type: "Bili",
|
|
||||||
data: { text },
|
|
||||||
};
|
|
||||||
setMsgId(msgId + 1);
|
|
||||||
return msg;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function Danmu({ token }: { token: Token }) {
|
export default function Danmu({ token }: { token: Token }) {
|
||||||
const [messageHistory, setMessageHistory] = useState<MessageEvent<any>[]>([]);
|
const [messageHistory, setMessageHistory] = useState<MessageEvent<any>[]>([]);
|
||||||
const ref = useRef<HTMLDivElement>(null);
|
const ref = useRef<HTMLDivElement>(null);
|
||||||
const { liveId, dispatch } = useContext(DanmuContext);
|
|
||||||
const { genMessage } = useGenMessage();
|
|
||||||
|
|
||||||
const { sendMessage, lastMessage, readyState } = useWebSocket(MOMO_IM_URL, {
|
const { sendMessage, lastMessage, readyState } = useWebSocket(MOMO_IM_URL, {
|
||||||
heartbeat: {
|
heartbeat: {
|
||||||
@ -46,40 +27,28 @@ export default function Danmu({ token }: { token: Token }) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const momoId = token.uid;
|
const momoId = token.uid;
|
||||||
const roomId = liveId;
|
const roomId = "1476810196216";
|
||||||
const momoToken = token.token;
|
const momoToken = token.token;
|
||||||
|
|
||||||
|
const clientTime = Date.now();
|
||||||
|
const data = {
|
||||||
|
msg_id: 1,
|
||||||
|
client_time: clientTime,
|
||||||
|
type: "Sauth",
|
||||||
|
data: {
|
||||||
|
momoid: momoId,
|
||||||
|
roomid: roomId,
|
||||||
|
role: 6,
|
||||||
|
isVisitor: false,
|
||||||
|
token: momoToken,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (ReadyState.OPEN === readyState) {
|
if (ReadyState.OPEN === readyState) {
|
||||||
const clientTime = Date.now();
|
sendMessage(JSON.stringify(data));
|
||||||
const data = {
|
|
||||||
msg_id: 1,
|
|
||||||
client_time: clientTime,
|
|
||||||
type: "Sauth",
|
|
||||||
data: {
|
|
||||||
momoid: momoId,
|
|
||||||
roomid: roomId,
|
|
||||||
role: 6,
|
|
||||||
isVisitor: false,
|
|
||||||
token: momoToken,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
if (roomId) {
|
|
||||||
sendMessage(JSON.stringify(data));
|
|
||||||
console.log("重新连接...");
|
|
||||||
setMessageHistory([]);
|
|
||||||
dispatch({
|
|
||||||
type: "listener",
|
|
||||||
payload: {
|
|
||||||
listener: (msg: string) => {
|
|
||||||
const data = genMessage(msg);
|
|
||||||
sendMessage(JSON.stringify(data));
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}, [readyState, roomId, momoId, momoToken]);
|
}, [readyState]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (lastMessage !== null) {
|
if (lastMessage !== null) {
|
||||||
|
@ -7,7 +7,6 @@ export interface DanmuPayload {
|
|||||||
songId?: string;
|
songId?: string;
|
||||||
songName?: string;
|
songName?: string;
|
||||||
songArtist?: string;
|
songArtist?: string;
|
||||||
listener?: (msg: string) => void;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DanmuAction {
|
export interface DanmuAction {
|
||||||
@ -31,8 +30,6 @@ const reducer = (state: DanmuPayload, action: DanmuAction): DanmuPayload => {
|
|||||||
};
|
};
|
||||||
case "lives":
|
case "lives":
|
||||||
return { ...state, liveId: payload.liveId, liveName: payload.liveName };
|
return { ...state, liveId: payload.liveId, liveName: payload.liveName };
|
||||||
case "listener":
|
|
||||||
return { ...state, listener: payload.listener };
|
|
||||||
default:
|
default:
|
||||||
throw new Error("not support action");
|
throw new Error("not support action");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user