From bbe778e1204a686d414ce28774325a3cebedce96 Mon Sep 17 00:00:00 2001 From: Abdenasser Date: Wed, 13 Nov 2024 13:56:49 +0100 Subject: [PATCH] TableHeader component --- .../components/process/ProcessTable.svelte | 71 +---------------- src/lib/components/process/TableHeader.svelte | 79 +++++++++++++++++++ 2 files changed, 81 insertions(+), 69 deletions(-) diff --git a/src/lib/components/process/ProcessTable.svelte b/src/lib/components/process/ProcessTable.svelte index b658ed9..0c6f576 100644 --- a/src/lib/components/process/ProcessTable.svelte +++ b/src/lib/components/process/ProcessTable.svelte @@ -7,6 +7,7 @@ import Fa from "svelte-fa"; import type { Process, Column } from "$lib/types"; import ProcessIcon from "./ProcessIcon.svelte"; + import TableHeader from "./TableHeader.svelte"; export let processes: Process[]; export let columns: Column[]; @@ -18,33 +19,11 @@ export let onTogglePin: (command: string) => void; export let onShowDetails: (process: Process) => void; export let onKillProcess: (process: Process) => void; - - function getSortIndicator(field: keyof Process) { - if (sortConfig.field !== field) return "↕"; - return sortConfig.direction === "asc" ? "↑" : "↓"; - }
- - - {#each columns.filter((col) => col.visible) as column} - - {/each} - - - + {#each processes as process (process.pid)} + import type { Process, Column } from "$lib/types"; + + export let columns: Column[]; + export let sortConfig: { field: keyof Process; direction: "asc" | "desc" }; + export let onToggleSort: (field: keyof Process) => void; + + function getSortIndicator(field: keyof Process) { + if (sortConfig.field !== field) return "↕"; + return sortConfig.direction === "asc" ? "↑" : "↓"; + } + + + + + {#each columns.filter((col) => col.visible) as column} + + {/each} + + + + +
onToggleSort(column.id)}> -
- {column.label} - - {getSortIndicator(column.id)} - -
-
Actions
onToggleSort(column.id)}> +
+ {column.label} + + {getSortIndicator(column.id)} + +
+
Actions