filtering processes by status

This commit is contained in:
Abdenasser 2024-10-30 18:12:54 +01:00
parent 9c6658e13b
commit 519021e67e
2 changed files with 86 additions and 3 deletions

View File

@ -1,6 +1,11 @@
<script lang="ts">
import AppInfo from "./AppInfo.svelte";
import { statusMap } from "$lib/utils";
import Fa from "svelte-fa";
import { faFilter } from "@fortawesome/free-solid-svg-icons";
export let searchTerm: string;
export let statusFilter: string = "all";
export let itemsPerPage: number;
export let currentPage: number;
export let totalPages: number;
@ -15,6 +20,17 @@
const itemsPerPageOptions = [25, 50, 100, 250, 500];
let showColumnMenu = false;
const statusOptions = [
{ value: "all", label: "All Statuses" },
{ value: "R", label: "🏃 Running" },
{ value: "S", label: "😴 Sleeping" },
{ value: "I", label: "⌛ Idle" },
{ value: "Z", label: "🧟 Zombie" },
{ value: "T", label: "⛔ Stopped" },
{ value: "X", label: "💀 Dead" },
{ value: "Unknown", label: "🤔 Unknown" },
];
function changePage(page: number) {
if (page >= 1 && page <= totalPages) {
currentPage = page;
@ -43,6 +59,14 @@
{/if}
</div>
</div>
<div class="toolbar-group">
<span class="toolbar-label">Status:</span>
<select bind:value={statusFilter} class="select-input">
{#each statusOptions as option}
<option value={option.value}>{option.label}</option>
{/each}
</select>
</div>
<div class="toolbar-spacer"></div>
@ -340,4 +364,52 @@
opacity: 0.5;
cursor: not-allowed;
}
.filter-box {
display: flex;
align-items: center;
gap: 8px;
}
.status-select {
padding: 6px 12px;
font-size: 13px;
color: var(--text);
background: var(--surface0);
border: 1px solid var(--surface1);
border-radius: 6px;
cursor: pointer;
}
.status-select:hover {
background: var(--surface1);
}
select.btn-base {
appearance: none;
padding: 6px 28px 6px 12px;
font-size: 12px;
color: var(--text);
background: var(--surface0)
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
no-repeat right 8px center;
border: 1px solid var(--surface1);
border-radius: 6px;
cursor: pointer;
transition: all 0.2s ease;
}
select.btn-base:hover {
background-color: var(--surface1);
}
select.btn-base:focus {
outline: none;
border-color: var(--blue);
}
/* Ensure proper spacing between toolbar items */
.filter-box {
margin-left: 8px;
}
</style>

View File

@ -24,6 +24,7 @@
let showConfirmModal = false;
let processToKill: Process | null = null;
let isKilling = false;
let statusFilter = "all";
let columns: Column[] = [
{ id: "name", label: "Process Name", visible: true, required: true },
@ -57,9 +58,18 @@
direction: "desc" as "asc" | "desc",
};
$: filteredProcesses = processes.filter((process) =>
process.name.toLowerCase().includes(searchTerm.toLowerCase()),
);
$: filteredProcesses = processes.filter((process) => {
const matchesSearch = searchTerm
? process.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
process.command.toLowerCase().includes(searchTerm.toLowerCase()) ||
process.pid.toString().includes(searchTerm)
: true;
const matchesStatus =
statusFilter === "all" ? true : process.status === statusFilter;
return matchesSearch && matchesStatus;
});
$: sortedProcesses = filteredProcesses.sort((a, b) => {
const aPin = pinnedProcesses.has(a.pid);
@ -206,6 +216,7 @@
<ToolBar
bind:searchTerm
bind:statusFilter
bind:itemsPerPage
bind:currentPage
{totalPages}