| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247 |
- <template>
- <div class="works-page">
- <div class="page-header">
- <h2>作品管理</h2>
- <div class="header-stats">
- <span>总作品: {{ stats.totalCount }}</span>
- <span>总播放: {{ formatNumber(stats.totalPlayCount) }}</span>
- <span>总点赞: {{ formatNumber(stats.totalLikeCount) }}</span>
- </div>
- </div>
-
- <!-- 筛选栏 -->
- <div class="page-card filter-bar">
- <el-select v-model="filter.accountId" placeholder="选择账号" clearable style="width: 200px">
- <el-option
- v-for="account in accounts"
- :key="account.id"
- :label="`${account.accountName} (${getPlatformName(account.platform)})`"
- :value="account.id"
- />
- </el-select>
- <el-select v-model="filter.platform" placeholder="平台" clearable style="width: 120px">
- <el-option
- v-for="platform in platforms"
- :key="platform.type"
- :label="platform.name"
- :value="platform.type"
- />
- </el-select>
- <el-select v-model="filter.status" placeholder="状态" clearable style="width: 120px">
- <el-option label="已发布" value="published" />
- <el-option label="审核中" value="reviewing" />
- <el-option label="未通过" value="rejected" />
- </el-select>
- <el-input
- v-model="filter.keyword"
- placeholder="搜索作品标题"
- clearable
- style="width: 200px"
- @keyup.enter="loadWorks"
- />
- <el-button type="primary" @click="loadWorks">
- <el-icon><Search /></el-icon>
- 搜索
- </el-button>
- <el-button @click="refreshAllWorks" :loading="refreshing">
- <el-icon><Refresh /></el-icon>
- 同步作品
- </el-button>
- <el-button type="success" @click="syncAllComments" :loading="syncingComments">
- <el-icon><ChatDotSquare /></el-icon>
- 同步评论
- </el-button>
- </div>
-
- <!-- 作品列表 -->
- <div class="page-card">
- <div class="works-grid" v-loading="loading">
- <div v-if="works.length === 0 && !loading" class="empty-state">
- <el-empty description="暂无作品数据">
- <el-button type="primary" @click="refreshAllWorks">同步作品</el-button>
- </el-empty>
- </div>
-
- <div
- v-for="work in works"
- :key="work.id"
- class="work-card"
- @click="openWorkDetail(work)"
- >
- <div class="work-cover">
- <img :src="work.coverUrl" :alt="work.title" @error="handleImageError" />
- <span class="work-duration">{{ work.duration }}</span>
- <el-tag
- class="work-status"
- :type="getStatusType(work.status)"
- size="small"
- >
- {{ getStatusText(work.status) }}
- </el-tag>
- </div>
-
- <div class="work-info">
- <div class="work-title" :title="work.title">{{ work.title || '无标题' }}</div>
- <div class="work-meta">
- <el-tag size="small" type="info">{{ getPlatformName(work.platform) }}</el-tag>
- <span class="work-time">{{ formatDate(work.publishTime) }}</span>
- </div>
- <div class="work-stats">
- <span><el-icon><VideoPlay /></el-icon> {{ formatNumber(work.playCount) }}</span>
- <span><el-icon><Star /></el-icon> {{ formatNumber(work.likeCount) }}</span>
- <span><el-icon><ChatDotSquare /></el-icon> {{ work.commentCount }}</span>
- <span><el-icon><Share /></el-icon> {{ work.shareCount }}</span>
- </div>
- </div>
-
- <div class="work-actions">
- <el-button type="primary" link size="small" @click.stop="viewComments(work)">
- 查看评论 ({{ work.commentCount }})
- </el-button>
- </div>
- </div>
- </div>
-
- <el-pagination
- v-if="pagination.total > 0"
- v-model:current-page="pagination.page"
- v-model:page-size="pagination.pageSize"
- :total="pagination.total"
- :page-sizes="[12, 24, 48]"
- layout="total, sizes, prev, pager, next"
- style="margin-top: 20px"
- @change="loadWorks"
- />
- </div>
-
- <!-- 作品详情对话框 -->
- <el-dialog
- v-model="showDetailDialog"
- :title="currentWork?.title || '作品详情'"
- width="800px"
- destroy-on-close
- >
- <div class="work-detail" v-if="currentWork">
- <div class="detail-left">
- <div class="detail-cover">
- <img :src="currentWork.coverUrl" :alt="currentWork.title" />
- </div>
- </div>
- <div class="detail-right">
- <div class="detail-row">
- <label>平台:</label>
- <el-tag>{{ getPlatformName(currentWork.platform) }}</el-tag>
- </div>
- <div class="detail-row">
- <label>状态:</label>
- <el-tag :type="getStatusType(currentWork.status)">
- {{ getStatusText(currentWork.status) }}
- </el-tag>
- </div>
- <div class="detail-row">
- <label>发布时间:</label>
- <span>{{ formatDate(currentWork.publishTime) }}</span>
- </div>
- <div class="detail-row">
- <label>时长:</label>
- <span>{{ currentWork.duration }}</span>
- </div>
- <div class="detail-stats">
- <div class="stat-item">
- <div class="stat-value">{{ formatNumber(currentWork.playCount) }}</div>
- <div class="stat-label">播放</div>
- </div>
- <div class="stat-item">
- <div class="stat-value">{{ formatNumber(currentWork.likeCount) }}</div>
- <div class="stat-label">点赞</div>
- </div>
- <div class="stat-item">
- <div class="stat-value">{{ currentWork.commentCount }}</div>
- <div class="stat-label">评论</div>
- </div>
- <div class="stat-item">
- <div class="stat-value">{{ currentWork.shareCount }}</div>
- <div class="stat-label">分享</div>
- </div>
- </div>
- <div class="detail-description" v-if="currentWork.description">
- <label>描述:</label>
- <p>{{ currentWork.description }}</p>
- </div>
- </div>
- </div>
- <template #footer>
- <el-button @click="showDetailDialog = false">关闭</el-button>
- <el-button type="primary" @click="viewComments(currentWork!)">
- 查看评论
- </el-button>
- <el-button
- type="danger"
- @click="deletePlatformWork(currentWork!)"
- v-if="currentWork?.platform === 'douyin'"
- >
- <el-icon><Delete /></el-icon>
- 删除平台作品
- </el-button>
- </template>
- </el-dialog>
-
- <!-- 评论抽屉 -->
- <el-drawer
- v-model="showCommentsDrawer"
- :title="commentsWork ? `评论 - ${commentsWork.title || '作品'}` : '所有评论'"
- size="500px"
- destroy-on-close
- >
- <div class="comments-drawer-header" v-if="commentsWork">
- <img :src="commentsWork.coverUrl" class="work-thumb" @error="handleImageError" />
- <div class="work-brief">
- <div class="work-brief-title">{{ commentsWork.title || '无标题' }}</div>
- <div class="work-brief-meta">
- <el-tag size="small">{{ getPlatformName(commentsWork.platform) }}</el-tag>
- <span>{{ commentsWork.commentCount }} 条评论</span>
- </div>
- </div>
- </div>
- <div class="comments-drawer-header" v-else>
- <div class="work-brief">
- <div class="work-brief-title">所有评论</div>
- <div class="work-brief-meta">
- <span>共 {{ commentsPagination.total }} 条评论</span>
- </div>
- </div>
- </div>
-
- <el-divider />
-
- <div class="comments-list" v-loading="commentsLoading">
- <div v-if="comments.length === 0 && !commentsLoading" class="empty-comments">
- <el-empty description="暂无评论" :image-size="80" />
- </div>
-
- <div v-for="comment in comments" :key="comment.id" class="comment-item">
- <el-avatar :size="36" :src="comment.authorAvatar || undefined">
- {{ comment.authorName?.[0] }}
- </el-avatar>
- <div class="comment-body">
- <div class="comment-header">
- <span class="author-name">{{ comment.authorName }}</span>
- <span class="comment-time">{{ formatDate(comment.commentTime) }}</span>
- </div>
- <div class="comment-text">{{ comment.content }}</div>
- <div class="comment-actions">
- <span class="like-count">
- <el-icon><Star /></el-icon> {{ comment.likeCount }}
- </span>
- <el-button
- v-if="!comment.replyContent"
- type="primary"
- link
- size="small"
- @click="openReplyDialog(comment)"
- >
- 回复
- </el-button>
- </div>
- <div v-if="comment.replyContent" class="reply-box">
- <strong>已回复:</strong>{{ comment.replyContent }}
- </div>
- </div>
- </div>
- </div>
-
- <div class="comments-pagination" v-if="commentsPagination.total > commentsPagination.pageSize">
- <el-pagination
- v-model:current-page="commentsPagination.page"
- :page-size="commentsPagination.pageSize"
- :total="commentsPagination.total"
- layout="prev, pager, next"
- small
- @change="loadComments"
- />
- </div>
- </el-drawer>
-
- <!-- 回复评论对话框 -->
- <el-dialog v-model="showReplyDialog" title="回复评论" width="500px">
- <div class="reply-original">
- <strong>原评论:</strong>
- <p>{{ replyTarget?.content }}</p>
- </div>
- <el-input
- v-model="replyContent"
- type="textarea"
- :rows="4"
- placeholder="输入回复内容"
- />
- <template #footer>
- <el-button @click="showReplyDialog = false">取消</el-button>
- <el-button type="primary" @click="handleReply" :loading="replying">
- 回复
- </el-button>
- </template>
- </el-dialog>
-
- <!-- 评论同步对话框 -->
- <el-dialog
- v-model="showSyncDialog"
- title="同步评论"
- width="450px"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- :show-close="syncState.status !== 'syncing'"
- >
- <div class="sync-status">
- <!-- 同步中 -->
- <template v-if="syncState.status === 'syncing'">
- <div class="sync-animation">
- <el-icon class="is-loading" :size="48" color="#409eff"><Loading /></el-icon>
- </div>
- <div class="sync-text">
- 正在同步评论<span class="sync-dots">{{ syncDots }}</span>
- </div>
- <el-progress
- :percentage="Math.floor(syncState.progress)"
- :stroke-width="8"
- style="margin: 16px 0"
- />
- <div class="sync-hint">
- 正在从平台获取评论数据,请耐心等待...
- </div>
- <div class="sync-steps">
- <span :class="{ active: syncState.step >= 1 }">连接平台</span>
- <span :class="{ active: syncState.step >= 2 }">获取作品</span>
- <span :class="{ active: syncState.step >= 3 }">提取评论</span>
- </div>
- </template>
-
- <!-- 同步成功 -->
- <template v-else-if="syncState.status === 'success'">
- <div class="sync-animation">
- <el-icon :size="48" color="#67c23a"><CircleCheckFilled /></el-icon>
- </div>
- <div class="sync-text success">同步完成</div>
- <div class="sync-result">
- <p>成功同步 <strong>{{ syncState.syncedCount }}</strong> 条评论</p>
- <p v-if="syncState.accountsCount">涉及 {{ syncState.accountsCount }} 个账号</p>
- </div>
- <el-button type="primary" link @click="viewAllComments" style="margin-top: 12px">
- 查看所有评论
- </el-button>
- </template>
-
- <!-- 同步失败 -->
- <template v-else-if="syncState.status === 'failed'">
- <div class="sync-animation">
- <el-icon :size="48" color="#f56c6c"><CircleCloseFilled /></el-icon>
- </div>
- <div class="sync-text error">同步失败</div>
- <div class="sync-error">{{ syncState.error }}</div>
- </template>
-
- <!-- 无评论 -->
- <template v-else-if="syncState.status === 'empty'">
- <div class="sync-animation">
- <el-icon :size="48" color="#909399"><WarningFilled /></el-icon>
- </div>
- <div class="sync-text">未获取到新评论</div>
- <div class="sync-hint">可能原因:平台暂无新评论,或 Cookie 已过期</div>
- </template>
- </div>
-
- <template #footer v-if="syncState.status !== 'syncing'">
- <el-button type="primary" @click="closeSyncDialog">确定</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, reactive, onMounted, onUnmounted, computed } from 'vue';
- import { Search, Refresh, VideoPlay, Star, ChatDotSquare, Share, Loading, CircleCheckFilled, CircleCloseFilled, WarningFilled, Delete } from '@element-plus/icons-vue';
- import { ElMessageBox } from 'element-plus';
- import { ElMessage } from 'element-plus';
- import request from '@/api/request';
- import { accountsApi } from '@/api/accounts';
- import { PLATFORMS, PLATFORM_TYPES, WS_EVENTS } from '@media-manager/shared';
- import type { Work, WorkStats, PlatformAccount, PlatformType, Comment } from '@media-manager/shared';
- import { useServerStore } from '@/stores/server';
- import { useAuthStore } from '@/stores/auth';
- import { useTaskQueueStore } from '@/stores/taskQueue';
- import dayjs from 'dayjs';
- const serverStore = useServerStore();
- const authStore = useAuthStore();
- const taskStore = useTaskQueueStore();
- const loading = ref(false);
- const refreshing = ref(false);
- const syncingComments = ref(false);
- const showDetailDialog = ref(false);
- const showCommentsDrawer = ref(false);
- const showReplyDialog = ref(false);
- const showSyncDialog = ref(false);
- const commentsLoading = ref(false);
- const replying = ref(false);
- // 评论同步状态
- const syncDots = ref('');
- const syncState = reactive({
- status: 'syncing' as 'syncing' | 'success' | 'failed' | 'empty',
- progress: 0,
- step: 1,
- syncedCount: 0,
- accountsCount: 0,
- error: '',
- });
- let syncTimer: ReturnType<typeof setInterval> | null = null;
- const works = ref<Work[]>([]);
- const accounts = ref<PlatformAccount[]>([]);
- const currentWork = ref<Work | null>(null);
- const commentsWork = ref<Work | null>(null);
- const comments = ref<Comment[]>([]);
- const replyTarget = ref<Comment | null>(null);
- const replyContent = ref('');
- const stats = ref<WorkStats>({
- totalCount: 0,
- publishedCount: 0,
- totalPlayCount: 0,
- totalLikeCount: 0,
- totalCommentCount: 0,
- });
- const commentsPagination = reactive({
- page: 1,
- pageSize: 20,
- total: 0,
- });
- const platforms = computed(() =>
- PLATFORM_TYPES.map(type => PLATFORMS[type]).filter(p => p.supported)
- );
- const filter = reactive({
- accountId: undefined as number | undefined,
- platform: '' as PlatformType | '',
- status: '',
- keyword: '',
- });
- const pagination = reactive({
- page: 1,
- pageSize: 12,
- total: 0,
- });
- function getPlatformName(platform: PlatformType) {
- return PLATFORMS[platform]?.name || platform;
- }
- function getStatusType(status: string) {
- const map: Record<string, 'success' | 'warning' | 'danger' | 'info'> = {
- published: 'success',
- reviewing: 'warning',
- rejected: 'danger',
- draft: 'info',
- };
- return map[status] || 'info';
- }
- function getStatusText(status: string) {
- const map: Record<string, string> = {
- published: '已发布',
- reviewing: '审核中',
- rejected: '未通过',
- draft: '草稿',
- };
- return map[status] || status;
- }
- function formatDate(date: string) {
- if (!date) return '-';
- return dayjs(date).format('YYYY-MM-DD HH:mm');
- }
- function formatNumber(num: number) {
- if (num >= 10000) {
- return (num / 10000).toFixed(1) + '万';
- }
- return num?.toString() || '0';
- }
- function handleImageError(e: Event) {
- const img = e.target as HTMLImageElement;
- img.src = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f0f0f0" width="100" height="100"/><text x="50" y="55" text-anchor="middle" fill="%23999" font-size="12">无封面</text></svg>';
- }
- async function loadWorks() {
- loading.value = true;
- try {
- const result = await request.get('/api/works', {
- params: {
- page: pagination.page,
- pageSize: pagination.pageSize,
- accountId: filter.accountId,
- platform: filter.platform || undefined,
- status: filter.status || undefined,
- keyword: filter.keyword || undefined,
- },
- }) as { items: Work[]; total: number };
- works.value = result?.items || [];
- pagination.total = result?.total || 0;
- } catch {
- works.value = [];
- } finally {
- loading.value = false;
- }
- }
- async function loadStats() {
- try {
- const result = await request.get('/api/works/stats') as WorkStats;
- if (result) {
- stats.value = result;
- }
- } catch {
- // 忽略错误
- }
- }
- async function loadAccounts() {
- try {
- accounts.value = await accountsApi.getAccounts();
- } catch {
- // 忽略错误
- }
- }
- async function refreshAllWorks() {
- if (!accounts.value.length) {
- ElMessage.warning('请先添加平台账号');
- return;
- }
-
- refreshing.value = true;
- try {
- // 使用任务队列
- await taskStore.syncWorks();
- ElMessage.success('作品同步任务已创建,请在任务队列中查看进度');
- // 打开任务队列弹框
- taskStore.openDialog();
- // 延迟刷新
- setTimeout(() => {
- loadWorks();
- loadStats();
- }, 5000);
- } catch (error) {
- ElMessage.error((error as Error)?.message || '创建同步任务失败');
- } finally {
- refreshing.value = false;
- }
- }
- // WebSocket 连接用于接收同步结果
- let ws: WebSocket | null = null;
- let wsReconnectTimer: ReturnType<typeof setTimeout> | null = null;
- let syncTimeoutTimer: ReturnType<typeof setTimeout> | null = null;
- function setupWebSocket() {
- // 检查是否已连接
- if (ws && ws.readyState === WebSocket.OPEN) {
- console.log('[WS] Already connected');
- return;
- }
-
- // 检查 token 是否可用
- const token = authStore.accessToken;
- if (!token) {
- console.warn('[WS] No token available, cannot setup WebSocket');
- return;
- }
-
- const serverUrl = serverStore.currentServer?.url || 'http://localhost:3000';
- const wsUrl = serverUrl.replace(/^http/, 'ws') + '/ws';
-
- console.log('[WS] Connecting to:', wsUrl);
- console.log('[WS] Token available:', token.slice(0, 20) + '...');
-
- try {
- ws = new WebSocket(wsUrl);
-
- ws.onopen = () => {
- console.log('[WS] Connected, sending auth...');
- if (ws) {
- ws.send(JSON.stringify({ type: WS_EVENTS.AUTH, payload: { token } }));
- }
- };
-
- ws.onmessage = (event) => {
- console.log('[WS] Raw message received:', event.data);
- try {
- const data = JSON.parse(event.data);
- console.log('[WS] Parsed message:', data);
- console.log('[WS] Message type:', data.type);
- handleWebSocketMessage(data);
- console.log('[WS] After handling, syncState:', JSON.stringify(syncState));
- } catch (e) {
- console.error('[WS] Error processing message:', e);
- }
- };
-
- ws.onclose = () => {
- console.log('[WS] Disconnected');
- // 5秒后尝试重连
- wsReconnectTimer = setTimeout(setupWebSocket, 5000);
- };
-
- ws.onerror = (e) => {
- console.error('[WS] Error:', e);
- ws?.close();
- };
- } catch (e) {
- console.error('[WS] Setup error:', e);
- }
- }
- function handleWebSocketMessage(data: { type?: string; payload?: Record<string, unknown> }) {
- console.log('[WS] Message received:', JSON.stringify(data));
-
- // 优先从 payload.event 获取事件类型,其次从 type 获取
- const event = (data.payload?.event as string) || data.type || '';
- console.log('[WS] Event:', event);
-
- // 清除超时定时器
- if (syncTimeoutTimer && (event === 'synced' || event === 'sync_failed')) {
- clearTimeout(syncTimeoutTimer);
- syncTimeoutTimer = null;
- }
-
- switch (event) {
- case 'sync_started':
- console.log('[WS] Sync started');
- syncState.progress = 5;
- syncState.step = 1;
- break;
-
- case 'sync_progress':
- if (data.payload) {
- const { current, total, progress } = data.payload as { current: number; total: number; progress: number };
- console.log(`[WS] Progress: ${current}/${total} (${progress}%)`);
- syncState.progress = Math.min(90, Math.round(progress * 0.9));
- if (current >= 1) syncState.step = 2;
- if (current > 1) syncState.step = 3;
- }
- break;
-
- case 'synced':
- console.log('[WS] Sync completed:', data.payload);
- stopSyncAnimation();
- syncState.progress = 100;
- syncState.step = 3;
- syncState.syncedCount = (data.payload?.syncedCount as number) || 0;
- syncState.accountsCount = (data.payload?.accountCount as number) || 0;
- syncState.status = syncState.syncedCount > 0 ? 'success' : 'empty';
- syncingComments.value = false;
- if (commentsWork.value) loadComments();
- break;
-
- case 'sync_failed':
- console.log('[WS] Sync failed:', data.payload);
- stopSyncAnimation();
- syncState.status = 'failed';
- syncState.error = (data.payload?.message as string) || '同步失败';
- syncingComments.value = false;
- break;
- }
- }
- // 超时处理:如果2分钟内没收到 WebSocket 消息,显示完成状态
- function startSyncTimeout() {
- if (syncTimeoutTimer) {
- clearTimeout(syncTimeoutTimer);
- }
- syncTimeoutTimer = setTimeout(() => {
- if (syncState.status === 'syncing') {
- console.log('[Sync] Timeout, assuming completed');
- stopSyncAnimation();
- syncState.status = 'success';
- syncState.syncedCount = 0;
- syncingComments.value = false;
- ElMessage.info('同步已完成,请刷新页面查看结果');
- }
- }, 120000); // 2分钟超时
- }
- function cleanupWebSocket() {
- if (wsReconnectTimer) {
- clearTimeout(wsReconnectTimer);
- wsReconnectTimer = null;
- }
- if (syncTimeoutTimer) {
- clearTimeout(syncTimeoutTimer);
- syncTimeoutTimer = null;
- }
- if (ws) {
- ws.close();
- ws = null;
- }
- }
- async function syncAllComments() {
- if (!accounts.value.length) {
- ElMessage.warning('请先添加平台账号');
- return;
- }
- // 使用任务队列
- try {
- await request.post('/api/comments/sync');
- ElMessage.success('评论同步任务已创建,请在任务队列中查看进度');
- // 打开任务队列弹框
- taskStore.openDialog();
- } catch (error) {
- ElMessage.error((error as Error)?.message || '创建同步任务失败');
- }
- }
- function startSyncAnimation() {
- let dotCount = 0;
- syncTimer = setInterval(() => {
- dotCount = (dotCount + 1) % 4;
- syncDots.value = '.'.repeat(dotCount);
-
- // 只在没有收到 WebSocket 进度时才慢慢增加进度(作为备用)
- // 真实进度由 WebSocket 消息更新
- if (syncState.progress < 20 && syncState.step === 1) {
- // 连接平台阶段,缓慢增加
- syncState.progress += 1;
- }
- }, 500);
- }
- function stopSyncAnimation() {
- if (syncTimer) {
- clearInterval(syncTimer);
- syncTimer = null;
- }
- syncState.progress = 100;
- syncState.step = 3;
- }
- function closeSyncDialog() {
- showSyncDialog.value = false;
- stopSyncAnimation();
- }
- function viewAllComments() {
- closeSyncDialog();
- commentsWork.value = null; // 不筛选特定作品
- commentsPagination.page = 1;
- showCommentsDrawer.value = true;
- loadComments();
- }
- function openWorkDetail(work: Work) {
- currentWork.value = work;
- showDetailDialog.value = true;
- }
- function viewComments(work: Work) {
- showDetailDialog.value = false;
- commentsWork.value = work;
- commentsPagination.page = 1;
- showCommentsDrawer.value = true;
- loadComments();
- }
- async function deletePlatformWork(work: Work) {
- try {
- await ElMessageBox.confirm(
- '确定要从平台删除该作品吗?此操作不可恢复!',
- '删除确认',
- { type: 'warning' }
- );
-
- showDetailDialog.value = false;
-
- // 调用删除平台作品 API
- await request.post(`/api/works/${work.id}/delete-platform`);
- ElMessage.success('删除任务已创建,请在任务队列中查看进度');
- taskStore.openDialog();
- } catch {
- // 取消或错误
- }
- }
- async function loadComments() {
- commentsLoading.value = true;
- try {
- const params: Record<string, unknown> = {
- page: commentsPagination.page,
- pageSize: commentsPagination.pageSize,
- };
-
- // 如果有选中的作品,按作品筛选;否则查询所有评论
- if (commentsWork.value) {
- params.workId = commentsWork.value.id;
- }
-
- const result = await request.get('/api/comments', { params });
- comments.value = result.items || [];
- commentsPagination.total = result.total || 0;
- } catch {
- comments.value = [];
- } finally {
- commentsLoading.value = false;
- }
- }
- function openReplyDialog(comment: Comment) {
- replyTarget.value = comment;
- replyContent.value = '';
- showReplyDialog.value = true;
- }
- async function handleReply() {
- if (!replyTarget.value || !replyContent.value.trim()) {
- ElMessage.warning('请输入回复内容');
- return;
- }
-
- replying.value = true;
- try {
- await request.post('/api/comments/reply', {
- commentId: replyTarget.value.id,
- content: replyContent.value,
- });
- ElMessage.success('回复成功');
- showReplyDialog.value = false;
- loadComments();
- } catch {
- // 错误已处理
- } finally {
- replying.value = false;
- }
- }
- onMounted(() => {
- loadAccounts();
- loadWorks();
- loadStats();
- // WebSocket 连接改为在需要时才建立(点击同步评论按钮时)
- });
- onUnmounted(() => {
- stopSyncAnimation();
- cleanupWebSocket();
- });
- </script>
- <style lang="scss" scoped>
- @use '@/styles/variables.scss' as *;
- .page-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 20px;
-
- h2 { margin: 0; }
-
- .header-stats {
- display: flex;
- gap: 20px;
- color: $text-secondary;
- }
- }
- .filter-bar {
- display: flex;
- flex-wrap: wrap;
- gap: 12px;
- margin-bottom: 20px;
- }
- .works-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
- gap: 20px;
- min-height: 200px;
- }
- .work-card {
- background: #fff;
- border-radius: 8px;
- overflow: hidden;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
- transition: all 0.3s;
- cursor: pointer;
-
- &:hover {
- box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
- transform: translateY(-2px);
- }
-
- .work-cover {
- position: relative;
- width: 100%;
- padding-top: 56.25%; // 16:9
- background: #f0f0f0;
-
- img {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
-
- .work-duration {
- position: absolute;
- bottom: 8px;
- right: 8px;
- padding: 2px 6px;
- background: rgba(0, 0, 0, 0.7);
- color: #fff;
- font-size: 12px;
- border-radius: 4px;
- }
-
- .work-status {
- position: absolute;
- top: 8px;
- left: 8px;
- }
- }
-
- .work-info {
- padding: 12px;
-
- .work-title {
- font-size: 14px;
- font-weight: 500;
- color: $text-primary;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-bottom: 8px;
- }
-
- .work-meta {
- display: flex;
- align-items: center;
- gap: 8px;
- margin-bottom: 8px;
-
- .work-time {
- font-size: 12px;
- color: $text-secondary;
- }
- }
-
- .work-stats {
- display: flex;
- gap: 12px;
- font-size: 12px;
- color: $text-secondary;
-
- span {
- display: flex;
- align-items: center;
- gap: 4px;
- }
- }
- }
-
- .work-actions {
- padding: 8px 12px;
- border-top: 1px solid $border-lighter;
- text-align: right;
- }
- }
- .empty-state {
- grid-column: 1 / -1;
- padding: 60px 0;
- }
- .work-detail {
- display: flex;
- gap: 24px;
-
- .detail-left {
- flex-shrink: 0;
- width: 300px;
-
- .detail-cover {
- width: 100%;
- border-radius: 8px;
- overflow: hidden;
- background: #f0f0f0;
-
- img {
- width: 100%;
- display: block;
- }
- }
- }
-
- .detail-right {
- flex: 1;
-
- .detail-row {
- display: flex;
- align-items: center;
- margin-bottom: 12px;
-
- label {
- width: 80px;
- color: $text-secondary;
- }
- }
-
- .detail-stats {
- display: flex;
- gap: 20px;
- margin: 20px 0;
- padding: 16px;
- background: $bg-base;
- border-radius: 8px;
-
- .stat-item {
- text-align: center;
-
- .stat-value {
- font-size: 20px;
- font-weight: 600;
- color: $primary-color;
- }
-
- .stat-label {
- font-size: 12px;
- color: $text-secondary;
- margin-top: 4px;
- }
- }
- }
-
- .detail-description {
- label {
- display: block;
- color: $text-secondary;
- margin-bottom: 8px;
- }
-
- p {
- margin: 0;
- color: $text-regular;
- line-height: 1.6;
- }
- }
- }
- }
- // 评论抽屉样式
- .comments-drawer-header {
- display: flex;
- gap: 12px;
-
- .work-thumb {
- width: 80px;
- height: 45px;
- object-fit: cover;
- border-radius: 4px;
- background: #f0f0f0;
- }
-
- .work-brief {
- flex: 1;
-
- .work-brief-title {
- font-weight: 500;
- margin-bottom: 4px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-
- .work-brief-meta {
- display: flex;
- align-items: center;
- gap: 8px;
- font-size: 12px;
- color: $text-secondary;
- }
- }
- }
- .comments-list {
- min-height: 200px;
- }
- .empty-comments {
- padding: 40px 0;
- }
- .comment-item {
- display: flex;
- gap: 12px;
- padding: 12px 0;
- border-bottom: 1px solid $border-lighter;
-
- &:last-child {
- border-bottom: none;
- }
-
- .comment-body {
- flex: 1;
- min-width: 0;
-
- .comment-header {
- display: flex;
- align-items: center;
- gap: 8px;
- margin-bottom: 6px;
-
- .author-name {
- font-weight: 500;
- font-size: 14px;
- }
-
- .comment-time {
- font-size: 12px;
- color: $text-secondary;
- }
- }
-
- .comment-text {
- font-size: 14px;
- line-height: 1.5;
- color: $text-primary;
- word-break: break-word;
- }
-
- .comment-actions {
- display: flex;
- align-items: center;
- gap: 12px;
- margin-top: 8px;
-
- .like-count {
- display: flex;
- align-items: center;
- gap: 4px;
- font-size: 12px;
- color: $text-secondary;
- }
- }
-
- .reply-box {
- margin-top: 8px;
- padding: 8px 12px;
- background: $bg-base;
- border-radius: 4px;
- font-size: 13px;
- color: $text-regular;
- }
- }
- }
- .comments-pagination {
- padding: 16px 0;
- display: flex;
- justify-content: center;
- }
- .reply-original {
- margin-bottom: 16px;
- padding: 12px;
- background: $bg-base;
- border-radius: 4px;
-
- p {
- margin: 8px 0 0;
- }
- }
- // 同步对话框样式
- .sync-status {
- text-align: center;
- padding: 20px 0;
-
- .sync-animation {
- margin-bottom: 16px;
- }
-
- .sync-text {
- font-size: 18px;
- font-weight: 500;
- color: $text-primary;
- margin-bottom: 8px;
-
- &.success { color: #67c23a; }
- &.error { color: #f56c6c; }
-
- .sync-dots {
- display: inline-block;
- width: 24px;
- text-align: left;
- }
- }
-
- .sync-hint {
- font-size: 13px;
- color: $text-secondary;
- margin: 12px 0;
- }
-
- .sync-steps {
- display: flex;
- justify-content: center;
- gap: 24px;
- margin-top: 16px;
-
- span {
- font-size: 13px;
- color: $text-placeholder;
- position: relative;
-
- &.active {
- color: $primary-color;
- font-weight: 500;
- }
-
- &:not(:last-child)::after {
- content: '→';
- position: absolute;
- right: -16px;
- color: $text-placeholder;
- }
- }
- }
-
- .sync-result {
- margin-top: 16px;
- font-size: 14px;
- color: $text-regular;
-
- p {
- margin: 4px 0;
- }
-
- strong {
- color: $primary-color;
- font-size: 20px;
- }
- }
-
- .sync-error {
- margin-top: 12px;
- font-size: 13px;
- color: $text-secondary;
- }
- }
- </style>
|