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;
})
);
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>
{#if sorted.length > 0}
<div class="card p-3 rounded-lg">
<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>
<div class="flex flex-wrap gap-4">
{#each 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);
}) as item}
{#each internal as item}
<button
class="card p-2 my-2 bg-slate-100 text-left"
onclick={async () => {

View File

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

View File

@ -35,20 +35,22 @@
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) => {
return acc + v.value;
}, 0);
const otherSum = other.reduce((acc, v) => {
return acc + v.value;
}, 0);
if (otherSum > 0) {
dataf.push({
value: otherSum,
name: 'Other',
title: `Other: ${otherSum}\n${other
.toSorted((a, b) => b.value - a.value)
.reduce((acc, a) => `${acc}${a.name}: ${a.value}\n`, '')}`
});
if (otherSum > 0) {
dataf.push({
value: otherSum,
name: 'Other',
title: `Other: ${otherSum}\n${other
.toSorted((a, b) => b.value - a.value)
.reduce((acc, a) => `${acc}${a.name}: ${a.value}\n`, '')}`
});
}
}
dataf = dataf.toSorted((a, b) => a.value - b.value);