Suche im zentralen Logbuch hinzufügen

This commit is contained in:
2026-05-08 20:20:44 +02:00
parent d7eced3e77
commit 4f37811dcc
2 changed files with 53 additions and 5 deletions

View File

@@ -14,6 +14,11 @@ const props = defineProps({
renderHeadline: {
type: Boolean,
default: false
},
search: {
type: String,
required: false,
default: ""
}
})
@@ -72,6 +77,21 @@ const renderText = (text) => {
return text
}
const filteredItems = computed(() => {
const search = props.search.trim().toLowerCase()
if (!search) return items.value
return items.value.filter((item) => {
return [
item.text,
item.created_by_profile?.full_name,
item.created_by ? "" : "FEDEO Bot",
dayjs(item.created_at).format("DD.MM.YY HH:mm")
].some((value) => String(value || "").toLowerCase().includes(search))
})
})
</script>
<template>
@@ -135,8 +155,8 @@ const renderText = (text) => {
<!-- ITEM LIST -->
<div style="height: 90%; overflow-y: scroll">
<div
v-if="items.length > 0"
v-for="(item,index) in items.slice().reverse()"
v-if="filteredItems.length > 0"
v-for="(item,index) in filteredItems.slice().reverse()"
>
<USeparator
class="my-3"
@@ -159,6 +179,14 @@ const renderText = (text) => {
</div>
</div>
</div>
<UAlert
v-else
color="neutral"
variant="soft"
icon="i-heroicons-magnifying-glass"
title="Keine Logbucheinträge gefunden."
description="Passe die Suche an, um weitere Einträge zu sehen."
/>
</div>