feat: add participant scheduling with iTIP invitations and inline calendar invitation banner

Add organizer/attendee UI with RSVP, contact autocomplete for participants,
scheduling messages, and inline calendar invitation banner in email viewer
with auto-detect .ics attachments, RSVP/import to calendar, and cancellation display.
This commit is contained in:
Matthieu MALVACHE
2026-02-17 01:09:57 +01:00
committed by Matthieu MALVACHE
parent 74763b384d
commit b65b2f26df
30 changed files with 2352 additions and 137 deletions
+2 -4
View File
@@ -51,8 +51,6 @@ export default function ContactsPage() {
addLocalContact,
updateLocalContact,
deleteLocalContact,
getGroups,
getIndividuals,
getGroupMembers,
createGroup,
updateGroup,
@@ -84,8 +82,8 @@ export default function ContactsPage() {
}
}, [client, supportsSync, fetchContacts]);
const groups = useMemo(() => getGroups(), [contacts]);
const individuals = useMemo(() => getIndividuals(), [contacts]);
const groups = useMemo(() => contacts.filter(c => c.kind === 'group'), [contacts]);
const individuals = useMemo(() => contacts.filter(c => c.kind !== 'group'), [contacts]);
const selectedContact = contacts.find((c) => c.id === selectedContactId) || null;
const selectedGroup = selectedGroupId ? contacts.find(c => c.id === selectedGroupId) || null : null;
const selectedGroupMembers = selectedGroupId ? getGroupMembers(selectedGroupId) : [];