mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-09-07 16:37:13 +08:00
chore: 添加一些遗漏
This commit is contained in:
@@ -6,17 +6,11 @@
|
|||||||
import api from '$lib/api';
|
import api from '$lib/api';
|
||||||
import SquareArrowOutUpRightIcon from '@lucide/svelte/icons/square-arrow-out-up-right';
|
import SquareArrowOutUpRightIcon from '@lucide/svelte/icons/square-arrow-out-up-right';
|
||||||
import type { ApiError, VideoResponse, UpdateVideoStatusRequest } from '$lib/types';
|
import type { ApiError, VideoResponse, UpdateVideoStatusRequest } from '$lib/types';
|
||||||
import {
|
import { RotateCcwIcon, SquarePenIcon, BrushCleaningIcon } from '@lucide/svelte/icons';
|
||||||
RotateCcwIcon,
|
|
||||||
SquarePenIcon,
|
|
||||||
BrushCleaningIcon,
|
|
||||||
RefreshCwIcon
|
|
||||||
} from '@lucide/svelte/icons';
|
|
||||||
import { setBreadcrumb } from '$lib/stores/breadcrumb';
|
import { setBreadcrumb } from '$lib/stores/breadcrumb';
|
||||||
import { appStateStore, ToQuery } from '$lib/stores/filter';
|
import { appStateStore, ToQuery } from '$lib/stores/filter';
|
||||||
import VideoCard from '$lib/components/video-card.svelte';
|
import VideoCard from '$lib/components/video-card.svelte';
|
||||||
import StatusEditor from '$lib/components/status-editor.svelte';
|
import StatusEditor from '$lib/components/status-editor.svelte';
|
||||||
import { Badge } from '$lib/components/ui/badge/index.js';
|
|
||||||
import { toast } from 'svelte-sonner';
|
import { toast } from 'svelte-sonner';
|
||||||
|
|
||||||
let videoData: VideoResponse | null = null;
|
let videoData: VideoResponse | null = null;
|
||||||
@@ -247,7 +241,6 @@
|
|||||||
style="grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));"
|
style="grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));"
|
||||||
>
|
>
|
||||||
{#each videoData.pages as pageInfo (pageInfo.id)}
|
{#each videoData.pages as pageInfo (pageInfo.id)}
|
||||||
<div class="space-y-2">
|
|
||||||
<VideoCard
|
<VideoCard
|
||||||
video={{
|
video={{
|
||||||
id: pageInfo.id,
|
id: pageInfo.id,
|
||||||
@@ -263,7 +256,6 @@
|
|||||||
customSubtitle=""
|
customSubtitle=""
|
||||||
taskNames={['视频封面', '视频内容', '视频信息', '视频弹幕', '视频字幕']}
|
taskNames={['视频封面', '视频内容', '视频信息', '视频弹幕', '视频字幕']}
|
||||||
/>
|
/>
|
||||||
</div>
|
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user