chore: improve data display

This commit is contained in:
Andre Henriques 2025-04-01 21:26:14 +01:00
parent 141cfbf7a6
commit 1884262268
3 changed files with 40 additions and 29 deletions

View File

@ -15,28 +15,33 @@
return i.status_id === status_id; return i.status_id === status_id;
}) })
); );
let internal = $derived(
sorted.filter((i) => {
if (!filter) {
return true;
}
const f = new RegExp(filter, 'ig');
let x = i.title;
if (i.company) {
x = `${x} @ ${i.company}`;
}
return x.match(f);
})
);
</script> </script>
{#if sorted.length > 0} {#if sorted.length > 0}
<div class="card p-3 rounded-lg"> <div class="card p-3 rounded-lg">
<h1 class="flex gap-2"> <h1 class="flex gap-2">
{title} <input bind:value={filter} placeholder="search" class="flex-grow text-blue-500" /> {title} ({internal.length})
<input bind:value={filter} placeholder="search" class="flex-grow text-blue-500" />
</h1> </h1>
<div class="flex flex-wrap gap-4"> <div class="flex flex-wrap gap-4">
{#each sorted.filter((i) => { {#each internal as item}
if (!filter) {
return true;
}
const f = new RegExp(filter, 'ig');
let x = i.title;
if (i.company) {
x = `${x} @ ${i.company}`;
}
return x.match(f);
}) as item}
<button <button
class="card p-2 my-2 bg-slate-100 text-left" class="card p-2 my-2 bg-slate-100 text-left"
onclick={async () => { onclick={async () => {

View File

@ -125,14 +125,18 @@
data={[...statusStore.nodes, 'Created' as const].reduce( data={[...statusStore.nodes, 'Created' as const].reduce(
(acc, item) => { (acc, item) => {
if (item === 'Created') { if (item === 'Created') {
acc[item] = applicationStore.all.filter( const count = applicationStore.all.filter(
(a) => a.status_id === null (a) => a.status_id === null
).length; ).length;
if (count === 0) return acc;
acc[item] = count;
return acc; return acc;
} }
acc[item.name] = applicationStore.all.filter( const count = applicationStore.all.filter(
(a) => item.id === a.status_id (a) => item.id === a.status_id
).length; ).length;
if (count === 0) return acc;
acc[item.name] = count;
return acc; return acc;
}, },
{} as Record<string, number> {} as Record<string, number>

View File

@ -35,20 +35,22 @@
const other = dataf.filter((v) => v.value / sum < sensitivity); const other = dataf.filter((v) => v.value / sum < sensitivity);
dataf = dataf.filter((f) => f.value / sum > sensitivity); if (other.length > 1) {
dataf = dataf.filter((f) => f.value / sum > sensitivity);
const otherSum = other.reduce((acc, v) => { const otherSum = other.reduce((acc, v) => {
return acc + v.value; return acc + v.value;
}, 0); }, 0);
if (otherSum > 0) { if (otherSum > 0) {
dataf.push({ dataf.push({
value: otherSum, value: otherSum,
name: 'Other', name: 'Other',
title: `Other: ${otherSum}\n${other title: `Other: ${otherSum}\n${other
.toSorted((a, b) => b.value - a.value) .toSorted((a, b) => b.value - a.value)
.reduce((acc, a) => `${acc}${a.name}: ${a.value}\n`, '')}` .reduce((acc, a) => `${acc}${a.name}: ${a.value}\n`, '')}`
}); });
}
} }
dataf = dataf.toSorted((a, b) => a.value - b.value); dataf = dataf.toSorted((a, b) => a.value - b.value);