feat: group composer From dropdown by account in Pro shell
This commit is contained in:
@@ -14,6 +14,7 @@ import { emailHooks, contactHooks } from "@/lib/plugin-hooks";
|
|||||||
import type { OutgoingEmail, RecipientSuggestion } from "@/lib/plugin-types";
|
import type { OutgoingEmail, RecipientSuggestion } from "@/lib/plugin-types";
|
||||||
import { useAuthStore } from "@/stores/auth-store";
|
import { useAuthStore } from "@/stores/auth-store";
|
||||||
import { useIdentityStore } from "@/stores/identity-store";
|
import { useIdentityStore } from "@/stores/identity-store";
|
||||||
|
import { useProMultiAccountIdentities, stripCrossAccountIdentityPrefix } from "@/hooks/use-pro-multi-account-identities";
|
||||||
import { useAccountStore } from "@/stores/account-store";
|
import { useAccountStore } from "@/stores/account-store";
|
||||||
import { useSmimeStore } from "@/stores/smime-store";
|
import { useSmimeStore } from "@/stores/smime-store";
|
||||||
import { useEmailStore } from "@/stores/email-store";
|
import { useEmailStore } from "@/stores/email-store";
|
||||||
@@ -75,6 +76,11 @@ interface EmailComposerProps {
|
|||||||
fromName?: string;
|
fromName?: string;
|
||||||
identityId?: string;
|
identityId?: string;
|
||||||
envelopeMailFrom?: string;
|
envelopeMailFrom?: string;
|
||||||
|
/** Local account ID owning the selected identity. Set when the user
|
||||||
|
* picked an identity from a non-active account in the Pro multi-
|
||||||
|
* account dropdown; parents should send through that account's
|
||||||
|
* client instead of the currently-active one. */
|
||||||
|
localAccountId?: string;
|
||||||
attachments?: Array<{ blobId: string; name: string; type: string; size: number; disposition?: 'attachment' | 'inline'; cid?: string }>;
|
attachments?: Array<{ blobId: string; name: string; type: string; size: number; disposition?: 'attachment' | 'inline'; cid?: string }>;
|
||||||
inReplyTo?: string[];
|
inReplyTo?: string[];
|
||||||
references?: string[];
|
references?: string[];
|
||||||
@@ -179,8 +185,18 @@ export function EmailComposer({
|
|||||||
const attachmentReminderKeywords = useSettingsStore((state) => state.attachmentReminderKeywords);
|
const attachmentReminderKeywords = useSettingsStore((state) => state.attachmentReminderKeywords);
|
||||||
const signaturePosition = useSettingsStore((state) => state.signaturePosition);
|
const signaturePosition = useSettingsStore((state) => state.signaturePosition);
|
||||||
const signatureSeparatorEnabled = useSettingsStore((state) => state.signatureSeparatorEnabled);
|
const signatureSeparatorEnabled = useSettingsStore((state) => state.signatureSeparatorEnabled);
|
||||||
const identities = useIdentityStore((s) => s.identities);
|
const activeIdentities = useIdentityStore((s) => s.identities);
|
||||||
const primaryIdentity = identities[0] ?? null;
|
// Pro shell: surface identities from every connected account, grouped
|
||||||
|
// for the From dropdown's <optgroup>s. Outside Pro this collapses to
|
||||||
|
// the active account's identities only.
|
||||||
|
const multiAccountIdentities = useProMultiAccountIdentities();
|
||||||
|
const identities = multiAccountIdentities.enabled
|
||||||
|
? multiAccountIdentities.allIdentities
|
||||||
|
: activeIdentities;
|
||||||
|
const identityGroups = multiAccountIdentities.enabled
|
||||||
|
? multiAccountIdentities.groups
|
||||||
|
: [];
|
||||||
|
const primaryIdentity = activeIdentities[0] ?? null;
|
||||||
|
|
||||||
// The signature identity used when embedding the signature into the initial
|
// The signature identity used when embedding the signature into the initial
|
||||||
// body for "above quote" mode. Mirrors the signatureIdentity derivation
|
// body for "above quote" mode. Mirrors the signatureIdentity derivation
|
||||||
@@ -389,6 +405,19 @@ export function EmailComposer({
|
|||||||
const currentIdentity = selectedIdentityId
|
const currentIdentity = selectedIdentityId
|
||||||
? identities.find((identity) => identity.id === selectedIdentityId) || primaryIdentity
|
? identities.find((identity) => identity.id === selectedIdentityId) || primaryIdentity
|
||||||
: primaryIdentity;
|
: primaryIdentity;
|
||||||
|
|
||||||
|
// When the selected identity belongs to a non-active account (Pro
|
||||||
|
// multi-account dropdown), `currentIdentity.id` carries a "<localId>::"
|
||||||
|
// namespace and JMAP calls must be routed through that account's
|
||||||
|
// client with the un-prefixed id. `composerClient` and
|
||||||
|
// `currentIdentityRawId` are what save/send code should use.
|
||||||
|
const currentIdentityParts = currentIdentity?.id
|
||||||
|
? stripCrossAccountIdentityPrefix(currentIdentity.id)
|
||||||
|
: { localAccountId: null, rawId: undefined };
|
||||||
|
const composerClient = currentIdentityParts.localAccountId
|
||||||
|
? (useAuthStore.getState().getClientForAccount(currentIdentityParts.localAccountId) ?? client)
|
||||||
|
: client;
|
||||||
|
const currentIdentityRawId = currentIdentityParts.rawId ?? currentIdentity?.id;
|
||||||
// Alias identities often lack a configured signature - fall back to the primary
|
// Alias identities often lack a configured signature - fall back to the primary
|
||||||
// identity's signature so replies (which auto-select a matching alias) still
|
// identity's signature so replies (which auto-select a matching alias) still
|
||||||
// populate the user's signature.
|
// populate the user's signature.
|
||||||
@@ -906,7 +935,7 @@ export function EmailComposer({
|
|||||||
|
|
||||||
// Auto-save draft functionality
|
// Auto-save draft functionality
|
||||||
const saveDraftOnce = async (): Promise<string | null> => {
|
const saveDraftOnce = async (): Promise<string | null> => {
|
||||||
if (!client) return null;
|
if (!client || !composerClient) return null;
|
||||||
|
|
||||||
const toAddresses = to.split(",").map(e => e.trim()).filter(Boolean);
|
const toAddresses = to.split(",").map(e => e.trim()).filter(Boolean);
|
||||||
const ccAddresses = cc.split(",").map(e => e.trim()).filter(Boolean);
|
const ccAddresses = cc.split(",").map(e => e.trim()).filter(Boolean);
|
||||||
@@ -952,13 +981,16 @@ export function EmailComposer({
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
const previousDraftId = draftIdRef.current;
|
const previousDraftId = draftIdRef.current;
|
||||||
const savedDraftId = await client.createDraft(
|
// Use the JMAP client and raw identity id for the *owning* account
|
||||||
|
// — falls back to active client for single-account / same-account
|
||||||
|
// identities. See `composerClient` derivation above.
|
||||||
|
const savedDraftId = await composerClient.createDraft(
|
||||||
toAddresses,
|
toAddresses,
|
||||||
subject || t('no_subject'),
|
subject || t('no_subject'),
|
||||||
plainTextMode ? body : htmlToPlainText(body),
|
plainTextMode ? body : htmlToPlainText(body),
|
||||||
ccAddresses,
|
ccAddresses,
|
||||||
bccAddresses,
|
bccAddresses,
|
||||||
currentIdentity?.id,
|
currentIdentityRawId,
|
||||||
fromEmail,
|
fromEmail,
|
||||||
previousDraftId || undefined,
|
previousDraftId || undefined,
|
||||||
uploadedAttachments,
|
uploadedAttachments,
|
||||||
@@ -1255,6 +1287,13 @@ export function EmailComposer({
|
|||||||
|
|
||||||
// S/MIME send pipeline: build raw MIME → sign → encrypt → sendRawEmail
|
// S/MIME send pipeline: build raw MIME → sign → encrypt → sendRawEmail
|
||||||
if ((smimeSign_ || smimeEncrypt_) && client && currentIdentity?.id) {
|
if ((smimeSign_ || smimeEncrypt_) && client && currentIdentity?.id) {
|
||||||
|
// S/MIME keys are scoped to one JMAP account's identity — sending
|
||||||
|
// from a cross-account identity via S/MIME would mix accounts'
|
||||||
|
// certs/clients. Refuse upfront and tell the user to switch.
|
||||||
|
const crossAccount = stripCrossAccountIdentityPrefix(currentIdentity.id);
|
||||||
|
if (crossAccount.localAccountId) {
|
||||||
|
throw new Error('S/MIME sending from another account’s identity is not supported. Switch to that account first.');
|
||||||
|
}
|
||||||
// 1. Resolve S/MIME key
|
// 1. Resolve S/MIME key
|
||||||
if (smimeSign_ && !smimeKeyRecord) {
|
if (smimeSign_ && !smimeKeyRecord) {
|
||||||
throw new Error('No S/MIME key bound to this identity');
|
throw new Error('No S/MIME key bound to this identity');
|
||||||
@@ -1400,6 +1439,15 @@ export function EmailComposer({
|
|||||||
};
|
};
|
||||||
const outgoing = await emailHooks.onTransformOutgoingEmail.transform(transformInput);
|
const outgoing = await emailHooks.onTransformOutgoingEmail.transform(transformInput);
|
||||||
|
|
||||||
|
// Strip the cross-account namespace from the identity id before
|
||||||
|
// handing it to the parent — the JMAP server only knows the raw
|
||||||
|
// id. The owning local account travels alongside so the parent
|
||||||
|
// can route the send through the right client.
|
||||||
|
const rawIdentityId = outgoing.identityId || currentIdentity?.id;
|
||||||
|
const { localAccountId: identityLocalAccountId, rawId } = rawIdentityId
|
||||||
|
? stripCrossAccountIdentityPrefix(rawIdentityId)
|
||||||
|
: { localAccountId: null, rawId: undefined };
|
||||||
|
|
||||||
await onSend?.({
|
await onSend?.({
|
||||||
to: outgoing.to,
|
to: outgoing.to,
|
||||||
cc: outgoing.cc,
|
cc: outgoing.cc,
|
||||||
@@ -1410,8 +1458,9 @@ export function EmailComposer({
|
|||||||
draftId: finalDraftId || undefined,
|
draftId: finalDraftId || undefined,
|
||||||
fromEmail,
|
fromEmail,
|
||||||
fromName,
|
fromName,
|
||||||
identityId: outgoing.identityId || currentIdentity?.id,
|
identityId: rawId,
|
||||||
envelopeMailFrom,
|
envelopeMailFrom,
|
||||||
|
localAccountId: identityLocalAccountId ?? undefined,
|
||||||
attachments: uploadedAttachments.length > 0 ? uploadedAttachments : undefined,
|
attachments: uploadedAttachments.length > 0 ? uploadedAttachments : undefined,
|
||||||
inReplyTo: threadingHeaders?.inReplyTo,
|
inReplyTo: threadingHeaders?.inReplyTo,
|
||||||
references: threadingHeaders?.references,
|
references: threadingHeaders?.references,
|
||||||
@@ -1581,16 +1630,31 @@ export function EmailComposer({
|
|||||||
onChange={(e) => setSelectedIdentityId(e.target.value)}
|
onChange={(e) => setSelectedIdentityId(e.target.value)}
|
||||||
className="flex-1 bg-transparent text-sm text-foreground outline-none cursor-pointer hover:text-muted-foreground transition-colors min-w-0 truncate"
|
className="flex-1 bg-transparent text-sm text-foreground outline-none cursor-pointer hover:text-muted-foreground transition-colors min-w-0 truncate"
|
||||||
>
|
>
|
||||||
{identities.map((identity) => {
|
{identityGroups.length > 0
|
||||||
const displayEmail = subAddressTag
|
? identityGroups.map((group) => (
|
||||||
? generateSubAddress(identity.email, subAddressTag, subAddressDelimiter)
|
<optgroup key={group.localAccountId} label={group.accountLabel}>
|
||||||
: identity.email;
|
{group.identities.map((identity) => {
|
||||||
return (
|
const displayEmail = subAddressTag
|
||||||
<option key={identity.id} value={identity.id}>
|
? generateSubAddress(identity.email, subAddressTag, subAddressDelimiter)
|
||||||
{identity.name ? `${identity.name} <${displayEmail}>` : displayEmail}
|
: identity.email;
|
||||||
</option>
|
return (
|
||||||
);
|
<option key={identity.id} value={identity.id}>
|
||||||
})}
|
{identity.name ? `${identity.name} <${displayEmail}>` : displayEmail}
|
||||||
|
</option>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</optgroup>
|
||||||
|
))
|
||||||
|
: identities.map((identity) => {
|
||||||
|
const displayEmail = subAddressTag
|
||||||
|
? generateSubAddress(identity.email, subAddressTag, subAddressDelimiter)
|
||||||
|
: identity.email;
|
||||||
|
return (
|
||||||
|
<option key={identity.id} value={identity.id}>
|
||||||
|
{identity.name ? `${identity.name} <${displayEmail}>` : displayEmail}
|
||||||
|
</option>
|
||||||
|
);
|
||||||
|
})}
|
||||||
</select>
|
</select>
|
||||||
) : (
|
) : (
|
||||||
<span className="text-sm text-foreground flex-1 truncate">
|
<span className="text-sm text-foreground flex-1 truncate">
|
||||||
|
|||||||
@@ -0,0 +1,133 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useEffect, useMemo, useState } from "react";
|
||||||
|
import { useAccountStore } from "@/stores/account-store";
|
||||||
|
import { useAuthStore } from "@/stores/auth-store";
|
||||||
|
import { useIdentityStore } from "@/stores/identity-store";
|
||||||
|
import { useSettingsStore } from "@/stores/settings-store";
|
||||||
|
import { useIsEmbedded } from "@/hooks/use-is-embedded";
|
||||||
|
import type { Identity } from "@/lib/jmap/types";
|
||||||
|
|
||||||
|
interface AccountIdentityGroup {
|
||||||
|
localAccountId: string;
|
||||||
|
accountLabel: string;
|
||||||
|
identities: Identity[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const CROSS_ACCOUNT_IDENTITY_DELIMITER = '::';
|
||||||
|
|
||||||
|
/** Cross-account identity IDs are namespaced to avoid collisions between
|
||||||
|
* JMAP servers that happen to issue the same opaque ID. The active
|
||||||
|
* account's IDs are left untouched so existing single-account code paths
|
||||||
|
* (reply-identity resolution, S/MIME bindings) keep working unchanged.
|
||||||
|
*/
|
||||||
|
export function isCrossAccountIdentityId(id: string): boolean {
|
||||||
|
return id.includes(CROSS_ACCOUNT_IDENTITY_DELIMITER);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function stripCrossAccountIdentityPrefix(id: string): { localAccountId: string | null; rawId: string } {
|
||||||
|
const idx = id.indexOf(CROSS_ACCOUNT_IDENTITY_DELIMITER);
|
||||||
|
if (idx < 0) return { localAccountId: null, rawId: id };
|
||||||
|
return {
|
||||||
|
localAccountId: id.slice(0, idx),
|
||||||
|
rawId: id.slice(idx + CROSS_ACCOUNT_IDENTITY_DELIMITER.length),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pro shell only: load identities from every connected account and group
|
||||||
|
* them by local account so the composer's From dropdown can render an
|
||||||
|
* <optgroup> per account — mirrors [[useProMultiAccountCalendars]] and
|
||||||
|
* [[useProMultiAccountContacts]].
|
||||||
|
*
|
||||||
|
* Outside Pro / embedded mode the hook returns `enabled: false` and the
|
||||||
|
* caller falls back to the active account's identities from
|
||||||
|
* [[useIdentityStore]].
|
||||||
|
*/
|
||||||
|
export function useProMultiAccountIdentities(): {
|
||||||
|
enabled: boolean;
|
||||||
|
groups: AccountIdentityGroup[];
|
||||||
|
/** Flat list across all accounts, useful for lookup-by-id. */
|
||||||
|
allIdentities: Identity[];
|
||||||
|
} {
|
||||||
|
const isEmbedded = useIsEmbedded();
|
||||||
|
const proInterface = useSettingsStore((s) => s.proInterface);
|
||||||
|
const accounts = useAccountStore((s) => s.accounts);
|
||||||
|
const activeAccountId = useAuthStore((s) => s.activeAccountId);
|
||||||
|
const activeIdentities = useIdentityStore((s) => s.identities);
|
||||||
|
|
||||||
|
const enabled = (proInterface || isEmbedded) && accounts.filter(a => a.isConnected).length > 1;
|
||||||
|
|
||||||
|
const [remoteIdentities, setRemoteIdentities] = useState<Record<string, Identity[]>>({});
|
||||||
|
|
||||||
|
// Cache identities fetched per non-active account. Active account's
|
||||||
|
// identities come live from useIdentityStore so signature/alias edits
|
||||||
|
// there are reflected immediately without an extra round-trip.
|
||||||
|
useEffect(() => {
|
||||||
|
if (!enabled) {
|
||||||
|
setRemoteIdentities({});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let cancelled = false;
|
||||||
|
const getClientForAccount = useAuthStore.getState().getClientForAccount;
|
||||||
|
(async () => {
|
||||||
|
const next: Record<string, Identity[]> = {};
|
||||||
|
await Promise.all(
|
||||||
|
accounts
|
||||||
|
.filter((a) => a.isConnected && a.id !== activeAccountId)
|
||||||
|
.map(async (account) => {
|
||||||
|
const client = getClientForAccount(account.id);
|
||||||
|
if (!client) return;
|
||||||
|
try {
|
||||||
|
const list = await client.getIdentities();
|
||||||
|
if (!cancelled) next[account.id] = list;
|
||||||
|
} catch {
|
||||||
|
// Skip accounts that fail to load identities — one bad
|
||||||
|
// account shouldn't blank the whole dropdown.
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
if (!cancelled) setRemoteIdentities(next);
|
||||||
|
})();
|
||||||
|
return () => { cancelled = true; };
|
||||||
|
}, [enabled, accounts, activeAccountId]);
|
||||||
|
|
||||||
|
const groups = useMemo<AccountIdentityGroup[]>(() => {
|
||||||
|
if (!enabled) return [];
|
||||||
|
const out: AccountIdentityGroup[] = [];
|
||||||
|
if (activeAccountId) {
|
||||||
|
const active = accounts.find((a) => a.id === activeAccountId);
|
||||||
|
const label = active?.label || active?.email || active?.username || activeAccountId;
|
||||||
|
out.push({
|
||||||
|
localAccountId: activeAccountId,
|
||||||
|
accountLabel: label,
|
||||||
|
identities: activeIdentities.map((id) => ({
|
||||||
|
...id,
|
||||||
|
localAccountId: activeAccountId,
|
||||||
|
accountName: label,
|
||||||
|
})),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
for (const account of accounts) {
|
||||||
|
if (!account.isConnected || account.id === activeAccountId) continue;
|
||||||
|
const list = remoteIdentities[account.id];
|
||||||
|
if (!list || list.length === 0) continue;
|
||||||
|
const label = account.label || account.email || account.username;
|
||||||
|
out.push({
|
||||||
|
localAccountId: account.id,
|
||||||
|
accountLabel: label,
|
||||||
|
identities: list.map((id) => ({
|
||||||
|
...id,
|
||||||
|
id: `${account.id}${CROSS_ACCOUNT_IDENTITY_DELIMITER}${id.id}`,
|
||||||
|
localAccountId: account.id,
|
||||||
|
accountName: label,
|
||||||
|
})),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}, [enabled, accounts, activeAccountId, activeIdentities, remoteIdentities]);
|
||||||
|
|
||||||
|
const allIdentities = useMemo(() => groups.flatMap((g) => g.identities), [groups]);
|
||||||
|
|
||||||
|
return { enabled, groups, allIdentities };
|
||||||
|
}
|
||||||
@@ -159,6 +159,12 @@ export interface Identity {
|
|||||||
textSignature?: string;
|
textSignature?: string;
|
||||||
htmlSignature?: string;
|
htmlSignature?: string;
|
||||||
mayDelete: boolean;
|
mayDelete: boolean;
|
||||||
|
// See `Calendar.localAccountId` — set when the Pro shell aggregates
|
||||||
|
// identities from multiple connected accounts so we can route sends
|
||||||
|
// back through the owning JMAP client. `accountName` is the
|
||||||
|
// user-facing label for the dropdown's optgroup.
|
||||||
|
localAccountId?: string;
|
||||||
|
accountName?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
// RFC 9553 JSContact / RFC 9610 JMAP for Contacts
|
// RFC 9553 JSContact / RFC 9610 JMAP for Contacts
|
||||||
|
|||||||
Reference in New Issue
Block a user