feat(address-book): rebuild with multi-contact, project links, and extended fields

- Add ContactPerson sub-entities for multi-contact per company
- Add department, role, website, secondary email/phone, projectIds fields
- Add internal contact type alongside client/supplier/institution/collaborator
- Project tag picker using core TagService project tags
- Updated search to include department and role

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Marius Tarau
2026-02-18 06:35:17 +02:00
parent f555258dcb
commit 84d9db4515
3 changed files with 286 additions and 58 deletions

View File

@@ -36,8 +36,9 @@ export function useContacts() {
// eslint-disable-next-line react-hooks/set-state-in-effect
useEffect(() => { refresh(); }, [refresh]);
const addContact = useCallback(async (data: Omit<AddressContact, 'id' | 'createdAt'>) => {
const contact: AddressContact = { ...data, id: uuid(), createdAt: new Date().toISOString() };
const addContact = useCallback(async (data: Omit<AddressContact, 'id' | 'createdAt' | 'updatedAt'>) => {
const now = new Date().toISOString();
const contact: AddressContact = { ...data, id: uuid(), createdAt: now, updatedAt: now };
await storage.set(`${PREFIX}${contact.id}`, contact);
await refresh();
return contact;
@@ -46,7 +47,13 @@ export function useContacts() {
const updateContact = useCallback(async (id: string, updates: Partial<AddressContact>) => {
const existing = contacts.find((c) => c.id === id);
if (!existing) return;
const updated = { ...existing, ...updates, id: existing.id, createdAt: existing.createdAt };
const updated: AddressContact = {
...existing,
...updates,
id: existing.id,
createdAt: existing.createdAt,
updatedAt: new Date().toISOString(),
};
await storage.set(`${PREFIX}${id}`, updated);
await refresh();
}, [storage, refresh, contacts]);
@@ -64,7 +71,14 @@ export function useContacts() {
if (filters.type !== 'all' && c.type !== filters.type) return false;
if (filters.search) {
const q = filters.search.toLowerCase();
return c.name.toLowerCase().includes(q) || c.company.toLowerCase().includes(q) || c.email.toLowerCase().includes(q) || c.phone.includes(q);
return (
c.name.toLowerCase().includes(q) ||
c.company.toLowerCase().includes(q) ||
c.email.toLowerCase().includes(q) ||
c.phone.includes(q) ||
c.department.toLowerCase().includes(q) ||
c.role.toLowerCase().includes(q)
);
}
return true;
});