AddMacSheet + AddWindowsSheet now use FormSheet instead of the old KeyboardAwareSheet. Steps with no TextInput disable growWithKeyboard; Step 2 (long onboarding list) gets an internal ScrollView so content is scrollable within the sheet cap. Sheet heights converted from fixed px to initialHeightPct fractions. KeyboardAwareSheet.tsx deleted — no remaining consumers. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
450 lines
12 KiB
TypeScript
450 lines
12 KiB
TypeScript
import {
|
|
ActivityIndicator,
|
|
Alert,
|
|
Linking,
|
|
ScrollView,
|
|
TouchableOpacity,
|
|
Text,
|
|
TextInput,
|
|
View,
|
|
} from 'react-native';
|
|
import { useState } from 'react';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { useTranslation } from 'react-i18next';
|
|
import * as Haptics from 'expo-haptics';
|
|
import { useColors } from '../../lib/theme';
|
|
import { FormSheet } from '../FormSheet';
|
|
import { RiveAvatar } from '../RiveAvatar';
|
|
import { useProtectedDevicesStore } from '../../stores/protectedDevices';
|
|
import { useRouter } from 'expo-router';
|
|
|
|
// TODO lyra-persona: review windows_lyra_intro + windows_step_* body strings for coach tone
|
|
|
|
type Step = 1 | 2 | 3;
|
|
|
|
interface StepItem {
|
|
titleKey: string;
|
|
bodyKey: string;
|
|
icon: React.ComponentProps<typeof Ionicons>['name'];
|
|
}
|
|
|
|
const STEPS: StepItem[] = [
|
|
{ titleKey: 'devices.windows_step_1_title', bodyKey: 'devices.windows_step_1_body', icon: 'download-outline' },
|
|
{ titleKey: 'devices.windows_step_2_title', bodyKey: 'devices.windows_step_2_body', icon: 'document-outline' },
|
|
{ titleKey: 'devices.windows_step_3_title', bodyKey: 'devices.windows_step_3_body', icon: 'shield-checkmark-outline' },
|
|
{ titleKey: 'devices.windows_step_4_title', bodyKey: 'devices.windows_step_4_body', icon: 'wifi-outline' },
|
|
{ titleKey: 'devices.windows_step_5_title', bodyKey: 'devices.windows_step_5_body', icon: 'checkmark-circle-outline' },
|
|
];
|
|
|
|
export function AddWindowsSheet({
|
|
visible,
|
|
onClose,
|
|
}: {
|
|
visible: boolean;
|
|
onClose: () => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const colors = useColors();
|
|
const router = useRouter();
|
|
const { enroll, confirmInstalled, enrolling } = useProtectedDevicesStore();
|
|
|
|
const [step, setStep] = useState<Step>(1);
|
|
const [label, setLabel] = useState(t('devices.windows_label_default'));
|
|
const [labelError, setLabelError] = useState('');
|
|
const [enrollResult, setEnrollResult] = useState<{ deviceId: string; downloadUrl: string } | null>(null);
|
|
const [confirming, setConfirming] = useState(false);
|
|
|
|
function reset() {
|
|
setStep(1);
|
|
setLabel(t('devices.windows_label_default'));
|
|
setLabelError('');
|
|
setEnrollResult(null);
|
|
setConfirming(false);
|
|
}
|
|
|
|
function handleClose() {
|
|
reset();
|
|
onClose();
|
|
}
|
|
|
|
async function handlePrepare() {
|
|
const trimmed = label.trim();
|
|
if (!trimmed) {
|
|
setLabelError(t('devices.windows_label_question'));
|
|
return;
|
|
}
|
|
if (trimmed.length > 32) {
|
|
setLabelError(t('devices.windows_label_question'));
|
|
return;
|
|
}
|
|
setLabelError('');
|
|
try {
|
|
const result = await enroll(trimmed, 'windows');
|
|
setEnrollResult(result);
|
|
setStep(2);
|
|
} catch {
|
|
Alert.alert(t('common.error'), t('common.unknown_error'));
|
|
}
|
|
}
|
|
|
|
async function handleConfirmInstalled() {
|
|
if (!enrollResult) return;
|
|
setConfirming(true);
|
|
try {
|
|
await confirmInstalled(enrollResult.deviceId);
|
|
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success).catch(() => {});
|
|
setStep(3);
|
|
} catch {
|
|
Alert.alert(t('common.error'), t('common.unknown_error'));
|
|
} finally {
|
|
setConfirming(false);
|
|
}
|
|
}
|
|
|
|
function handleDownload() {
|
|
if (!enrollResult?.downloadUrl) return;
|
|
Linking.openURL(enrollResult.downloadUrl).catch(() => {});
|
|
}
|
|
|
|
function handleNeedHelp() {
|
|
handleClose();
|
|
router.push('/coach');
|
|
}
|
|
|
|
const sheetTitle =
|
|
step === 1
|
|
? t('devices.windows_label_question')
|
|
: step === 2
|
|
? t('devices.windows_download_button')
|
|
: t('devices.windows_success_title');
|
|
|
|
const initialHeightPct = step === 1 ? 0.42 : step === 2 ? 0.74 : 0.52;
|
|
|
|
return (
|
|
<FormSheet
|
|
visible={visible}
|
|
onClose={handleClose}
|
|
title={sheetTitle}
|
|
initialHeightPct={initialHeightPct}
|
|
growWithKeyboard={step === 1}
|
|
>
|
|
{step === 1 && (
|
|
<WindowsStep1LabelContent
|
|
label={label}
|
|
setLabel={setLabel}
|
|
labelError={labelError}
|
|
onPrepare={handlePrepare}
|
|
enrolling={enrolling}
|
|
colors={colors}
|
|
t={t}
|
|
/>
|
|
)}
|
|
{step === 2 && (
|
|
<WindowsStep2OnboardingContent
|
|
onDownload={handleDownload}
|
|
onConfirmInstalled={handleConfirmInstalled}
|
|
onNeedHelp={handleNeedHelp}
|
|
confirming={confirming}
|
|
colors={colors}
|
|
t={t}
|
|
/>
|
|
)}
|
|
{step === 3 && (
|
|
<WindowsStep3SuccessContent
|
|
onClose={handleClose}
|
|
colors={colors}
|
|
t={t}
|
|
/>
|
|
)}
|
|
</FormSheet>
|
|
);
|
|
}
|
|
|
|
function WindowsStep1LabelContent({
|
|
label,
|
|
setLabel,
|
|
labelError,
|
|
onPrepare,
|
|
enrolling,
|
|
colors,
|
|
t,
|
|
}: {
|
|
label: string;
|
|
setLabel: (v: string) => void;
|
|
labelError: string;
|
|
onPrepare: () => void;
|
|
enrolling: boolean;
|
|
colors: ReturnType<typeof useColors>;
|
|
t: (k: string) => string;
|
|
}) {
|
|
return (
|
|
<View style={{ paddingHorizontal: 20, paddingTop: 8, paddingBottom: 16, gap: 16 }}>
|
|
<TextInput
|
|
value={label}
|
|
onChangeText={setLabel}
|
|
placeholder={t('devices.windows_label_placeholder')}
|
|
placeholderTextColor={colors.textMuted}
|
|
maxLength={32}
|
|
returnKeyType="done"
|
|
onSubmitEditing={onPrepare}
|
|
style={{
|
|
fontSize: 16,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_400Regular',
|
|
borderWidth: 1,
|
|
borderColor: labelError ? colors.error : colors.border,
|
|
borderRadius: 12,
|
|
paddingHorizontal: 14,
|
|
paddingVertical: 14,
|
|
backgroundColor: colors.surface,
|
|
}}
|
|
/>
|
|
{labelError ? (
|
|
<Text style={{ fontSize: 12, color: colors.error, fontFamily: 'Nunito_400Regular' }}>
|
|
{labelError}
|
|
</Text>
|
|
) : null}
|
|
|
|
<TouchableOpacity
|
|
onPress={onPrepare}
|
|
disabled={enrolling}
|
|
activeOpacity={0.7}
|
|
style={{
|
|
backgroundColor: colors.brandOrange,
|
|
borderRadius: 14,
|
|
paddingVertical: 16,
|
|
alignItems: 'center',
|
|
opacity: enrolling ? 0.7 : 1,
|
|
}}
|
|
>
|
|
{enrolling ? (
|
|
<ActivityIndicator color="#fff" />
|
|
) : (
|
|
<Text style={{ fontSize: 16, color: '#fff', fontFamily: 'Nunito_700Bold' }}>
|
|
{t('devices.prepare_profile')}
|
|
</Text>
|
|
)}
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
function WindowsStep2OnboardingContent({
|
|
onDownload,
|
|
onConfirmInstalled,
|
|
onNeedHelp,
|
|
confirming,
|
|
colors,
|
|
t,
|
|
}: {
|
|
onDownload: () => void;
|
|
onConfirmInstalled: () => void;
|
|
onNeedHelp: () => void;
|
|
confirming: boolean;
|
|
colors: ReturnType<typeof useColors>;
|
|
t: (k: string) => string;
|
|
}) {
|
|
return (
|
|
<ScrollView
|
|
style={{ flex: 1 }}
|
|
contentContainerStyle={{ paddingHorizontal: 20, paddingTop: 4, paddingBottom: 16, gap: 16 }}
|
|
showsVerticalScrollIndicator={false}
|
|
keyboardShouldPersistTaps="handled"
|
|
>
|
|
{/* Lyra intro card */}
|
|
<View
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'flex-start',
|
|
gap: 12,
|
|
backgroundColor: colors.surfaceElevated,
|
|
borderRadius: 14,
|
|
padding: 14,
|
|
}}
|
|
>
|
|
<RiveAvatar emotion="empathy" size="sm" />
|
|
<Text
|
|
style={{
|
|
flex: 1,
|
|
fontSize: 13,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_400Regular',
|
|
lineHeight: 19,
|
|
}}
|
|
>
|
|
{t('devices.windows_lyra_intro')}
|
|
</Text>
|
|
</View>
|
|
|
|
{/* 5-step list */}
|
|
<View style={{ gap: 12 }}>
|
|
{STEPS.map((item, idx) => (
|
|
<View
|
|
key={idx}
|
|
style={{
|
|
flexDirection: 'row',
|
|
alignItems: 'flex-start',
|
|
gap: 10,
|
|
}}
|
|
>
|
|
<View
|
|
style={{
|
|
width: 32,
|
|
height: 32,
|
|
borderRadius: 10,
|
|
backgroundColor: 'rgba(0,122,255,0.1)',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
flexShrink: 0,
|
|
}}
|
|
>
|
|
<Ionicons name={item.icon} size={16} color={colors.brandOrange} />
|
|
</View>
|
|
<View style={{ flex: 1, gap: 2 }}>
|
|
<Text style={{ fontSize: 13, color: colors.text, fontFamily: 'Nunito_700Bold' }}>
|
|
{t(item.titleKey)}
|
|
</Text>
|
|
<Text
|
|
style={{
|
|
fontSize: 12,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
lineHeight: 17,
|
|
}}
|
|
>
|
|
{t(item.bodyKey)}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
))}
|
|
</View>
|
|
|
|
{/* Download button */}
|
|
<TouchableOpacity
|
|
onPress={onDownload}
|
|
activeOpacity={0.7}
|
|
style={{
|
|
backgroundColor: colors.brandOrange,
|
|
borderRadius: 14,
|
|
paddingVertical: 16,
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
gap: 8,
|
|
}}
|
|
>
|
|
<Ionicons name="download-outline" size={18} color="#fff" />
|
|
<Text style={{ fontSize: 16, color: '#fff', fontFamily: 'Nunito_700Bold' }}>
|
|
{t('devices.windows_download_button')}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
|
|
{/* Confirm installed */}
|
|
<TouchableOpacity
|
|
onPress={onConfirmInstalled}
|
|
disabled={confirming}
|
|
activeOpacity={0.7}
|
|
style={{
|
|
borderWidth: 1.5,
|
|
borderColor: colors.brandOrange,
|
|
borderRadius: 14,
|
|
paddingVertical: 14,
|
|
alignItems: 'center',
|
|
opacity: confirming ? 0.7 : 1,
|
|
}}
|
|
>
|
|
{confirming ? (
|
|
<ActivityIndicator color={colors.brandOrange} />
|
|
) : (
|
|
<Text style={{ fontSize: 15, color: colors.brandOrange, fontFamily: 'Nunito_600SemiBold' }}>
|
|
{t('devices.confirm_installed')}
|
|
</Text>
|
|
)}
|
|
</TouchableOpacity>
|
|
|
|
{/* Need help */}
|
|
<TouchableOpacity
|
|
onPress={onNeedHelp}
|
|
activeOpacity={0.5}
|
|
style={{ alignItems: 'center' }}
|
|
>
|
|
<Text
|
|
style={{
|
|
fontSize: 13,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
textDecorationLine: 'underline',
|
|
}}
|
|
>
|
|
{t('devices.need_help')}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</ScrollView>
|
|
);
|
|
}
|
|
|
|
function WindowsStep3SuccessContent({
|
|
onClose,
|
|
colors,
|
|
t,
|
|
}: {
|
|
onClose: () => void;
|
|
colors: ReturnType<typeof useColors>;
|
|
t: (k: string) => string;
|
|
}) {
|
|
return (
|
|
<View
|
|
style={{
|
|
paddingHorizontal: 20,
|
|
paddingTop: 16,
|
|
paddingBottom: 16,
|
|
alignItems: 'center',
|
|
gap: 16,
|
|
}}
|
|
>
|
|
<RiveAvatar emotion="happy" size="md" />
|
|
|
|
<View style={{ alignItems: 'center', gap: 6 }}>
|
|
<Text
|
|
style={{
|
|
fontSize: 22,
|
|
color: colors.text,
|
|
fontFamily: 'Nunito_700Bold',
|
|
textAlign: 'center',
|
|
}}
|
|
>
|
|
{t('devices.windows_success_title')}
|
|
</Text>
|
|
<Text
|
|
style={{
|
|
fontSize: 14,
|
|
color: colors.textMuted,
|
|
fontFamily: 'Nunito_400Regular',
|
|
textAlign: 'center',
|
|
lineHeight: 20,
|
|
}}
|
|
>
|
|
{t('devices.windows_success_body')}
|
|
</Text>
|
|
</View>
|
|
|
|
<TouchableOpacity
|
|
onPress={onClose}
|
|
activeOpacity={0.7}
|
|
style={{
|
|
backgroundColor: colors.brandOrange,
|
|
borderRadius: 14,
|
|
paddingVertical: 16,
|
|
paddingHorizontal: 40,
|
|
alignItems: 'center',
|
|
alignSelf: 'stretch',
|
|
}}
|
|
>
|
|
<Text style={{ fontSize: 16, color: '#fff', fontFamily: 'Nunito_700Bold' }}>
|
|
{t('common.ok')}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
}
|