mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-09-08 00:56:49 +08:00
feat: add video room page with UI enhancements, state management, and localization support
This commit is contained in:
@@ -251,6 +251,18 @@
|
|||||||
"Video room not found": "Video room not found",
|
"Video room not found": "Video room not found",
|
||||||
"Room synced": "Room synced",
|
"Room synced": "Room synced",
|
||||||
"Room disconnected": "Room disconnected",
|
"Room disconnected": "Room disconnected",
|
||||||
|
"Share room": "Share room",
|
||||||
|
"Now watching": "Now watching",
|
||||||
|
"Everyone follows the same playback": "Everyone follows the same playback",
|
||||||
|
"Waiting for sync connection": "Waiting for sync connection",
|
||||||
|
"Playback state is shared in this room": "Playback state is shared in this room",
|
||||||
|
"Room status": "Room status",
|
||||||
|
"Playback": "Playback",
|
||||||
|
"Playing": "Playing",
|
||||||
|
"Paused": "Paused",
|
||||||
|
"Current position": "Current position",
|
||||||
|
"Resync playback": "Resync playback",
|
||||||
|
"Room link": "Room link",
|
||||||
"Audio": "Audio",
|
"Audio": "Audio",
|
||||||
"PDF": "PDF",
|
"PDF": "PDF",
|
||||||
"Word": "Word",
|
"Word": "Word",
|
||||||
|
|||||||
@@ -270,6 +270,18 @@
|
|||||||
"Video room not found": "视频房不存在",
|
"Video room not found": "视频房不存在",
|
||||||
"Room synced": "房间同步中",
|
"Room synced": "房间同步中",
|
||||||
"Room disconnected": "房间已断开",
|
"Room disconnected": "房间已断开",
|
||||||
|
"Share room": "分享房间",
|
||||||
|
"Now watching": "正在观看",
|
||||||
|
"Everyone follows the same playback": "所有人同步播放",
|
||||||
|
"Waiting for sync connection": "等待同步连接",
|
||||||
|
"Playback state is shared in this room": "房间内会同步播放、暂停和进度",
|
||||||
|
"Room status": "房间状态",
|
||||||
|
"Playback": "播放状态",
|
||||||
|
"Playing": "播放中",
|
||||||
|
"Paused": "已暂停",
|
||||||
|
"Current position": "当前进度",
|
||||||
|
"Resync playback": "重新同步",
|
||||||
|
"Room link": "房间链接",
|
||||||
"Audio": "音频",
|
"Audio": "音频",
|
||||||
"PDF": "PDF",
|
"PDF": "PDF",
|
||||||
"Word": "Word 文档",
|
"Word": "Word 文档",
|
||||||
|
|||||||
@@ -0,0 +1,238 @@
|
|||||||
|
.video-room-page {
|
||||||
|
min-height: 100vh;
|
||||||
|
padding: 24px;
|
||||||
|
background: #0b0f12;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-page--center {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-page--center .ant-empty-description {
|
||||||
|
color: rgba(255, 255, 255, 0.72);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 16px;
|
||||||
|
max-width: 1720px;
|
||||||
|
margin: 0 auto 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-header__left {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-header__right {
|
||||||
|
display: flex;
|
||||||
|
flex: none;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-title-block {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-title.ant-typography {
|
||||||
|
max-width: min(980px, 70vw);
|
||||||
|
margin: 0 0 4px;
|
||||||
|
overflow: hidden;
|
||||||
|
color: rgba(255, 255, 255, 0.92);
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-file-name {
|
||||||
|
max-width: min(720px, 58vw);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-status-tag.ant-tag {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 32px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 12px;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-shell {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: minmax(0, 1fr) 360px;
|
||||||
|
gap: 18px;
|
||||||
|
max-width: 1720px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-main {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-stage {
|
||||||
|
overflow: hidden;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
|
border-radius: 12px;
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-player {
|
||||||
|
width: 100%;
|
||||||
|
height: min(72vh, 760px);
|
||||||
|
min-height: 480px;
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-note {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 14px;
|
||||||
|
color: rgba(255, 255, 255, 0.45);
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-note .anticon {
|
||||||
|
color: var(--ant-color-primary, #1677ff);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-side {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 14px;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-panel.ant-card {
|
||||||
|
border-color: rgba(255, 255, 255, 0.08);
|
||||||
|
background: #14191d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-panel .ant-card-head {
|
||||||
|
min-height: 48px;
|
||||||
|
border-bottom-color: rgba(255, 255, 255, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-panel .ant-card-head-title {
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-panel .ant-card-body {
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-dot {
|
||||||
|
display: block;
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
border-radius: 999px;
|
||||||
|
background: var(--ant-color-error, #ff4d4f);
|
||||||
|
box-shadow: 0 0 0 4px rgba(255, 77, 79, 0.14);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-dot.is-connected {
|
||||||
|
background: var(--ant-color-success, #52c41a);
|
||||||
|
box-shadow: 0 0 0 4px rgba(82, 196, 26, 0.14);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-status-list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-status-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
min-width: 0;
|
||||||
|
padding: 12px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||||
|
border-radius: 8px;
|
||||||
|
background: rgba(255, 255, 255, 0.03);
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-status-item > .anticon {
|
||||||
|
flex: none;
|
||||||
|
color: var(--ant-color-primary, #1677ff);
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-status-item div {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-status-item span {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
color: rgba(255, 255, 255, 0.45);
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-status-item strong {
|
||||||
|
display: block;
|
||||||
|
overflow: hidden;
|
||||||
|
color: rgba(255, 255, 255, 0.88);
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-primary-action.ant-btn {
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-panel__text {
|
||||||
|
margin: 0 0 14px;
|
||||||
|
color: rgba(255, 255, 255, 0.55);
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1180px) {
|
||||||
|
.video-room-shell {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-side {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 760px) {
|
||||||
|
.video-room-page {
|
||||||
|
padding: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-header {
|
||||||
|
align-items: stretch;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-header__right {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-title.ant-typography,
|
||||||
|
.video-room-file-name {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-player {
|
||||||
|
height: 56vh;
|
||||||
|
min-height: 280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-room-side {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
+135
-25
@@ -1,15 +1,40 @@
|
|||||||
import { memo, useEffect, useRef, useState } from 'react';
|
import { memo, useEffect, useRef, useState } from 'react';
|
||||||
import { useParams } from 'react-router';
|
import { useParams } from 'react-router';
|
||||||
import { Button, Empty, Spin, Typography, message } from 'antd';
|
import { Button, Card, Empty, Space, Spin, Tag, Tooltip, Typography, message } from 'antd';
|
||||||
import { CopyOutlined } from '@ant-design/icons';
|
import {
|
||||||
|
CheckCircleFilled,
|
||||||
|
ClockCircleOutlined,
|
||||||
|
CopyOutlined,
|
||||||
|
DisconnectOutlined,
|
||||||
|
FileTextOutlined,
|
||||||
|
LinkOutlined,
|
||||||
|
PlayCircleOutlined,
|
||||||
|
ReloadOutlined,
|
||||||
|
} from '@ant-design/icons';
|
||||||
import Artplayer from 'artplayer';
|
import Artplayer from 'artplayer';
|
||||||
import { videoRoomsApi, type VideoRoomInfo, type VideoRoomState } from '../api/videoRooms';
|
import { videoRoomsApi, type VideoRoomInfo, type VideoRoomState } from '../api/videoRooms';
|
||||||
import { useI18n } from '../i18n';
|
import { useI18n } from '../i18n';
|
||||||
|
import './VideoRoomPage.css';
|
||||||
|
|
||||||
const { Title, Text } = Typography;
|
const { Text, Title } = Typography;
|
||||||
|
|
||||||
const SYNC_THRESHOLD = 1.2;
|
const SYNC_THRESHOLD = 1.2;
|
||||||
|
|
||||||
|
function formatTime(seconds: number) {
|
||||||
|
const safeSeconds = Math.max(0, Math.floor(seconds || 0));
|
||||||
|
const hours = Math.floor(safeSeconds / 3600);
|
||||||
|
const minutes = Math.floor((safeSeconds % 3600) / 60);
|
||||||
|
const secs = safeSeconds % 60;
|
||||||
|
if (hours > 0) {
|
||||||
|
return `${hours}:${String(minutes).padStart(2, '0')}:${String(secs).padStart(2, '0')}`;
|
||||||
|
}
|
||||||
|
return `${minutes}:${String(secs).padStart(2, '0')}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFileName(path: string) {
|
||||||
|
return path.split('/').filter(Boolean).pop() || path;
|
||||||
|
}
|
||||||
|
|
||||||
const VideoRoomPage = memo(function VideoRoomPage() {
|
const VideoRoomPage = memo(function VideoRoomPage() {
|
||||||
const { token } = useParams<{ token: string }>();
|
const { token } = useParams<{ token: string }>();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
@@ -19,6 +44,7 @@ const VideoRoomPage = memo(function VideoRoomPage() {
|
|||||||
const applyingRemoteRef = useRef(false);
|
const applyingRemoteRef = useRef(false);
|
||||||
const sendTimerRef = useRef<number | null>(null);
|
const sendTimerRef = useRef<number | null>(null);
|
||||||
const [room, setRoom] = useState<VideoRoomInfo | null>(null);
|
const [room, setRoom] = useState<VideoRoomInfo | null>(null);
|
||||||
|
const [liveState, setLiveState] = useState<VideoRoomState | null>(null);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [error, setError] = useState('');
|
const [error, setError] = useState('');
|
||||||
const [connected, setConnected] = useState(false);
|
const [connected, setConnected] = useState(false);
|
||||||
@@ -31,6 +57,7 @@ const VideoRoomPage = memo(function VideoRoomPage() {
|
|||||||
.then((data) => {
|
.then((data) => {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
setRoom(data);
|
setRoom(data);
|
||||||
|
setLiveState(data.state);
|
||||||
})
|
})
|
||||||
.catch((e: any) => {
|
.catch((e: any) => {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
@@ -73,6 +100,7 @@ const VideoRoomPage = memo(function VideoRoomPage() {
|
|||||||
|
|
||||||
const applyState = (state: VideoRoomState) => {
|
const applyState = (state: VideoRoomState) => {
|
||||||
const art = artInstance.current;
|
const art = artInstance.current;
|
||||||
|
setLiveState(state);
|
||||||
if (!art) return;
|
if (!art) return;
|
||||||
const video = art.video;
|
const video = art.video;
|
||||||
const targetTime = Math.max(0, Number(state.current_time) || 0);
|
const targetTime = Math.max(0, Number(state.current_time) || 0);
|
||||||
@@ -141,38 +169,120 @@ const VideoRoomPage = memo(function VideoRoomPage() {
|
|||||||
message.success(t('Copied to clipboard'));
|
message.success(t('Copied to clipboard'));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleResync = () => {
|
||||||
|
if (!liveState) return;
|
||||||
|
const art = artInstance.current;
|
||||||
|
if (!art) return;
|
||||||
|
art.video.currentTime = Math.max(0, Number(liveState.current_time) || 0);
|
||||||
|
if (liveState.paused) {
|
||||||
|
void art.video.pause();
|
||||||
|
} else {
|
||||||
|
void art.video.play().catch(() => undefined);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return <div style={{ textAlign: 'center', padding: 50 }}><Spin size="large" /></div>;
|
return (
|
||||||
|
<div className="video-room-page video-room-page--center">
|
||||||
|
<Spin size="large" />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error || !room) {
|
if (error || !room) {
|
||||||
return <div style={{ textAlign: 'center', padding: 50 }}><Empty description={error || t('Video room not found')} /></div>;
|
return (
|
||||||
|
<div className="video-room-page video-room-page--center">
|
||||||
|
<Empty description={error || t('Video room not found')} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const fileName = getFileName(room.path);
|
||||||
|
const state = liveState || room.state;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ minHeight: '100vh', background: '#111', color: '#fff', padding: 24 }}>
|
<div className="video-room-page">
|
||||||
<div style={{ maxWidth: 1120, margin: '0 auto' }}>
|
<header className="video-room-header">
|
||||||
<div style={{ display: 'flex', justifyContent: 'space-between', gap: 16, alignItems: 'center', marginBottom: 16 }}>
|
<div className="video-room-header__left">
|
||||||
<div style={{ minWidth: 0 }}>
|
<div className="video-room-title-block">
|
||||||
<Title level={3} style={{ color: '#fff', margin: 0 }}>{room.name}</Title>
|
<Title level={3} className="video-room-title">{room.name}</Title>
|
||||||
<Text style={{ color: connected ? '#7dd3fc' : '#fca5a5' }}>
|
<Space size={8} wrap>
|
||||||
{connected ? t('Room synced') : t('Room disconnected')}
|
<Text type="secondary" ellipsis className="video-room-file-name">{fileName}</Text>
|
||||||
</Text>
|
<Text type="secondary">{formatTime(state.current_time)}</Text>
|
||||||
|
</Space>
|
||||||
</div>
|
</div>
|
||||||
<Button icon={<CopyOutlined />} onClick={handleCopy}>
|
</div>
|
||||||
|
<div className="video-room-header__right">
|
||||||
|
<Tag
|
||||||
|
className="video-room-status-tag"
|
||||||
|
color={connected ? 'success' : 'error'}
|
||||||
|
icon={connected ? <CheckCircleFilled /> : <DisconnectOutlined />}
|
||||||
|
>
|
||||||
|
{connected ? t('Room synced') : t('Room disconnected')}
|
||||||
|
</Tag>
|
||||||
|
<Tooltip title={t('Copy Link')}>
|
||||||
|
<Button icon={<LinkOutlined />} onClick={handleCopy}>
|
||||||
|
{t('Share room')}
|
||||||
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main className="video-room-shell">
|
||||||
|
<section className="video-room-main">
|
||||||
|
<div className="video-room-stage">
|
||||||
|
<div ref={artRef} className="video-room-player" />
|
||||||
|
</div>
|
||||||
|
<div className="video-room-note">
|
||||||
|
<CheckCircleFilled />
|
||||||
|
<span>{t('Playback state is shared in this room')}</span>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<aside className="video-room-side">
|
||||||
|
<Card
|
||||||
|
className="video-room-panel"
|
||||||
|
title={t('Room status')}
|
||||||
|
extra={<span className={connected ? 'video-room-dot is-connected' : 'video-room-dot'} />}
|
||||||
|
>
|
||||||
|
<div className="video-room-status-list">
|
||||||
|
<div className="video-room-status-item">
|
||||||
|
<PlayCircleOutlined />
|
||||||
|
<div>
|
||||||
|
<span>{t('Playback')}</span>
|
||||||
|
<strong>{state.paused ? t('Paused') : t('Playing')}</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="video-room-status-item">
|
||||||
|
<ClockCircleOutlined />
|
||||||
|
<div>
|
||||||
|
<span>{t('Current position')}</span>
|
||||||
|
<strong>{formatTime(state.current_time)}</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="video-room-status-item">
|
||||||
|
<FileTextOutlined />
|
||||||
|
<div>
|
||||||
|
<span>{t('File')}</span>
|
||||||
|
<strong title={room.path}>{fileName}</strong>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Button block className="video-room-primary-action" icon={<ReloadOutlined />} onClick={handleResync}>
|
||||||
|
{t('Resync playback')}
|
||||||
|
</Button>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
<Card className="video-room-panel" title={t('Room link')}>
|
||||||
|
<p className="video-room-panel__text">
|
||||||
|
{t('Share this room link with friends')}
|
||||||
|
</p>
|
||||||
|
<Button block icon={<CopyOutlined />} onClick={handleCopy}>
|
||||||
{t('Copy Link')}
|
{t('Copy Link')}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</Card>
|
||||||
<div
|
</aside>
|
||||||
ref={artRef}
|
</main>
|
||||||
style={{
|
|
||||||
width: '100%',
|
|
||||||
height: 'min(70vh, 680px)',
|
|
||||||
minHeight: 360,
|
|
||||||
background: '#000',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user