mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
/**
|
|
* 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;
|
|
});
|
|
}
|
|
}
|