KTV / lib /utils /sort.ts
l-g-t's picture
Upload 212 files
3c76719 verified
/**
* Sort utility functions for search results
*/
import type { SortOption } from '@/lib/store/settings-store';
import type { Video } from '@/lib/types';
export function sortVideos(videos: Video[], sortBy: SortOption): Video[] {
const sorted = [...videos];
switch (sortBy) {
case 'relevance':
// Sort by relevance score (highest first)
return sorted.sort((a, b) => {
const scoreA = (a as any).relevanceScore || 0;
const scoreB = (b as any).relevanceScore || 0;
return scoreB - scoreA;
});
case 'latency-asc':
// Sort by latency (lowest first)
return sorted.sort((a, b) => {
const latencyA = a.latency || 99999;
const latencyB = b.latency || 99999;
return latencyA - latencyB;
});
case 'date-desc':
// Sort by year (newest first)
return sorted.sort((a, b) => {
const yearA = parseInt(a.vod_year || '0');
const yearB = parseInt(b.vod_year || '0');
return yearB - yearA;
});
case 'date-asc':
// Sort by year (oldest first)
return sorted.sort((a, b) => {
const yearA = parseInt(a.vod_year || '0');
const yearB = parseInt(b.vod_year || '0');
return yearA - yearB;
});
case 'rating-desc':
// Sort by rating if available (placeholder for future implementation)
return sorted.sort((a, b) => {
const ratingA = (a as any).vod_score || 0;
const ratingB = (b as any).vod_score || 0;
return ratingB - ratingA;
});
case 'name-asc':
// Sort by name A-Z
return sorted.sort((a, b) => {
return a.vod_name.localeCompare(b.vod_name, 'zh-CN');
});
case 'name-desc':
// Sort by name Z-A
return sorted.sort((a, b) => {
return b.vod_name.localeCompare(a.vod_name, 'zh-CN');
});
case 'default':
default:
// Default: by relevance then latency
return sorted.sort((a, b) => {
const scoreA = (a as any).relevanceScore || 0;
const scoreB = (b as any).relevanceScore || 0;
if (scoreA !== scoreB) {
return scoreB - scoreA;
}
const latencyA = a.latency || 99999;
const latencyB = b.latency || 99999;
return latencyA - latencyB;
});
}
}