1) Remove featureFlag 2) Base contactCreation on messageChannel.autoContactCreationPolicy 4) add excludeProfessionalEmails + excludeGroupEmails logic
49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
import { MessageChannelContactAutoCreationPolicy } from '@/accounts/types/MessageChannel';
|
||
import { SettingsAccountsMessageAutoCreationIcon } from '@/settings/accounts/components/SettingsAccountsMessageAutoCreationIcon';
|
||
import { SettingsAccountsRadioSettingsCard } from '@/settings/accounts/components/SettingsAccountsRadioSettingsCard';
|
||
|
||
type SettingsAccountsMessageAutoCreationCardProps = {
|
||
onChange: (nextValue: MessageChannelContactAutoCreationPolicy) => void;
|
||
value?: MessageChannelContactAutoCreationPolicy;
|
||
};
|
||
|
||
const autoCreationOptions = [
|
||
{
|
||
title: 'Send and Received',
|
||
description: 'People I’ve sent emails to and received emails from.',
|
||
value: MessageChannelContactAutoCreationPolicy.SENT_AND_RECEIVED,
|
||
cardMedia: (
|
||
<SettingsAccountsMessageAutoCreationIcon isSentActive isReceivedActive />
|
||
),
|
||
},
|
||
{
|
||
title: 'Sent',
|
||
description: 'People I’ve sent emails to.',
|
||
value: MessageChannelContactAutoCreationPolicy.SENT,
|
||
cardMedia: <SettingsAccountsMessageAutoCreationIcon isSentActive />,
|
||
},
|
||
{
|
||
title: 'None',
|
||
description: 'Don’t auto-create contacts.',
|
||
value: MessageChannelContactAutoCreationPolicy.NONE,
|
||
cardMedia: (
|
||
<SettingsAccountsMessageAutoCreationIcon
|
||
isSentActive={false}
|
||
isReceivedActive={false}
|
||
/>
|
||
),
|
||
},
|
||
];
|
||
|
||
export const SettingsAccountsMessageAutoCreationCard = ({
|
||
onChange,
|
||
value = MessageChannelContactAutoCreationPolicy.SENT_AND_RECEIVED,
|
||
}: SettingsAccountsMessageAutoCreationCardProps) => (
|
||
<SettingsAccountsRadioSettingsCard
|
||
name="message-auto-creation"
|
||
options={autoCreationOptions}
|
||
value={value}
|
||
onChange={onChange}
|
||
/>
|
||
);
|