147 lines
2.8 KiB
Vue
147 lines
2.8 KiB
Vue
<template>
|
|
<Toolbar>
|
|
<UButton @click="router.push(`/contacts/create/`)">+ Kontakt</UButton>
|
|
|
|
<UInput
|
|
v-model="searchString"
|
|
placeholder="Suche..."
|
|
/>
|
|
|
|
<USelectMenu
|
|
v-model="selectedColumns"
|
|
multiple
|
|
:options="columnTemplate"
|
|
:uiMenu="{width:'w-40'}"
|
|
:popper="{placement: 'bottom-start'}"
|
|
by="key"
|
|
>
|
|
<UButton
|
|
color="gray"
|
|
variant="ghost"
|
|
class="flex-1 justify-between"
|
|
icon="i-heroicons-view-columns"
|
|
/>
|
|
|
|
<template #option="{ option }">
|
|
{{option.label}}
|
|
</template>
|
|
</USelectMenu>
|
|
</Toolbar>
|
|
|
|
|
|
<div class="table">
|
|
<UTable
|
|
:rows="filteredRows"
|
|
:columns="selectedColumns"
|
|
@select="selectItem"
|
|
:empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Noch keine Einträge' }"
|
|
>
|
|
<template #active-data="{row}">
|
|
<span v-if="row.active" class="text-primary-500">Aktiv</span>
|
|
<span v-else class="text-rose">Gesperrt</span>
|
|
</template>
|
|
<template #customer-data="{row}">
|
|
{{dataStore.customers.find(customer => customer.id === row.customer) ? dataStore.customers.find(customer => customer.id === row.customer).name : ''}}
|
|
</template>
|
|
<template #vendor-data="{row}">
|
|
{{dataStore.vendors.find(vendor => vendor.id === row.vendor) ? dataStore.vendors.find(vendor => vendor.id === row.vendor).name : ''}}
|
|
</template>
|
|
</UTable>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
definePageMeta({
|
|
middleware: "auth"
|
|
})
|
|
|
|
const dataStore = useDataStore()
|
|
const router = useRouter()
|
|
const mode = ref("show")
|
|
|
|
const columnTemplate = ref([
|
|
|
|
{
|
|
key: "fullName",
|
|
label: "Name",
|
|
sortable: true
|
|
},
|
|
{
|
|
key: "customer",
|
|
label: "Kunde",
|
|
sortable: true
|
|
},
|
|
{
|
|
key: "vendor",
|
|
label: "Lieferant",
|
|
sortable: true
|
|
},
|
|
{
|
|
key: "role",
|
|
label: "Rolle",
|
|
},
|
|
{
|
|
key: "email",
|
|
label: "E-Mail",
|
|
},
|
|
{
|
|
key: "phoneMobile",
|
|
label: "Mobil",
|
|
},
|
|
{
|
|
key: "phoneHome",
|
|
label: "Festnetz",
|
|
},
|
|
{
|
|
key: "active",
|
|
label: "Aktiv",
|
|
},
|
|
{
|
|
key: "birtday",
|
|
label: "Geburtstag",
|
|
}
|
|
])
|
|
const selectedColumns = ref([
|
|
{
|
|
key: "fullName",
|
|
label: "Name",
|
|
sortable: true
|
|
},
|
|
{
|
|
key: "customer",
|
|
label: "Kunde",
|
|
sortable: true
|
|
},
|
|
{
|
|
key: "vendor",
|
|
label: "Lieferant",
|
|
sortable: true
|
|
},
|
|
])
|
|
|
|
|
|
const selectItem = (item) => {
|
|
router.push(`/contacts/show/${item.id} `)
|
|
}
|
|
|
|
|
|
const searchString = ref('')
|
|
|
|
const filteredRows = computed(() => {
|
|
if(!searchString.value) {
|
|
return dataStore.contacts
|
|
}
|
|
|
|
return dataStore.contacts.filter(item => {
|
|
return Object.values(item).some((value) => {
|
|
return String(value).toLowerCase().includes(searchString.value.toLowerCase())
|
|
})
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |