mirror of
https://github.com/tiajinsha/JKVideo.git
synced 2026-04-04 22:49:02 +08:00
74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
import type { VideoItem, LiveRoom } from '../services/types';
|
|
|
|
export interface NormalRow {
|
|
type: 'pair';
|
|
left: VideoItem;
|
|
right: VideoItem | null;
|
|
}
|
|
|
|
export interface BigRow {
|
|
type: 'big';
|
|
item: VideoItem;
|
|
}
|
|
|
|
export interface LiveRow {
|
|
type: 'live';
|
|
left: LiveRoom;
|
|
right?: LiveRoom;
|
|
}
|
|
|
|
export type ListRow = NormalRow | BigRow | LiveRow;
|
|
|
|
export function toListRows(pages: VideoItem[][], liveRooms?: LiveRoom[]): ListRow[] {
|
|
const rows: ListRow[] = [];
|
|
let roomIdx = 0;
|
|
|
|
for (const chunk of pages) {
|
|
if (chunk.length === 0) continue;
|
|
|
|
// Highest view count becomes BigRow
|
|
let bigIdx = 0;
|
|
let maxView = chunk[0].stat?.view ?? 0;
|
|
for (let i = 1; i < chunk.length; i++) {
|
|
const v = chunk[i].stat?.view ?? 0;
|
|
if (v > maxView) { maxView = v; bigIdx = i; }
|
|
}
|
|
|
|
const bigItem = chunk[bigIdx];
|
|
const rest = chunk.filter((_, i) => i !== bigIdx);
|
|
|
|
const pairs: (NormalRow | LiveRow)[] = [];
|
|
for (let i = 0; i < rest.length; i += 2) {
|
|
if (rest[i + 1]) {
|
|
pairs.push({ type: 'pair', left: rest[i], right: rest[i + 1] ?? null });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if (liveRooms && liveRooms.length >= 2) {
|
|
const a = liveRooms[roomIdx % liveRooms.length];
|
|
const b = liveRooms[(roomIdx + 1) % liveRooms.length];
|
|
roomIdx += 2;
|
|
|
|
if (rows.length < 20) {
|
|
rows.push({ type: 'big', item: bigItem });
|
|
rows.push({ type: 'live', left: a, right: b });
|
|
rows.push(...pairs);
|
|
} else {
|
|
rows.push(...pairs);
|
|
rows.push({ type: 'big', item: bigItem });
|
|
rows.push({ type: 'live', left: a, right: b });
|
|
}
|
|
} else {
|
|
// No live data, fall back to original logic
|
|
if (rows.length < 20) {
|
|
rows.push({ type: 'big', item: bigItem }, ...pairs);
|
|
} else {
|
|
rows.push(...pairs, { type: 'big', item: bigItem });
|
|
}
|
|
}
|
|
}
|
|
return rows;
|
|
}
|