mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-04 09:46:43 +00:00
improve sorting and filtering
This commit is contained in:
parent
c909ec9ee4
commit
821f67105b
@ -47,61 +47,107 @@ export function formatDate(timestamp: number) {
|
|||||||
return new Date(timestamp * 1000).toLocaleString();
|
return new Date(timestamp * 1000).toLocaleString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Cache for compiled regex patterns
|
||||||
|
const regexCache = new Map<string, RegExp>();
|
||||||
|
|
||||||
export function filterProcesses(
|
export function filterProcesses(
|
||||||
processes: Process[],
|
processes: Process[],
|
||||||
searchTerm: string,
|
searchTerm: string,
|
||||||
statusFilter: string,
|
statusFilter: string,
|
||||||
): Process[] {
|
): Process[] {
|
||||||
|
// Early return for empty search and "all" status
|
||||||
|
if (searchTerm.length === 0 && statusFilter === "all") {
|
||||||
|
return processes;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pre-process search terms once
|
||||||
|
const terms =
|
||||||
|
searchTerm.length > 0
|
||||||
|
? searchTerm.split(",").map((term) => term.trim())
|
||||||
|
: [];
|
||||||
|
|
||||||
return processes.filter((process) => {
|
return processes.filter((process) => {
|
||||||
let matchesSearch = searchTerm.length === 0;
|
// Early status check
|
||||||
searchTerm
|
if (
|
||||||
.split(",")
|
statusFilter !== "all" &&
|
||||||
.map((term) => term.trim())
|
process.status.toLowerCase() !== statusFilter
|
||||||
.forEach((term) => {
|
) {
|
||||||
const nameSubstringMatch = process.name
|
return false;
|
||||||
.toLowerCase()
|
}
|
||||||
.includes(term.toLowerCase());
|
|
||||||
const nameRegexMatch = (() => {
|
|
||||||
try {
|
|
||||||
return new RegExp(term, "i").test(process.name);
|
|
||||||
} catch {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
const commandMatch = process.command
|
|
||||||
.toLowerCase()
|
|
||||||
.includes(term.toLowerCase());
|
|
||||||
const pidMatch = process.pid.toString().includes(term);
|
|
||||||
matchesSearch ||=
|
|
||||||
nameSubstringMatch || nameRegexMatch || commandMatch || pidMatch;
|
|
||||||
});
|
|
||||||
|
|
||||||
const matchesStatus =
|
// Skip search if no terms
|
||||||
statusFilter === "all"
|
if (terms.length === 0) {
|
||||||
? true
|
return true;
|
||||||
: process.status.toLowerCase() === statusFilter;
|
}
|
||||||
|
|
||||||
return matchesSearch && matchesStatus;
|
// Cache lowercase values
|
||||||
|
const processNameLower = process.name.toLowerCase();
|
||||||
|
const processCommandLower = process.command.toLowerCase();
|
||||||
|
const processPidString = process.pid.toString();
|
||||||
|
|
||||||
|
// Check each term
|
||||||
|
return terms.some((term) => {
|
||||||
|
const termLower = term.toLowerCase();
|
||||||
|
|
||||||
|
// Try exact matches first (faster)
|
||||||
|
if (
|
||||||
|
processNameLower.includes(termLower) ||
|
||||||
|
processCommandLower.includes(termLower) ||
|
||||||
|
processPidString.includes(term)
|
||||||
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try regex match last (slower)
|
||||||
|
try {
|
||||||
|
let regex = regexCache.get(term);
|
||||||
|
if (!regex) {
|
||||||
|
regex = new RegExp(term, "i");
|
||||||
|
regexCache.set(term, regex);
|
||||||
|
}
|
||||||
|
return regex.test(process.name);
|
||||||
|
} catch {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create a Map for quick pinned status lookup
|
||||||
|
const isPinned = new Map<string, boolean>();
|
||||||
|
|
||||||
export function sortProcesses(
|
export function sortProcesses(
|
||||||
processes: Process[],
|
processes: Process[],
|
||||||
sortConfig: SortConfig,
|
sortConfig: SortConfig,
|
||||||
pinnedProcesses: Set<string>,
|
pinnedProcesses: Set<string>,
|
||||||
): Process[] {
|
): Process[] {
|
||||||
return [...processes].sort((a, b) => {
|
return [...processes].sort((a, b) => {
|
||||||
const aPin = pinnedProcesses.has(a.command);
|
// Cache pinned status
|
||||||
const bPin = pinnedProcesses.has(b.command);
|
let aPin = isPinned.get(a.command);
|
||||||
if (aPin && !bPin) return -1;
|
if (aPin === undefined) {
|
||||||
if (!aPin && bPin) return 1;
|
aPin = pinnedProcesses.has(a.command);
|
||||||
|
isPinned.set(a.command, aPin);
|
||||||
|
}
|
||||||
|
|
||||||
|
let bPin = isPinned.get(b.command);
|
||||||
|
if (bPin === undefined) {
|
||||||
|
bPin = pinnedProcesses.has(b.command);
|
||||||
|
isPinned.set(b.command, bPin);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Quick pin comparison
|
||||||
|
if (aPin !== bPin) {
|
||||||
|
return aPin ? -1 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only compute direction once
|
||||||
|
const direction = sortConfig.direction === "asc" ? 1 : -1;
|
||||||
const aValue = a[sortConfig.field];
|
const aValue = a[sortConfig.field];
|
||||||
const bValue = b[sortConfig.field];
|
const bValue = b[sortConfig.field];
|
||||||
const direction = sortConfig.direction === "asc" ? 1 : -1;
|
|
||||||
|
|
||||||
if (typeof aValue === "string" && typeof bValue === "string") {
|
// Type-specific comparisons
|
||||||
return direction * aValue.localeCompare(bValue);
|
if (typeof aValue === "string") {
|
||||||
|
return direction * aValue.localeCompare(bValue as string);
|
||||||
}
|
}
|
||||||
return direction * (Number(aValue) - Number(bValue));
|
return direction * (Number(aValue) - Number(bValue));
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user