Kunden: - Neues Feld customers.archived; Archivieren/Wiederherstellen-Button in der Kundendetailseite, 'Archiviert'-Badge - CustomersPage: vierter Filter-Tab 'Archiviert'; archivierte Kunden aus Alle/Leads/Feste Kunden ausgeblendet, nur im Archiv-Tab sichtbar Tickets: - Status-Mehrfachauswahl per Checkbox im Filterbereich; Default alle Status ausser 'Closed' (= archiviert). 'Standard' / 'Alle inkl. Archiv' Shortcuts - useWorkorders: Statusfilter serverseitig via Query.equal(array) statt Client-Filter nach dem Limit (behebt Bug, bei dem archivierte Tickets die neuesten Slots belegten und aktive verdraengten) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
344 lines
15 KiB
JavaScript
344 lines
15 KiB
JavaScript
import { useState, useEffect, useCallback } from 'react'
|
||
import { useParams, Link } from 'react-router-dom'
|
||
import { FaSpinner, FaStar, FaArrowLeft, FaFloppyDisk, FaArrowUp, FaKey, FaArrowUpRightFromSquare, FaBoxArchive, FaBoxOpen } from 'react-icons/fa6'
|
||
import { databases, DATABASE_ID, COLLECTIONS, Query } from '../lib/appwrite'
|
||
import { PageHeader, Card, Button, Badge, Tabs, EmptyState, Field } from '../components/ui'
|
||
import { StatusPill, PriorityPill } from '../components/ui/StatusPill'
|
||
import InvoicePanel from '../components/InvoicePanel'
|
||
import DocumentsPanel from '../components/DocumentsPanel'
|
||
import AssignedProjectCard from '../components/AssignedProjectCard'
|
||
import CopyableCredential, { getCustomerPortalPassword } from '../components/CopyableCredential'
|
||
import { updateCustomerWithPortalAccess } from '../lib/customerAdminApi'
|
||
import { useWebsiteProjects } from '../hooks/useWebsiteProjects'
|
||
import { customerStage, isArchived, isInvoiceReady, setCustomerArchived, upgradeToCustomer, syncCustomerToNinja } from '../lib/leads'
|
||
|
||
const PORTAL_URL = 'https://project.webklar.com'
|
||
|
||
const TABS = [
|
||
{ id: 'overview', label: 'Uebersicht' },
|
||
{ id: 'tickets', label: 'Tickets' },
|
||
{ id: 'invoices', label: 'Rechnungen' },
|
||
{ id: 'documents', label: 'Dokumente' },
|
||
{ id: 'projects', label: 'Projekte' },
|
||
]
|
||
|
||
export default function CustomerDetailPage() {
|
||
const { id } = useParams()
|
||
const [customer, setCustomer] = useState(null)
|
||
const [loading, setLoading] = useState(true)
|
||
const [error, setError] = useState(null)
|
||
const [tab, setTab] = useState('overview')
|
||
|
||
const load = useCallback(async () => {
|
||
setLoading(true)
|
||
try {
|
||
setCustomer(await databases.getDocument(DATABASE_ID, COLLECTIONS.CUSTOMERS, id))
|
||
setError(null)
|
||
} catch (err) {
|
||
setError(err.message)
|
||
} finally {
|
||
setLoading(false)
|
||
}
|
||
}, [id])
|
||
|
||
useEffect(() => { load() }, [load])
|
||
|
||
if (loading) return <div className="page"><div className="empty"><FaSpinner className="spinner" /></div></div>
|
||
if (error || !customer) return <div className="page"><EmptyState title="Kunde nicht gefunden" hint={error} action={<Button as={Link} to="/customers"><FaArrowLeft /> Zurueck</Button>} /></div>
|
||
|
||
const stage = customerStage(customer)
|
||
const archived = isArchived(customer)
|
||
const syntheticTicket = { customerId: customer.$id, customerName: customer.name, woid: '' }
|
||
|
||
const toggleArchived = async () => {
|
||
await setCustomerArchived(customer, !archived)
|
||
await load()
|
||
}
|
||
|
||
return (
|
||
<div className="page">
|
||
<PageHeader
|
||
title={
|
||
<span style={{ display: 'inline-flex', alignItems: 'center', gap: 10 }}>
|
||
{customer.importantCustomer && <FaStar style={{ color: 'var(--warn)' }} />}
|
||
{customer.name}
|
||
{stage === 'lead' && <Badge tone="warn" dot>Lead</Badge>}
|
||
{stage === 'customer' && <Badge tone="ok" dot>Fester Kunde</Badge>}
|
||
{stage === 'lost' && <Badge tone="muted">Abgesagt</Badge>}
|
||
{archived && <Badge tone="muted"><FaBoxArchive /> Archiviert</Badge>}
|
||
</span>
|
||
}
|
||
subtitle={[customer.location, customer.email, customer.phone].filter(Boolean).join(' <20> ')}
|
||
actions={
|
||
<>
|
||
<Button variant="ghost" onClick={toggleArchived}>
|
||
{archived ? <><FaBoxOpen /> Wiederherstellen</> : <><FaBoxArchive /> Archivieren</>}
|
||
</Button>
|
||
<Button variant="ghost" as={Link} to="/customers"><FaArrowLeft /> Alle Kunden</Button>
|
||
</>
|
||
}
|
||
/>
|
||
|
||
<Tabs tabs={TABS} active={tab} onChange={setTab} />
|
||
|
||
{tab === 'overview' && <OverviewTab customer={customer} stage={stage} onSaved={load} />}
|
||
{tab === 'tickets' && <CustomerTickets customerId={customer.$id} />}
|
||
{tab === 'invoices' && (
|
||
stage === 'lead' ? (
|
||
<Card><EmptyState title="Noch ein Lead" hint="Erst zum festen Kunden machen (vollstaendige Daten noetig), dann sind Rechnungen moeglich." action={<Button variant="primary" onClick={() => setTab('overview')}>Daten erfassen</Button>} /></Card>
|
||
) : !isInvoiceReady(customer) ? (
|
||
<Card><EmptyState title="Daten unvollstaendig" hint="Fuer Rechnungen werden Unternehmen, E-Mail, Strasse, Stadt und PLZ benoetigt." action={<Button variant="primary" onClick={() => setTab('overview')}>Daten vervollstaendigen</Button>} /></Card>
|
||
) : (
|
||
<InvoicePanel ticket={syntheticTicket} />
|
||
)
|
||
)}
|
||
{tab === 'documents' && <DocumentsPanel ticket={syntheticTicket} initialScope="customer" />}
|
||
{tab === 'projects' && <CustomerProjects customerId={customer.$id} />}
|
||
</div>
|
||
)
|
||
}
|
||
|
||
function OverviewTab({ customer, stage, onSaved }) {
|
||
const [form, setForm] = useState({
|
||
name: customer.name || '',
|
||
companyName: customer.companyName || customer.name || '',
|
||
code: customer.code || '',
|
||
email: customer.email || '',
|
||
phone: customer.phone || '',
|
||
contactName: customer.contactName || '',
|
||
street: customer.street || '',
|
||
postalCode: customer.postalCode || '',
|
||
city: customer.city || '',
|
||
country: customer.country || 'Deutschland',
|
||
vatNumber: customer.vatNumber || '',
|
||
location: customer.location || '',
|
||
notes: customer.notes || '',
|
||
importantCustomer: !!customer.importantCustomer,
|
||
paperlessCorrespondent: customer.paperlessCorrespondent || '',
|
||
})
|
||
const [busy, setBusy] = useState(false)
|
||
const [msg, setMsg] = useState(null)
|
||
|
||
const ready = isInvoiceReady({ ...customer, ...form })
|
||
|
||
const save = async () => {
|
||
setBusy(true); setMsg(null)
|
||
try {
|
||
const updated = await databases.updateDocument(DATABASE_ID, COLLECTIONS.CUSTOMERS, customer.$id, form)
|
||
let note = 'Gespeichert'
|
||
// Wenn fester Kunde: Aenderungen nach InvoiceNinja syncen (sofern Daten reichen oder bereits verknuepft)
|
||
if (stage === 'customer' && (updated.invoiceNinjaClientId || isInvoiceReady(updated))) {
|
||
try { await syncCustomerToNinja(updated) } catch (e) { note = 'Gespeichert, InvoiceNinja-Sync fehlgeschlagen: ' + e.message }
|
||
}
|
||
setMsg(note)
|
||
onSaved()
|
||
} catch (err) {
|
||
setMsg('Fehler: ' + err.message)
|
||
} finally { setBusy(false) }
|
||
}
|
||
|
||
const upgrade = async () => {
|
||
if (!ready) { setMsg('Bitte zuerst alle Pflichtfelder (Unternehmen, E-Mail, Strasse, PLZ, Stadt) ausfuellen.'); return }
|
||
setBusy(true); setMsg(null)
|
||
const r = await upgradeToCustomer(customer, form)
|
||
if (r.clientId) setMsg('Zum festen Kunden gemacht und mit InvoiceNinja verknuepft.')
|
||
else setMsg('Status gesetzt, aber InvoiceNinja-Verknuepfung fehlgeschlagen: ' + (r.syncError || 'unbekannt'))
|
||
setBusy(false)
|
||
onSaved()
|
||
}
|
||
|
||
return (
|
||
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(300px, 1fr))', gap: 16 }}>
|
||
<Card title="Stammdaten">
|
||
<div className="flex gap-3 wrap">
|
||
<Field label="Unternehmen / Name"><input className="form-control" value={form.name} onChange={(e) => setForm({ ...form, name: e.target.value, companyName: e.target.value })} /></Field>
|
||
<Field label="Code"><input className="form-control" value={form.code} onChange={(e) => setForm({ ...form, code: e.target.value })} /></Field>
|
||
</div>
|
||
<div className="flex gap-3 wrap">
|
||
<Field label="E-Mail"><input className="form-control" type="email" value={form.email} onChange={(e) => setForm({ ...form, email: e.target.value })} /></Field>
|
||
<Field label="Telefon"><input className="form-control" value={form.phone} onChange={(e) => setForm({ ...form, phone: e.target.value })} /></Field>
|
||
</div>
|
||
<Field label="Ansprechpartner"><input className="form-control" value={form.contactName} onChange={(e) => setForm({ ...form, contactName: e.target.value })} /></Field>
|
||
<Field label="Notizen"><textarea className="form-control" rows={3} value={form.notes} onChange={(e) => setForm({ ...form, notes: e.target.value })} /></Field>
|
||
<label className="flex items-center gap-2" style={{ marginBottom: 12, cursor: 'pointer' }}>
|
||
<input type="checkbox" checked={form.importantCustomer} onChange={(e) => setForm({ ...form, importantCustomer: e.target.checked })} />
|
||
Wichtiger Kunde
|
||
</label>
|
||
<div className="flex gap-2 items-center wrap">
|
||
<Button variant="primary" onClick={save} disabled={busy}>{busy ? <FaSpinner className="spinner" /> : <><FaFloppyDisk /> Speichern</>}</Button>
|
||
{stage === 'lead' && <Button onClick={upgrade} disabled={busy}><FaArrowUp /> Zum festen Kunden machen</Button>}
|
||
{msg && <span className="muted">{msg}</span>}
|
||
</div>
|
||
</Card>
|
||
|
||
<Card title="Rechnungsdaten (fuer InvoiceNinja)">
|
||
{!ready && <div className="badge badge-warn" style={{ marginBottom: 12 }}>Unvollstaendig - fuer Rechnungen erforderlich</div>}
|
||
<Field label="Strasse + Nr."><input className="form-control" value={form.street} onChange={(e) => setForm({ ...form, street: e.target.value })} /></Field>
|
||
<div className="flex gap-3 wrap">
|
||
<Field label="PLZ"><input className="form-control" value={form.postalCode} onChange={(e) => setForm({ ...form, postalCode: e.target.value })} /></Field>
|
||
<Field label="Stadt"><input className="form-control" value={form.city} onChange={(e) => setForm({ ...form, city: e.target.value })} /></Field>
|
||
</div>
|
||
<div className="flex gap-3 wrap">
|
||
<Field label="Land"><input className="form-control" value={form.country} onChange={(e) => setForm({ ...form, country: e.target.value })} /></Field>
|
||
<Field label="USt-IdNr."><input className="form-control" value={form.vatNumber} onChange={(e) => setForm({ ...form, vatNumber: e.target.value })} /></Field>
|
||
</div>
|
||
<div className="flex items-center justify-between" style={{ marginTop: 8 }}>
|
||
<span className="muted">InvoiceNinja</span>
|
||
{customer.invoiceNinjaClientId ? <Badge tone="ok" dot>verknuepft</Badge> : <Badge tone="muted">nicht verknuepft</Badge>}
|
||
</div>
|
||
<Field label="Paperless-Korrespondent" hint="Leer = Kundenname wird verwendet">
|
||
<input className="form-control" value={form.paperlessCorrespondent} onChange={(e) => setForm({ ...form, paperlessCorrespondent: e.target.value })} placeholder={customer.name} />
|
||
</Field>
|
||
</Card>
|
||
|
||
<PortalAccessCard customer={customer} onSaved={onSaved} />
|
||
</div>
|
||
)
|
||
}
|
||
|
||
function PortalAccessCard({ customer, onSaved }) {
|
||
const [password, setPassword] = useState('')
|
||
const [busy, setBusy] = useState(false)
|
||
const [msg, setMsg] = useState(null)
|
||
|
||
const hasAccess = Boolean(customer.portalAccessEnabled && customer.appwriteUserId)
|
||
const currentPassword = getCustomerPortalPassword(customer)
|
||
|
||
const savePassword = async () => {
|
||
if (!customer.email) {
|
||
setMsg('Bitte zuerst eine E-Mail-Adresse in den Stammdaten speichern.')
|
||
return
|
||
}
|
||
if (!password || password.length < 8) {
|
||
setMsg('Das Passwort muss mindestens 8 Zeichen haben.')
|
||
return
|
||
}
|
||
setBusy(true); setMsg(null)
|
||
try {
|
||
await updateCustomerWithPortalAccess(customer.$id, { password })
|
||
setPassword('')
|
||
setMsg(hasAccess ? 'Passwort aktualisiert.' : 'Portal-Zugang angelegt.')
|
||
onSaved()
|
||
} catch (err) {
|
||
setMsg('Fehler: ' + err.message)
|
||
} finally {
|
||
setBusy(false)
|
||
}
|
||
}
|
||
|
||
return (
|
||
<Card title="Portal-Zugang">
|
||
<div className="flex items-center justify-between" style={{ marginBottom: 12 }}>
|
||
<span className="muted">Kundenportal</span>
|
||
{hasAccess
|
||
? <Badge tone="ok" dot>freigeschaltet</Badge>
|
||
: <Badge tone="muted">kein Zugang</Badge>}
|
||
</div>
|
||
|
||
<Field label="Login (E-Mail)">
|
||
<CopyableCredential value={customer.email} label="Login" />
|
||
</Field>
|
||
<Field label="Passwort">
|
||
<CopyableCredential value={currentPassword} secret label="Passwort" />
|
||
</Field>
|
||
|
||
<Field label={hasAccess ? 'Neues Passwort setzen' : 'Passwort festlegen (min. 8 Zeichen)'}>
|
||
<input
|
||
className="form-control"
|
||
type="text"
|
||
value={password}
|
||
onChange={(e) => setPassword(e.target.value)}
|
||
placeholder="min. 8 Zeichen"
|
||
autoComplete="off"
|
||
/>
|
||
</Field>
|
||
|
||
<div className="flex gap-2 items-center wrap">
|
||
<Button variant="primary" onClick={savePassword} disabled={busy}>
|
||
{busy ? <FaSpinner className="spinner" /> : <><FaKey /> {hasAccess ? 'Passwort ändern' : 'Zugang anlegen'}</>}
|
||
</Button>
|
||
<Button as="a" href={PORTAL_URL} target="_blank" rel="noreferrer" variant="ghost">
|
||
<FaArrowUpRightFromSquare /> Portal öffnen
|
||
</Button>
|
||
{msg && <span className="muted">{msg}</span>}
|
||
</div>
|
||
<p className="muted" style={{ marginTop: 8, fontSize: 13 }}>
|
||
Der Kunde meldet sich mit dieser E-Mail und dem Passwort unter {PORTAL_URL} an
|
||
und sieht dort seine Projekte/Previews.
|
||
</p>
|
||
</Card>
|
||
)
|
||
}
|
||
|
||
function CustomerTickets({ customerId }) {
|
||
const [tickets, setTickets] = useState([])
|
||
const [loading, setLoading] = useState(true)
|
||
|
||
useEffect(() => {
|
||
let active = true
|
||
;(async () => {
|
||
setLoading(true)
|
||
try {
|
||
const res = await databases.listDocuments(DATABASE_ID, COLLECTIONS.WORKORDERS, [
|
||
Query.equal('customerId', customerId),
|
||
Query.orderDesc('$createdAt'),
|
||
Query.limit(100),
|
||
])
|
||
if (active) setTickets(res.documents)
|
||
} catch {
|
||
if (active) setTickets([])
|
||
} finally {
|
||
if (active) setLoading(false)
|
||
}
|
||
})()
|
||
return () => { active = false }
|
||
}, [customerId])
|
||
|
||
if (loading) return <Card><FaSpinner className="spinner" /></Card>
|
||
if (tickets.length === 0) return <Card><EmptyState title="Keine Tickets" hint="Fuer diesen Kunden gibt es noch keine Tickets." /></Card>
|
||
|
||
return (
|
||
<Card pad={false}>
|
||
<div className="list">
|
||
{tickets.map((t) => (
|
||
<div key={t.$id} className="list-row">
|
||
<span className="mono" style={{ color: 'var(--accent)', minWidth: 60 }}>{t.woid || t.$id.slice(-5)}</span>
|
||
<div className="grow">
|
||
<div style={{ fontWeight: 600 }}>{t.topic || t.title || '-'}</div>
|
||
<div className="muted">{t.type} <EFBFBD> {t.systemType || 'n/a'}</div>
|
||
</div>
|
||
<PriorityPill priority={t.priority} />
|
||
<StatusPill status={t.status} />
|
||
</div>
|
||
))}
|
||
</div>
|
||
</Card>
|
||
)
|
||
}
|
||
|
||
function CustomerProjects({ customerId }) {
|
||
const { fetchAllProjects } = useWebsiteProjects()
|
||
const [projects, setProjects] = useState([])
|
||
const [loading, setLoading] = useState(true)
|
||
|
||
useEffect(() => {
|
||
let active = true
|
||
;(async () => {
|
||
setLoading(true)
|
||
const all = await fetchAllProjects()
|
||
if (active) setProjects((all || []).filter((p) => p.customerId === customerId))
|
||
if (active) setLoading(false)
|
||
})()
|
||
return () => { active = false }
|
||
}, [customerId, fetchAllProjects])
|
||
|
||
if (loading) return <Card><FaSpinner className="spinner" /></Card>
|
||
if (projects.length === 0) return <Card><EmptyState title="Keine Projekte" hint="Diesem Kunden sind keine Projekte/Previews zugeordnet." /></Card>
|
||
|
||
return (
|
||
<Card title={`Projekte (${projects.length})`}>
|
||
{projects.map((p) => <AssignedProjectCard key={p.$id} project={p} />)}
|
||
</Card>
|
||
)
|
||
}
|