Spaces:
Sleeping
Sleeping
File size: 4,134 Bytes
0cfd364 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | export function formatTimestamp(timestamp: string): string {
const date = new Date(timestamp);
return date.toLocaleTimeString('en-US', {
hour: '2-digit',
minute: '2-digit',
second: '2-digit',
});
}
export function formatDate(timestamp: string): string {
const date = new Date(timestamp);
return date.toLocaleDateString('en-US', {
month: 'short',
day: 'numeric',
year: 'numeric',
});
}
export function formatDuration(ms: number): string {
const seconds = Math.floor(ms / 1000);
const minutes = Math.floor(seconds / 60);
const hours = Math.floor(minutes / 60);
if (hours > 0) {
return `${hours}h ${minutes % 60}m`;
}
if (minutes > 0) {
return `${minutes}m ${seconds % 60}s`;
}
return `${seconds}s`;
}
export function formatNumber(num: number, decimals = 2): string {
if (Math.abs(num) >= 1e6) {
return `${(num / 1e6).toFixed(decimals)}M`;
}
if (Math.abs(num) >= 1e3) {
return `${(num / 1e3).toFixed(decimals)}K`;
}
return num.toFixed(decimals);
}
export function formatReward(reward: number): string {
const sign = reward >= 0 ? '+' : '';
return `${sign}${reward.toFixed(3)}`;
}
export function truncateText(text: string, maxLength: number): string {
if (text.length <= maxLength) return text;
return `${text.slice(0, maxLength - 3)}...`;
}
export function classNames(...classes: (string | boolean | undefined | null)[]): string {
return classes.filter(Boolean).join(' ');
}
export function getStatusColor(status: string): string {
const colors: Record<string, string> = {
idle: 'yellow',
thinking: 'blue',
acting: 'green',
waiting: 'orange',
error: 'red',
running: 'green',
completed: 'green',
failed: 'red',
pending: 'gray',
timeout: 'orange',
};
return colors[status] ?? 'gray';
}
export function getRoleIcon(role: string): string {
const icons: Record<string, string> = {
navigator: 'π§',
extractor: 'π',
validator: 'β
',
coordinator: 'π―',
};
return icons[role] ?? 'π€';
}
export function getActionIcon(actionType: string): string {
const icons: Record<string, string> = {
navigate: 'π',
click: 'π',
extract: 'π€',
scroll: 'π',
input: 'β¨οΈ',
wait: 'β³',
screenshot: 'πΈ',
execute_tool: 'π§',
delegate: 'π₯',
terminate: 'π',
};
return icons[actionType] ?? 'β‘';
}
export function debounce<T extends (...args: unknown[]) => unknown>(
func: T,
wait: number
): (...args: Parameters<T>) => void {
let timeout: ReturnType<typeof setTimeout> | null = null;
return (...args: Parameters<T>) => {
if (timeout) clearTimeout(timeout);
timeout = setTimeout(() => func(...args), wait);
};
}
export function throttle<T extends (...args: unknown[]) => unknown>(
func: T,
limit: number
): (...args: Parameters<T>) => void {
let inThrottle = false;
return (...args: Parameters<T>) => {
if (!inThrottle) {
func(...args);
inThrottle = true;
setTimeout(() => (inThrottle = false), limit);
}
};
}
export function generateId(): string {
return `${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 9)}`;
}
export function parseJSON<T>(json: string, fallback: T): T {
try {
return JSON.parse(json) as T;
} catch {
return fallback;
}
}
export function calculateProgress(current: number, total: number): number {
if (total === 0) return 0;
return Math.min(Math.round((current / total) * 100), 100);
}
export function groupBy<T>(array: T[], key: keyof T): Record<string, T[]> {
return array.reduce((groups, item) => {
const groupKey = String(item[key]);
return {
...groups,
[groupKey]: [...(groups[groupKey] || []), item],
};
}, {} as Record<string, T[]>);
}
export function sortByTimestamp<T extends { timestamp: string }>(
items: T[],
order: 'asc' | 'desc' = 'desc'
): T[] {
return [...items].sort((a, b) => {
const timeA = new Date(a.timestamp).getTime();
const timeB = new Date(b.timestamp).getTime();
return order === 'asc' ? timeA - timeB : timeB - timeA;
});
}
|