LockScreen could latch on the locked screen with no working Face ID prompt until a hard-quit. Two coupled causes: - inFlight/busy could stay latched if authenticateAsync hung when called mid active↔inactive transition → gate tryUnlock on AppState 'active' and release the latch on background (iOS tears down the sheet anyway). - foreground recovery missed background→inactive→active (prev was 'inactive' at the active event) → track "was backgrounded since last active" instead, so re-prompt fires reliably (this is why only hard-quit recovered it). The Face ID sheet's own active→inactive→active no longer re-triggers (only real 'background' arms the flag). - appLock.authenticate wraps authenticateAsync in try/catch so a native reject always settles (the LockScreen finally relies on it). cancelAuthenticate() is Android-only (no iOS native impl) — fix works by prevention + self-heal, not cancellation. Frontend-only; needs a native rebuild, no deploy. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
189 lines
6.8 KiB
TypeScript
189 lines
6.8 KiB
TypeScript
import { useCallback, useEffect, useRef, useState } from 'react';
|
|
import { Alert, Animated, AppState, Image, Text, TouchableOpacity, View } from 'react-native';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useRouter } from 'expo-router';
|
|
import { useAppLockStore } from '../stores/appLock';
|
|
import { useAuthStore } from '../stores/auth';
|
|
|
|
/**
|
|
* Vollbild-Overlay, das den App-Inhalt verdeckt solange die App-Sperre aktiv und
|
|
* `locked` ist (siehe AppLockGate). Beim Mount — und jedes Mal wenn man aus dem
|
|
* Hintergrund zur noch-gesperrten App zurückkommt — wird automatisch der
|
|
* Face-ID/Touch-ID/Passcode-Prompt ausgelöst; schlägt er fehl oder bricht der
|
|
* User ab, bleibt der „Entsperren"-Button stehen.
|
|
*
|
|
* iOS-Freeze-Falle (vormals: Screen blieb hängen, nur Hard-Quit half):
|
|
* 1. Foreground läuft als background→inactive→active. Würde man nur auf
|
|
* „prev === 'background'" prüfen, verschluckt das intermediäre 'inactive' den
|
|
* Trigger → kein Re-Prompt bei Rückkehr → der Screen bleibt „tot". Deshalb
|
|
* merken wir, ob wir seit dem letzten 'active' ÜBERHAUPT im Hintergrund waren.
|
|
* 2. Der Face-ID-Sheet selbst schickt die App active→inactive→active. Dieses
|
|
* 'inactive' darf NICHT als „war im Hintergrund" zählen (sonst Re-Prompt-Loop
|
|
* direkt nach Abbruch) — nur echtes 'background' setzt das Flag.
|
|
* 3. evaluatePolicy() während einer active↔inactive-Transition kann nativ hängen
|
|
* bleiben und den Prompt nie auflösen → inFlight/busy würden für immer
|
|
* latchen. Gegenmittel: nur prompten wenn die App hart 'active' ist, und beim
|
|
* Backgrounden den Latch zwangsweise freigeben (iOS reißt den Sheet dabei eh
|
|
* ab), damit der Re-Prompt bei Rückkehr garantiert sauber startet.
|
|
* `cancelAuthenticate()` hilft hier NICHT — es ist Android-only (kein iOS-Nativ).
|
|
*
|
|
* „Abmelden" unten ist die Notausfahrt: clear't die Session → beim nächsten Start
|
|
* gibt es keine Session → keine Sperre → frischer Login. Verhindert ein echtes
|
|
* Aussperren falls Biometrie + Passcode versagen.
|
|
*/
|
|
export function LockScreen() {
|
|
const { t } = useTranslation();
|
|
const router = useRouter();
|
|
const authenticate = useAppLockStore((s) => s.authenticate);
|
|
const signOut = useAuthStore((s) => s.signOut);
|
|
const [busy, setBusy] = useState(false);
|
|
const inFlight = useRef(false);
|
|
|
|
// dezenter Atem-Puls auf dem Icon (matcht den Splash-Vibe, ohne dessen ganze Choreo)
|
|
const pulse = useRef(new Animated.Value(1)).current;
|
|
useEffect(() => {
|
|
Animated.loop(
|
|
Animated.sequence([
|
|
Animated.timing(pulse, { toValue: 1.04, duration: 1300, useNativeDriver: true }),
|
|
Animated.timing(pulse, { toValue: 1, duration: 1300, useNativeDriver: true }),
|
|
]),
|
|
).start();
|
|
}, [pulse]);
|
|
|
|
const tryUnlock = useCallback(async () => {
|
|
// Nur prompten wenn die App wirklich vorne ist. Ein evaluatePolicy()-Call
|
|
// während einer active↔inactive-Transition kann nativ hängen bleiben und den
|
|
// Prompt nie auflösen → Screen friert ein (Falle 3 oben).
|
|
if (AppState.currentState !== 'active') return;
|
|
if (inFlight.current) return;
|
|
inFlight.current = true;
|
|
setBusy(true);
|
|
try {
|
|
await authenticate(t('applock.prompt'));
|
|
} finally {
|
|
inFlight.current = false;
|
|
setBusy(false);
|
|
}
|
|
}, [authenticate, t]);
|
|
|
|
// Auto-Prompt: beim ersten aktiven Erscheinen + jeder Rückkehr aus dem
|
|
// Hintergrund. Eine einzige Quelle der Wahrheit für den AppState (siehe die drei
|
|
// iOS-Fallen im Doc-Block oben).
|
|
useEffect(() => {
|
|
let wasBackground = AppState.currentState !== 'active';
|
|
|
|
// Kaltstart/aktiv gemountet → einmal prompten. Lag die App beim Mount im
|
|
// Hintergrund/inactive, übernimmt der Listener beim nächsten 'active'.
|
|
if (AppState.currentState === 'active') tryUnlock();
|
|
|
|
const sub = AppState.addEventListener('change', (next) => {
|
|
if (next === 'background') {
|
|
wasBackground = true;
|
|
// Sicherheitsnetz gegen einen hängenden nativen Prompt: Latch hart
|
|
// freigeben (iOS hat den Face-ID-Sheet beim Backgrounden ohnehin abgerissen).
|
|
inFlight.current = false;
|
|
setBusy(false);
|
|
} else if (next === 'active' && wasBackground) {
|
|
wasBackground = false;
|
|
tryUnlock();
|
|
}
|
|
});
|
|
return () => sub.remove();
|
|
}, [tryUnlock]);
|
|
|
|
function handleSignOut() {
|
|
Alert.alert(t('applock.signOut_title'), t('applock.signOut_body'), [
|
|
{ text: t('common.cancel'), style: 'cancel' },
|
|
{
|
|
text: t('auth.signOut'),
|
|
style: 'destructive',
|
|
onPress: async () => {
|
|
await signOut();
|
|
router.replace('/');
|
|
},
|
|
},
|
|
]);
|
|
}
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
backgroundColor: '#0f172a',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
paddingHorizontal: 32,
|
|
gap: 24,
|
|
}}
|
|
>
|
|
<StatusBar style="light" />
|
|
<Animated.View style={{ transform: [{ scale: pulse }] }}>
|
|
<Image
|
|
source={require('../assets/icon.png')}
|
|
style={{ width: 96, height: 96, borderRadius: 22 }}
|
|
resizeMode="contain"
|
|
/>
|
|
</Animated.View>
|
|
|
|
<View style={{ alignItems: 'center', gap: 8 }}>
|
|
<Text
|
|
style={{
|
|
fontFamily: 'Nunito_800ExtraBold',
|
|
fontSize: 24,
|
|
color: '#ffffff',
|
|
textAlign: 'center',
|
|
}}
|
|
>
|
|
{t('applock.title')}
|
|
</Text>
|
|
<Text
|
|
style={{
|
|
fontFamily: 'Nunito_400Regular',
|
|
fontSize: 14,
|
|
color: 'rgba(255,255,255,0.55)',
|
|
textAlign: 'center',
|
|
lineHeight: 20,
|
|
}}
|
|
>
|
|
{t('applock.subtitle')}
|
|
</Text>
|
|
</View>
|
|
|
|
<TouchableOpacity
|
|
onPress={tryUnlock}
|
|
disabled={busy}
|
|
activeOpacity={0.8}
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 10,
|
|
backgroundColor: '#6366f1',
|
|
paddingVertical: 14,
|
|
paddingHorizontal: 28,
|
|
borderRadius: 14,
|
|
opacity: busy ? 0.6 : 1,
|
|
}}
|
|
>
|
|
<Ionicons name="lock-open-outline" size={18} color="#ffffff" />
|
|
<Text style={{ fontFamily: 'Nunito_700Bold', fontSize: 16, color: '#ffffff' }}>
|
|
{t('applock.unlock')}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
|
|
<TouchableOpacity onPress={handleSignOut} activeOpacity={0.6} style={{ marginTop: 8 }}>
|
|
<Text
|
|
style={{
|
|
fontFamily: 'Nunito_600SemiBold',
|
|
fontSize: 13,
|
|
color: 'rgba(255,255,255,0.35)',
|
|
}}
|
|
>
|
|
{t('auth.signOut')}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
}
|