Microsoft V2.0 OAuth-Spezifikation: ein einzelner /token-Exchange darf nur Scopes EINES Resource-Servers enthalten. Unsere bisherige Scope-Liste mischte: https://outlook.office.com/IMAP.AccessAsUser.All (outlook.office.com) User.Read (graph.microsoft.com) Im /authorize akzeptiert MS das (Multi-Consent-Screen), aber beim Token- Exchange wirft MS AADSTS70011: "The provided value for the input parameter 'scope' is not valid. One or more scopes [...] are not compatible with each other." Fix: User.Read raus. Display-Name in der App entfällt vorerst — Email kommt sauber aus id_token.preferred_username (bei Consumer-MS-Accounts typisch die Login-Email). Falls Display-Name künftig gebraucht wird → separater Graph-Token-Exchange via On-Behalf-Of-Pattern. Plus: ConnectMailSheet zeigt jetzt im roten Error-Banner den echten Backend-Error (API-Status + Body) statt nur generischen Text — sonst würden wir solche MS-Spezifika nie auf dem Device sehen. Hans-Müller-Memo Section 3.1 (Datenkategorien) + Section 4.1 (Datenschutzerklärung) müssen entsprechend zurückgerollt werden — siehe separater DSB-Update-Stream. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
344 lines
11 KiB
TypeScript
344 lines
11 KiB
TypeScript
import { useState } from 'react';
|
|
import {
|
|
ActivityIndicator,
|
|
Alert,
|
|
ScrollView,
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
} from 'react-native';
|
|
import { useBottomTabBarHeight } from 'react-native-bottom-tabs';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { AppHeader } from '../../components/AppHeader';
|
|
import { MailStatsRow } from '../../components/mail/MailStatsRow';
|
|
import { MailAccountCard } from '../../components/mail/MailAccountCard';
|
|
import { MailEmptyState } from '../../components/mail/MailEmptyState';
|
|
import { MailActivityLog } from '../../components/mail/MailActivityLog';
|
|
import { MailBlockedByDayChart } from '../../components/mail/MailBlockedByDayChart';
|
|
import { MailDistributionChart } from '../../components/mail/MailDistributionChart';
|
|
import { ConnectMailSheet } from '../../components/mail/ConnectMailSheet';
|
|
import { EditMailTitleSheet } from '../../components/mail/EditMailTitleSheet';
|
|
import { SuccessAlert } from '../../components/SuccessAlert';
|
|
import { useMailStatus } from '../../hooks/useMailStatus';
|
|
import { useMailDisconnect } from '../../hooks/useMailDisconnect';
|
|
import { useMailStats } from '../../hooks/useMailStats';
|
|
import { useUserPlan } from '../../hooks/useUserPlan';
|
|
import { useColors } from '../../lib/theme';
|
|
import { useMailConnectDraft } from '../../stores/mailConnectDraft';
|
|
|
|
const PLAN_LABEL: Record<string, string> = { free: 'Free', pro: 'Pro', legend: 'Legend' };
|
|
|
|
function MailOverLimitBanner({
|
|
usedCount,
|
|
maxAccounts,
|
|
planLabel,
|
|
pausedEmails,
|
|
colors,
|
|
}: {
|
|
usedCount: number;
|
|
maxAccounts: number;
|
|
planLabel: string;
|
|
pausedEmails: string[];
|
|
colors: import('../../lib/theme').ColorScheme;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const over = usedCount - maxAccounts;
|
|
if (over <= 0) return null;
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
backgroundColor: 'rgba(217,119,6,0.08)',
|
|
borderRadius: 14,
|
|
padding: 14,
|
|
marginBottom: 14,
|
|
borderWidth: 1,
|
|
borderColor: 'rgba(217,119,6,0.2)',
|
|
gap: 6,
|
|
}}
|
|
>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center', gap: 8 }}>
|
|
<Ionicons name="warning-outline" size={16} color="#d97706" />
|
|
<Text style={{ fontSize: 14, fontFamily: 'Nunito_700Bold', color: '#d97706', flex: 1 }}>
|
|
{t('plan_limit.mail_banner_title')}
|
|
</Text>
|
|
</View>
|
|
<Text style={{ fontSize: 13, color: colors.text, fontFamily: 'Nunito_400Regular', lineHeight: 18 }}>
|
|
{t(over === 1 ? 'plan_limit.mail_banner_body_one' : 'plan_limit.mail_banner_body_other', {
|
|
used: usedCount,
|
|
plan: planLabel,
|
|
max: maxAccounts,
|
|
over,
|
|
})}
|
|
</Text>
|
|
{pausedEmails.length > 0 && (
|
|
<Text style={{ fontSize: 12, color: colors.textMuted, fontFamily: 'Nunito_400Regular' }}>
|
|
{pausedEmails.join(', ')}
|
|
</Text>
|
|
)}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default function MailScreen() {
|
|
const { t } = useTranslation();
|
|
const tabBarHeight = useBottomTabBarHeight();
|
|
const colors = useColors();
|
|
|
|
const { plan } = useUserPlan();
|
|
|
|
const { connected, accounts, totalBlocked, maxAccounts, loading, refresh } =
|
|
useMailStatus(plan);
|
|
const { disconnect, disconnecting } = useMailDisconnect();
|
|
const hasAccounts = accounts.length > 0;
|
|
const { blockedByDay, blockedByConnection } = useMailStats(hasAccounts);
|
|
|
|
const [sheetVisible, setSheetVisible] = useState(false);
|
|
const [successVisible, setSuccessVisible] = useState(false);
|
|
const [disconnectingId, setDisconnectingId] = useState<string | null>(null);
|
|
const [expandedAccount, setExpandedAccount] = useState<string | null>(null);
|
|
const [activityLogExpanded, setActivityLogExpanded] = useState(false);
|
|
const [oauthTitleSheetConnectionId, setOauthTitleSheetConnectionId] = useState<string | null>(null);
|
|
|
|
const { pendingOAuthConnectionId, setPendingOAuthConnectionId } = useMailConnectDraft();
|
|
|
|
const nextScanAt =
|
|
accounts
|
|
.map((a) => a.nextScanAt)
|
|
.filter((v): v is string => v !== null)
|
|
.sort()[0] ?? null;
|
|
|
|
const pausedAccounts = accounts.filter((a) => a.paused === true);
|
|
const overLimit = maxAccounts !== Infinity && accounts.length > maxAccounts;
|
|
const limitReached = maxAccounts !== Infinity && accounts.length >= maxAccounts;
|
|
|
|
const distinctProviders = [
|
|
...new Set(accounts.map((a) => a.provider.toLowerCase())),
|
|
];
|
|
|
|
function handleAddPress() {
|
|
if (limitReached) {
|
|
Alert.alert(t('mail.upgrade_alert_title'), t('mail.upgrade_alert_desc'));
|
|
return;
|
|
}
|
|
setSheetVisible(true);
|
|
}
|
|
|
|
async function handleDisconnect(id: string) {
|
|
setDisconnectingId(id);
|
|
await disconnect(id);
|
|
setDisconnectingId(null);
|
|
if (expandedAccount === id) setExpandedAccount(null);
|
|
refresh();
|
|
}
|
|
|
|
function handleConnectSuccess() {
|
|
refresh();
|
|
if (pendingOAuthConnectionId) {
|
|
setOauthTitleSheetConnectionId(pendingOAuthConnectionId);
|
|
setPendingOAuthConnectionId(null);
|
|
} else {
|
|
setSuccessVisible(true);
|
|
}
|
|
}
|
|
|
|
function toggleAccount(id: string) {
|
|
setExpandedAccount((prev) => (prev === id ? null : id));
|
|
}
|
|
|
|
if (loading) {
|
|
return (
|
|
<View style={{ flex: 1, backgroundColor: colors.bg }}>
|
|
<AppHeader />
|
|
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
|
|
<ActivityIndicator size="large" color="#007AFF" />
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View style={{ flex: 1, backgroundColor: colors.bg }}>
|
|
<AppHeader />
|
|
|
|
<ScrollView
|
|
contentContainerStyle={{
|
|
paddingHorizontal: 16,
|
|
paddingTop: 16,
|
|
paddingBottom: tabBarHeight + 24,
|
|
}}
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
{/* Über-Limit-Banner */}
|
|
{overLimit && pausedAccounts.length > 0 && (
|
|
<MailOverLimitBanner
|
|
usedCount={accounts.length}
|
|
maxAccounts={maxAccounts}
|
|
planLabel={PLAN_LABEL[plan] ?? plan}
|
|
pausedEmails={pausedAccounts.map((a) => a.email)}
|
|
colors={colors}
|
|
/>
|
|
)}
|
|
|
|
{/* Stats card */}
|
|
{hasAccounts && (
|
|
<View style={{ marginBottom: 14 }}>
|
|
<MailStatsRow
|
|
totalBlocked={totalBlocked}
|
|
accountCount={accounts.length}
|
|
isLegend={plan === 'legend'}
|
|
/>
|
|
</View>
|
|
)}
|
|
|
|
{/* Section header + add button */}
|
|
{hasAccounts && (
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
marginBottom: 10,
|
|
paddingHorizontal: 2,
|
|
}}
|
|
>
|
|
<View style={{ flex: 1, marginRight: 10 }}>
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
fontFamily: 'Nunito_700Bold',
|
|
color: colors.textMuted,
|
|
textTransform: 'uppercase',
|
|
letterSpacing: 0.8,
|
|
}}
|
|
>
|
|
{t('mail.section_accounts')}
|
|
</Text>
|
|
<Text
|
|
style={{
|
|
fontSize: 11,
|
|
fontFamily: 'Nunito_400Regular',
|
|
color: colors.textMuted,
|
|
marginTop: 2,
|
|
}}
|
|
>
|
|
{maxAccounts === Infinity
|
|
? t('mail.section_accounts_count_unlimited', { used: accounts.length })
|
|
: t('mail.section_accounts_count', {
|
|
used: accounts.length,
|
|
max: maxAccounts,
|
|
})}
|
|
</Text>
|
|
</View>
|
|
|
|
<TouchableOpacity
|
|
onPress={handleAddPress}
|
|
disabled={limitReached}
|
|
activeOpacity={limitReached ? 1 : 0.8}
|
|
accessibilityLabel={t('mail.add_account_a11y')}
|
|
style={{
|
|
backgroundColor: limitReached ? colors.surfaceElevated : '#007AFF',
|
|
borderRadius: 12,
|
|
opacity: limitReached ? 0.7 : 1,
|
|
shadowColor: '#007AFF',
|
|
shadowOffset: { width: 0, height: 4 },
|
|
shadowOpacity: limitReached ? 0 : 0.25,
|
|
shadowRadius: 8,
|
|
elevation: limitReached ? 0 : 4,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
paddingHorizontal: 14,
|
|
paddingVertical: 10,
|
|
}}
|
|
>
|
|
<Ionicons
|
|
name="add"
|
|
size={18}
|
|
color={limitReached ? colors.textMuted : '#fff'}
|
|
style={{ marginRight: 6 }}
|
|
/>
|
|
<Text
|
|
style={{
|
|
fontSize: 13,
|
|
fontFamily: 'Nunito_700Bold',
|
|
color: limitReached ? colors.textMuted : '#fff',
|
|
}}
|
|
>
|
|
{t('mail.add_account')}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
)}
|
|
|
|
{/* Account cards or empty */}
|
|
{accounts.length === 0 ? (
|
|
<MailEmptyState onConnectPress={handleAddPress} />
|
|
) : (
|
|
<View>
|
|
{accounts.map((account, idx) => {
|
|
const connStat = blockedByConnection.find((c) => c.connectionId === account.id);
|
|
return (
|
|
<View key={account.id} style={{ marginTop: idx === 0 ? 0 : 10 }}>
|
|
<MailAccountCard
|
|
account={account}
|
|
plan={plan}
|
|
expanded={expandedAccount === account.id}
|
|
onToggle={() => toggleAccount(account.id)}
|
|
onDisconnect={handleDisconnect}
|
|
onIntervalChanged={refresh}
|
|
onEditSuccess={handleConnectSuccess}
|
|
disconnecting={disconnectingId === account.id && disconnecting}
|
|
blockedLast30d={connStat?.count}
|
|
/>
|
|
</View>
|
|
);
|
|
})}
|
|
</View>
|
|
)}
|
|
|
|
{/* Charts — nur wenn Accounts vorhanden */}
|
|
{hasAccounts && (
|
|
<View style={{ gap: 12, marginTop: 14 }}>
|
|
<MailBlockedByDayChart data={blockedByDay} />
|
|
<MailDistributionChart data={blockedByConnection} />
|
|
</View>
|
|
)}
|
|
|
|
{/* Activity log */}
|
|
{hasAccounts && (
|
|
<View style={{ marginTop: 14 }}>
|
|
<MailActivityLog
|
|
expanded={activityLogExpanded}
|
|
onToggle={() => setActivityLogExpanded((p) => !p)}
|
|
providers={distinctProviders}
|
|
/>
|
|
</View>
|
|
)}
|
|
</ScrollView>
|
|
|
|
<ConnectMailSheet
|
|
visible={sheetVisible}
|
|
onClose={() => setSheetVisible(false)}
|
|
onSuccess={handleConnectSuccess}
|
|
/>
|
|
|
|
{oauthTitleSheetConnectionId && (
|
|
<EditMailTitleSheet
|
|
visible={!!oauthTitleSheetConnectionId}
|
|
connectionId={oauthTitleSheetConnectionId}
|
|
currentTitle={null}
|
|
onClose={() => { setOauthTitleSheetConnectionId(null); setSuccessVisible(true); }}
|
|
onSuccess={() => { setOauthTitleSheetConnectionId(null); setSuccessVisible(true); refresh(); }}
|
|
/>
|
|
)}
|
|
|
|
<SuccessAlert
|
|
visible={successVisible}
|
|
title={t('mail.connect_success_title')}
|
|
message={t('mail.connect_success_message')}
|
|
onClose={() => setSuccessVisible(false)}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|