File size: 2,768 Bytes
246d201 |
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 |
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
interface EventActionHistory {
args?: {
LLM_API_KEY?: string;
[key: string]: unknown;
};
extras?: {
open_page_urls: string[];
active_page_index: number;
dom_object: Record<string, unknown>;
axtree_object: Record<string, unknown>;
extra_element_properties: Record<string, unknown>;
last_browser_action: string;
last_browser_action_error: unknown;
focused_element_bid: string;
};
[key: string]: unknown;
}
export const removeUnwantedKeys = (
data: EventActionHistory[],
): EventActionHistory[] => {
const UNDESIRED_KEYS = [
"open_page_urls",
"active_page_index",
"dom_object",
"axtree_object",
"extra_element_properties",
"last_browser_action",
"last_browser_action_error",
"focused_element_bid",
];
return data
.filter((item) => {
// Skip items that have a status key
if ("status" in item) {
return false;
}
return true;
})
.map((item) => {
// Create a shallow copy of item
const newItem = { ...item };
// Check if extras exists and delete it from a new extras object
if (newItem.extras) {
const newExtras = { ...newItem.extras };
UNDESIRED_KEYS.forEach((key) => {
delete newExtras[key as keyof typeof newExtras];
});
newItem.extras = newExtras;
}
return newItem;
});
};
export const removeApiKey = (
data: EventActionHistory[],
): EventActionHistory[] =>
data.map((item) => {
// Create a shallow copy of item
const newItem = { ...item };
// Check if LLM_API_KEY exists and delete it from a new args object
if (newItem.args?.LLM_API_KEY) {
const newArgs = { ...newItem.args };
delete newArgs.LLM_API_KEY;
newItem.args = newArgs;
}
return newItem;
});
export const getExtension = (code: string) => {
if (code.includes(".")) return code.split(".").pop() || "";
return "";
};
/**
* Format a timestamp to a human-readable format
* @param timestamp The timestamp to format (ISO 8601)
* @returns The formatted timestamp
*
* @example
* formatTimestamp("2021-10-10T10:10:10.000") // "10/10/2021, 10:10:10"
* formatTimestamp("2021-10-10T22:10:10.000") // "10/10/2021, 22:10:10"
*/
export const formatTimestamp = (timestamp: string) =>
new Date(timestamp).toLocaleString("en-GB", {
day: "2-digit",
month: "2-digit",
year: "numeric",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
});
|