b6e3afd28b
M5: TagBadge integrated into ContactDetail (replaces plain Badge) M5: EntityHistoryPanel integrated into ContactDetail (timeline section) L1: Replace document.write() with Blob URL in print.ts (XSS-safe) L2: AI UI Control feedback storage capped at 100 entries (FIFO eviction) L3: Backup & Restore documentation added to DEPLOY.md Verified: Backend import OK, TypeScript 0 errors
491 lines
20 KiB
TypeScript
491 lines
20 KiB
TypeScript
import React, { useState, useEffect, useMemo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Button } from '@/components/ui/Button';
|
|
import { Badge } from '@/components/ui/Badge';
|
|
import { EmptyState } from '@/components/ui/EmptyState';
|
|
import { Modal } from '@/components/ui/Modal';
|
|
import { Input } from '@/components/ui/Input';
|
|
import { useToast } from '@/components/ui/Toast';
|
|
|
|
import { Loader2 } from 'lucide-react';
|
|
import * as LucideIcons from 'lucide-react';
|
|
import { HistoryViewer } from '@/components/HistoryViewer';
|
|
import { usePluginStore } from '@/store/pluginStore';
|
|
import { useAIUIControlStore } from '@/store/aiUIControlStore';
|
|
import { PluginPage } from '@/components/plugins/PluginLoader';
|
|
import { useAuthStore } from '@/store/authStore';
|
|
import { CustomFieldRenderer } from '@/components/contacts/CustomFieldRenderer';
|
|
import { TagBadge } from '@/components/tags/TagBadge';
|
|
import { EntityHistoryPanel } from '@/components/common/EntityHistoryPanel';
|
|
import { useCustomFields } from '@/api/customFields';
|
|
import {
|
|
type UnifiedContact,
|
|
type ContactPerson,
|
|
useDeleteUnifiedContact,
|
|
useCreateContactPerson,
|
|
useUpdateContactPerson,
|
|
useDeleteContactPerson,
|
|
} from '@/api/hooks';
|
|
|
|
export interface ContactDetailProps {
|
|
contact: UnifiedContact | null;
|
|
loading?: boolean;
|
|
onEdit: () => void;
|
|
onDeleted: () => void;
|
|
}
|
|
|
|
function Field({ label, value }: { label: string; value?: string | null }) {
|
|
return (
|
|
<div>
|
|
<dt className="text-xs font-medium text-secondary-500">{label}</dt>
|
|
<dd className="text-sm text-secondary-900">{value || '—'}</dd>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function Section({ title, children, action }: { title: string; children: React.ReactNode; action?: React.ReactNode }) {
|
|
return (
|
|
<div className="border border-secondary-200 rounded-lg p-4 mb-3">
|
|
<div className="flex items-center justify-between mb-3">
|
|
<h3 className="text-sm font-semibold text-secondary-700">{title}</h3>
|
|
{action}
|
|
</div>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function AddressBlock({ prefix, contact, t }: { prefix: string; contact: UnifiedContact; t: (k: string) => string }) {
|
|
const street = (contact as any)[`${prefix}_street`] as string | undefined;
|
|
const number = (contact as any)[`${prefix}_number`] as string | undefined;
|
|
const postalcode = (contact as any)[`${prefix}_postalcode`] as string | undefined;
|
|
const city = (contact as any)[`${prefix}_city`] as string | undefined;
|
|
const state = (contact as any)[`${prefix}_state`] as string | undefined;
|
|
const country = (contact as any)[`${prefix}_country`] as string | undefined;
|
|
const district = (contact as any)[`${prefix}_district`] as string | undefined;
|
|
const extra = (contact as any)[`${prefix}_extra_address_line`] as string | undefined;
|
|
|
|
const hasData = street || city || postalcode;
|
|
if (!hasData) return null;
|
|
|
|
return (
|
|
<div className="text-sm text-secondary-900 space-y-0.5">
|
|
{extra && <div>{extra}</div>}
|
|
<div>{street} {number}</div>
|
|
{district && <div>{district}</div>}
|
|
<div>{postalcode} {city}</div>
|
|
{state && <div>{state}</div>}
|
|
{country && <div>{country}</div>}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ContactPersonModal({
|
|
open,
|
|
onClose,
|
|
onSave,
|
|
person,
|
|
}: {
|
|
open: boolean;
|
|
onClose: () => void;
|
|
onSave: (data: Partial<ContactPerson>) => void;
|
|
person?: ContactPerson | null;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const [firstname, setFirstname] = useState(person?.firstname || '');
|
|
const [lastname, setLastname] = useState(person?.lastname || '');
|
|
const [func, setFunc] = useState(person?.function || '');
|
|
const [email, setEmail] = useState(person?.email || '');
|
|
const [phone, setPhone] = useState(person?.phone || '');
|
|
const [mobilephone, setMobilephone] = useState(person?.mobilephone || '');
|
|
|
|
React.useEffect(() => {
|
|
if (open) {
|
|
setFirstname(person?.firstname || '');
|
|
setLastname(person?.lastname || '');
|
|
setFunc(person?.function || '');
|
|
setEmail(person?.email || '');
|
|
setPhone(person?.phone || '');
|
|
setMobilephone(person?.mobilephone || '');
|
|
}
|
|
}, [open, person]);
|
|
|
|
const handleSave = () => {
|
|
onSave({
|
|
firstname: firstname || null,
|
|
lastname: lastname || null,
|
|
function: func || null,
|
|
email: email || null,
|
|
phone: phone || null,
|
|
mobilephone: mobilephone || null,
|
|
displayname: [firstname, lastname].filter(Boolean).join(' ') || firstname || lastname || '',
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Modal open={open} onClose={onClose} title={person ? t('contacts.editPerson') : t('contacts.addPerson')} size="md">
|
|
<div className="space-y-3">
|
|
<div className="grid grid-cols-2 gap-3">
|
|
<Input label={t('contacts.firstName')} value={firstname} onChange={(e) => setFirstname(e.target.value)} />
|
|
<Input label={t('contacts.lastName')} value={lastname} onChange={(e) => setLastname(e.target.value)} />
|
|
</div>
|
|
<Input label={t('contacts.position')} value={func} onChange={(e) => setFunc(e.target.value)} />
|
|
<Input label={t('contacts.email')} type="email" value={email} onChange={(e) => setEmail(e.target.value)} />
|
|
<div className="grid grid-cols-2 gap-3">
|
|
<Input label={t('contacts.phone')} value={phone} onChange={(e) => setPhone(e.target.value)} />
|
|
<Input label={t('contacts.mobile')} value={mobilephone} onChange={(e) => setMobilephone(e.target.value)} />
|
|
</div>
|
|
<div className="flex justify-end gap-2 pt-2">
|
|
<Button variant="secondary" onClick={onClose}>{t('common.cancel')}</Button>
|
|
<Button onClick={handleSave} data-testid="person-save-btn">{t('common.save')}</Button>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
function getIcon(name: string): React.ReactNode {
|
|
const Icon = (LucideIcons as any)[name];
|
|
return Icon ? <Icon className="h-4 w-4" /> : <LucideIcons.FileText className="h-4 w-4" />;
|
|
}
|
|
|
|
export function ContactDetail({ contact, loading, onEdit, onDeleted }: ContactDetailProps) {
|
|
const { t } = useTranslation();
|
|
const toast = useToast();
|
|
const deleteMutation = useDeleteUnifiedContact();
|
|
const createPersonMutation = useCreateContactPerson();
|
|
const updatePersonMutation = useUpdateContactPerson();
|
|
const deletePersonMutation = useDeleteContactPerson();
|
|
const [personModalOpen, setPersonModalOpen] = useState(false);
|
|
const [editingPerson, setEditingPerson] = useState<ContactPerson | null>(null);
|
|
const [activeTab, setActiveTab] = useState('details');
|
|
const manifests = usePluginStore(s => s.manifests);
|
|
const pluginTabs = useMemo(
|
|
() => manifests
|
|
.flatMap((m) => m.detail_tabs)
|
|
.filter((t) => t.entity_type === 'contact')
|
|
.sort((a, b) => a.order - b.order),
|
|
[manifests]
|
|
);
|
|
const aiActiveTab = useAIUIControlStore(s => s.activeTab);
|
|
const aiActiveModal = useAIUIControlStore(s => s.activeModal);
|
|
|
|
// Sync tab from AI UI Control (Phase 4.8)
|
|
useEffect(() => {
|
|
if (aiActiveTab) {
|
|
setActiveTab(aiActiveTab);
|
|
}
|
|
}, [aiActiveTab]);
|
|
|
|
// Sync modal from AI UI Control (Phase 4.7)
|
|
useEffect(() => {
|
|
if (aiActiveModal === 'edit' || aiActiveModal === 'create') {
|
|
setEditingPerson(null);
|
|
setPersonModalOpen(true);
|
|
} else if (aiActiveModal === 'close') {
|
|
setPersonModalOpen(false);
|
|
}
|
|
}, [aiActiveModal]);
|
|
const user = useAuthStore(s => s.user);
|
|
|
|
// Custom fields from plugin definitions
|
|
const customFieldDefs = useMemo(
|
|
() => manifests
|
|
.flatMap((m) => m.custom_fields || [])
|
|
.filter((cf) => cf.entity === 'contact'),
|
|
[manifests]
|
|
);
|
|
const { data: customFieldsData } = useCustomFields(contact?.id);
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="flex items-center justify-center py-12" data-testid="contact-detail-loading">
|
|
<Loader2 className="animate-spin h-5 w-5 text-secondary-400" aria-hidden="true" />
|
|
<span className="ml-2 text-sm text-secondary-500">{t('common.loading')}</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!contact) {
|
|
return (
|
|
<div data-testid="contact-detail-empty">
|
|
<EmptyState title={t('contacts.selectContact')} description={t('contacts.selectContactDesc')} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const displayName = contact.displayname || contact.name || [contact.firstname, contact.surname].filter(Boolean).join(' ') || contact.id;
|
|
const persons = contact.contact_persons || [];
|
|
const tags = contact.tags ? contact.tags.split(',').map((t) => t.trim()).filter(Boolean) : [];
|
|
|
|
const handleDelete = async () => {
|
|
if (!window.confirm(t('contacts.deleteConfirm'))) return;
|
|
try {
|
|
await deleteMutation.mutateAsync({ id: contact.id });
|
|
toast.success(t('contacts.deleted'));
|
|
onDeleted();
|
|
} catch (err: any) {
|
|
toast.error(err.message || t('common.error'));
|
|
}
|
|
};
|
|
|
|
const handleSavePerson = async (data: Partial<ContactPerson>) => {
|
|
try {
|
|
if (editingPerson) {
|
|
await updatePersonMutation.mutateAsync({ contactId: contact.id, personId: editingPerson.id, data });
|
|
toast.success(t('contacts.personUpdated'));
|
|
} else {
|
|
await createPersonMutation.mutateAsync({ contactId: contact.id, data });
|
|
toast.success(t('contacts.personCreated'));
|
|
}
|
|
setPersonModalOpen(false);
|
|
setEditingPerson(null);
|
|
} catch (err: any) {
|
|
toast.error(err.message || t('common.error'));
|
|
}
|
|
};
|
|
|
|
const handleDeletePerson = async (person: ContactPerson) => {
|
|
if (!window.confirm(t('contacts.deletePersonConfirm'))) return;
|
|
try {
|
|
await deletePersonMutation.mutateAsync({ contactId: contact.id, personId: person.id });
|
|
toast.success(t('contacts.personDeleted'));
|
|
} catch (err: any) {
|
|
toast.error(err.message || t('common.error'));
|
|
}
|
|
};
|
|
|
|
const visiblePluginTabs = pluginTabs.filter(tab => {
|
|
if (!tab.permission) return true;
|
|
return user?.permissions?.includes(tab.permission) ?? false;
|
|
});
|
|
|
|
const allTabs = [
|
|
{ id: 'details', label: t('contacts.details', 'Details'), icon: null },
|
|
...visiblePluginTabs.map(tab => ({
|
|
id: tab.component,
|
|
label: t(tab.label_key, tab.label),
|
|
icon: tab.icon,
|
|
component: tab.component,
|
|
})),
|
|
];
|
|
|
|
return (
|
|
<div className="overflow-y-auto h-full" data-testid="contact-detail">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between px-4 py-3 border-b border-secondary-200 sticky top-0 bg-white z-10">
|
|
<div className="flex items-center gap-3 min-w-0">
|
|
<div className="w-10 h-10 rounded-full bg-primary-100 flex items-center justify-center text-primary-700 font-semibold flex-shrink-0">
|
|
{displayName.charAt(0).toUpperCase()}
|
|
</div>
|
|
<div className="min-w-0">
|
|
<h2 className="text-lg font-semibold text-secondary-900 truncate">{displayName}</h2>
|
|
<Badge variant={contact.type === 'company' ? 'primary' : 'info'}>
|
|
{contact.type === 'company' ? t('contacts.companies') : t('contacts.persons')}
|
|
</Badge>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-2 flex-shrink-0">
|
|
<Button variant="ghost" size="sm" onClick={onEdit}>{t('common.edit')}</Button>
|
|
<Button variant="ghost" size="sm" onClick={handleDelete} isLoading={deleteMutation.isPending}>{t('common.delete')}</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Tab Bar */}
|
|
<div className="flex border-b border-secondary-200 bg-white sticky top-[58px] z-10 overflow-x-auto" role="tablist">
|
|
{allTabs.map(tab => (
|
|
<button
|
|
key={tab.id}
|
|
role="tab"
|
|
aria-selected={activeTab === tab.id}
|
|
className={`flex items-center gap-2 px-4 py-2.5 text-sm font-medium whitespace-nowrap border-b-2 transition-colors ${
|
|
activeTab === tab.id
|
|
? 'border-primary-500 text-primary-700'
|
|
: 'border-transparent text-secondary-500 hover:text-secondary-700 hover:border-secondary-300'
|
|
}`}
|
|
onClick={() => setActiveTab(tab.id)}
|
|
>
|
|
{tab.icon && getIcon(tab.icon)}
|
|
{tab.label}
|
|
</button>
|
|
))}
|
|
</div>
|
|
|
|
{activeTab === 'details' ? (
|
|
<div className="p-4">
|
|
{/* Contact Persons */}
|
|
<Section
|
|
title={t('contacts.contactPersons')}
|
|
action={
|
|
<Button size="sm" variant="ghost" onClick={() => { setEditingPerson(null); setPersonModalOpen(true); }}>
|
|
{t('contacts.addPerson')}
|
|
</Button>
|
|
}
|
|
>
|
|
{persons.length === 0 ? (
|
|
<p className="text-sm text-secondary-500">{t('contacts.noPersons')}</p>
|
|
) : (
|
|
<ul className="space-y-2" role="list">
|
|
{persons.map((person) => (
|
|
<li key={person.id} className="flex items-center gap-3 p-2 rounded-md hover:bg-secondary-50">
|
|
<div className="flex-1 min-w-0">
|
|
<div className="text-sm font-medium text-secondary-900">
|
|
{[person.firstname, person.lastname].filter(Boolean).join(' ') || person.displayname}
|
|
</div>
|
|
{person.function && <div className="text-xs text-secondary-500">{person.function}</div>}
|
|
{person.email && <div className="text-xs text-secondary-500">{person.email}</div>}
|
|
{person.phone && <div className="text-xs text-secondary-500">{person.phone}</div>}
|
|
</div>
|
|
<button
|
|
onClick={() => { setEditingPerson(person); setPersonModalOpen(true); }}
|
|
className="text-xs text-primary-600 hover:text-primary-700 px-2 py-1 min-h-touch"
|
|
>
|
|
{t('common.edit')}
|
|
</button>
|
|
<button
|
|
onClick={() => handleDeletePerson(person)}
|
|
className="text-xs text-danger-600 hover:text-danger-700 px-2 py-1 min-h-touch"
|
|
>
|
|
{t('common.delete')}
|
|
</button>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</Section>
|
|
|
|
{/* Addresses */}
|
|
<Section title={t('address.title')}>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
<div>
|
|
<h4 className="text-xs font-semibold text-secondary-500 mb-1">{t('contacts.mailingAddress')}</h4>
|
|
<AddressBlock prefix="mailing" contact={contact} t={t} />
|
|
{!contact.mailing_street && !contact.mailing_city && <p className="text-sm text-secondary-400">—</p>}
|
|
</div>
|
|
<div>
|
|
<h4 className="text-xs font-semibold text-secondary-500 mb-1">{t('contacts.visitAddress')}</h4>
|
|
<AddressBlock prefix="visit" contact={contact} t={t} />
|
|
{!contact.visit_street && !contact.visit_city && <p className="text-sm text-secondary-400">—</p>}
|
|
</div>
|
|
<div>
|
|
<h4 className="text-xs font-semibold text-secondary-500 mb-1">{t('contacts.invoiceAddress')}</h4>
|
|
<AddressBlock prefix="invoice" contact={contact} t={t} />
|
|
{!contact.invoice_street && !contact.invoice_city && <p className="text-sm text-secondary-400">—</p>}
|
|
</div>
|
|
</div>
|
|
</Section>
|
|
|
|
{/* Communication */}
|
|
<Section title={t('contacts.communication')}>
|
|
<dl className="grid grid-cols-2 gap-3">
|
|
<Field label={t('contacts.phone') + ' 1'} value={contact.phone_1} />
|
|
<Field label={t('contacts.phone') + ' 2'} value={contact.phone_2} />
|
|
<Field label={t('contacts.email') + ' 1'} value={contact.email_1} />
|
|
<Field label={t('contacts.email') + ' 2'} value={contact.email_2} />
|
|
<Field label={t('contacts.website')} value={contact.website} />
|
|
</dl>
|
|
</Section>
|
|
|
|
{/* Financial */}
|
|
<Section title={t('contacts.financial')}>
|
|
<dl className="grid grid-cols-2 gap-3">
|
|
<Field label={t('contacts.vatCode')} value={contact.vat_code} />
|
|
<Field label={t('contacts.fiscalCode')} value={contact.fiscal_code} />
|
|
<Field label={t('contacts.commerceCode')} value={contact.commerce_code} />
|
|
<Field label={t('contacts.purchaseNumber')} value={contact.purchase_number} />
|
|
<Field label={t('contacts.bic')} value={contact.bic} />
|
|
<Field label={t('contacts.bankAccount')} value={contact.bank_account} />
|
|
</dl>
|
|
</Section>
|
|
|
|
{/* Discounts */}
|
|
<Section title={t('contacts.discounts')}>
|
|
<dl className="grid grid-cols-3 gap-3">
|
|
<Field label={t('contacts.discountCrew')} value={contact.discount_crew ? String(contact.discount_crew) : '0'} />
|
|
<Field label={t('contacts.discountTransport')} value={contact.discount_transport ? String(contact.discount_transport) : '0'} />
|
|
<Field label={t('contacts.discountRental')} value={contact.discount_rental ? String(contact.discount_rental) : '0'} />
|
|
<Field label={t('contacts.discountSale')} value={contact.discount_sale ? String(contact.discount_sale) : '0'} />
|
|
<Field label={t('contacts.discountSubrent')} value={contact.discount_subrent ? String(contact.discount_subrent) : '0'} />
|
|
<Field label={t('contacts.discountTotal')} value={contact.discount_total ? String(contact.discount_total) : '0'} />
|
|
</dl>
|
|
</Section>
|
|
|
|
{/* Geo */}
|
|
<Section title={t('contacts.geo')}>
|
|
<dl className="grid grid-cols-2 gap-3">
|
|
<Field label={t('contacts.latitude')} value={contact.latitude != null ? String(contact.latitude) : null} />
|
|
<Field label={t('contacts.longitude')} value={contact.longitude != null ? String(contact.longitude) : null} />
|
|
</dl>
|
|
</Section>
|
|
|
|
{/* Notes & Tags */}
|
|
<Section title={t('contacts.notes')}>
|
|
<dl className="space-y-3">
|
|
<Field label={t('contacts.projectnote')} value={contact.projectnote} />
|
|
<Field label={t('contacts.projectnoteTitle')} value={contact.projectnote_title} />
|
|
<Field label={t('contacts.contactWarning')} value={contact.contact_warning} />
|
|
<div>
|
|
<dt className="text-xs font-medium text-secondary-500">{t('tags.title')}</dt>
|
|
<dd>
|
|
{tags.length > 0 ? (
|
|
<div className="flex flex-wrap gap-1 mt-1">
|
|
{tags.map((tag) => (
|
|
<TagBadge key={tag} tag={{ name: tag, color: 'blue' }} size="sm" />
|
|
))}
|
|
</div>
|
|
) : (
|
|
<span className="text-sm text-secondary-400">—</span>
|
|
)}
|
|
</dd>
|
|
</div>
|
|
</dl>
|
|
</Section>
|
|
|
|
{/* Custom Fields */}
|
|
{contact.id && customFieldDefs.length > 0 && (
|
|
<Section title={t('contacts.customFields')}>
|
|
<CustomFieldRenderer
|
|
fields={customFieldsData?.fields || []}
|
|
mode="read"
|
|
/>
|
|
</Section>
|
|
)}
|
|
|
|
{/* History */}
|
|
{contact.id && (
|
|
<Section title={t('history.title', 'Änderungshistorie')}>
|
|
<HistoryViewer entityType="contact" entityId={contact.id} />
|
|
</Section>
|
|
)}
|
|
|
|
{/* Entity History Timeline */}
|
|
{contact.id && (
|
|
<Section title={t('history.timeline', 'Aktivitäts-Timeline')}>
|
|
<EntityHistoryPanel entityType="contact" entityId={contact.id} />
|
|
</Section>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<div className="p-4">
|
|
{allTabs.filter((t): t is { id: string; label: string; icon: string; component: string } => t.id !== 'details').map(tab => (
|
|
activeTab === tab.id && (
|
|
<PluginPage
|
|
key={tab.id}
|
|
component={tab.component}
|
|
pluginName={tab.label}
|
|
/>
|
|
)
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
<ContactPersonModal
|
|
open={personModalOpen}
|
|
onClose={() => { setPersonModalOpen(false); setEditingPerson(null); }}
|
|
onSave={handleSavePerson}
|
|
person={editingPerson}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|