130 lines
5.6 KiB
TypeScript
130 lines
5.6 KiB
TypeScript
import React, { useMemo, useState } from 'react';
|
|
import { StyleSheet, Text, TouchableOpacity, View } from 'react-native';
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
import { useRouter } from 'expo-router';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { usePostHog } from 'posthog-react-native';
|
|
import { ThemeBackdrop } from '../../components/ThemeBackdrop';
|
|
import { useColors } from '../../constants/Colors';
|
|
import { useApp } from '../../context/AppContext';
|
|
import { OnboardingProgressService } from '../../services/onboardingProgressService';
|
|
|
|
const EXPERIENCE_OPTIONS = [
|
|
{ id: 'beginner', icon: 'leaf-outline' as const },
|
|
{ id: 'intermediate', icon: 'sunny-outline' as const },
|
|
{ id: 'advanced', icon: 'flask-outline' as const },
|
|
];
|
|
|
|
export default function OnboardingExperienceScreen() {
|
|
const router = useRouter();
|
|
const posthog = usePostHog();
|
|
const { session, isDarkMode, colorPalette, t } = useApp();
|
|
const colors = useColors(isDarkMode, colorPalette);
|
|
const [selectedLevel, setSelectedLevel] = useState<string | null>(null);
|
|
|
|
const levelLabels = useMemo(
|
|
() => ({
|
|
beginner: t.experienceOptionBeginner,
|
|
intermediate: t.experienceOptionIntermediate,
|
|
advanced: t.experienceOptionAdvanced,
|
|
}),
|
|
[t.experienceOptionAdvanced, t.experienceOptionBeginner, t.experienceOptionIntermediate],
|
|
);
|
|
|
|
const finish = (level: string | null) => {
|
|
if (session?.userId && level) {
|
|
OnboardingProgressService.setExperienceLevel(session.userId, level);
|
|
}
|
|
|
|
posthog.capture('onboarding_experience_completed', {
|
|
experience_level: level ?? 'skipped',
|
|
});
|
|
router.replace('/(tabs)');
|
|
};
|
|
|
|
return (
|
|
<View style={[styles.container, { backgroundColor: colors.background }]}>
|
|
<ThemeBackdrop colors={colors} />
|
|
<SafeAreaView style={styles.safeArea} edges={['top', 'left', 'right', 'bottom']}>
|
|
<View style={styles.header}>
|
|
<View style={[styles.headerIcon, { backgroundColor: colors.primarySoft }]}>
|
|
<Ionicons name="sparkles-outline" size={26} color={colors.primaryDark} />
|
|
</View>
|
|
<Text style={[styles.title, { color: colors.text }]}>{t.experienceOnboardingTitle}</Text>
|
|
<Text style={[styles.subtitle, { color: colors.textSecondary }]}>{t.experienceOnboardingSubtitle}</Text>
|
|
</View>
|
|
|
|
<View style={styles.options}>
|
|
{EXPERIENCE_OPTIONS.map((option) => {
|
|
const isActive = selectedLevel === option.id;
|
|
return (
|
|
<TouchableOpacity
|
|
key={option.id}
|
|
style={[
|
|
styles.optionCard,
|
|
{
|
|
backgroundColor: isActive ? colors.primarySoft : colors.surface,
|
|
borderColor: isActive ? colors.primary : colors.border,
|
|
},
|
|
]}
|
|
onPress={() => setSelectedLevel(option.id)}
|
|
activeOpacity={0.85}
|
|
>
|
|
<View style={[styles.optionIcon, { backgroundColor: isActive ? colors.primary : colors.surfaceMuted }]}>
|
|
<Ionicons name={option.icon} size={18} color={isActive ? colors.onPrimary : colors.textMuted} />
|
|
</View>
|
|
<Text style={[styles.optionLabel, { color: colors.text }]}>{levelLabels[option.id as keyof typeof levelLabels]}</Text>
|
|
{isActive && <Ionicons name="checkmark-circle" size={18} color={colors.primary} />}
|
|
</TouchableOpacity>
|
|
);
|
|
})}
|
|
</View>
|
|
|
|
<View style={styles.footer}>
|
|
<TouchableOpacity
|
|
style={[styles.secondaryBtn, { borderColor: colors.borderStrong, backgroundColor: colors.surface }]}
|
|
onPress={() => finish(null)}
|
|
>
|
|
<Text style={[styles.secondaryBtnText, { color: colors.text }]}>{t.experienceOnboardingSkip}</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity
|
|
style={[styles.primaryBtn, { backgroundColor: selectedLevel ? colors.primary : colors.surfaceMuted }]}
|
|
onPress={() => finish(selectedLevel)}
|
|
disabled={!selectedLevel}
|
|
>
|
|
<Text style={[styles.primaryBtnText, { color: selectedLevel ? colors.onPrimary : colors.textMuted }]}>
|
|
{t.experienceOnboardingContinue}
|
|
</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
</SafeAreaView>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: { flex: 1 },
|
|
safeArea: { flex: 1, paddingHorizontal: 20, paddingTop: 24, paddingBottom: 20 },
|
|
header: { alignItems: 'center', gap: 10, marginBottom: 28 },
|
|
headerIcon: { width: 64, height: 64, borderRadius: 32, alignItems: 'center', justifyContent: 'center' },
|
|
title: { fontSize: 28, fontWeight: '800', textAlign: 'center', lineHeight: 32 },
|
|
subtitle: { fontSize: 14, textAlign: 'center', lineHeight: 20, maxWidth: 320 },
|
|
options: { gap: 12, flex: 1 },
|
|
optionCard: {
|
|
minHeight: 64,
|
|
borderRadius: 18,
|
|
borderWidth: 1.5,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
paddingHorizontal: 16,
|
|
gap: 12,
|
|
},
|
|
optionIcon: { width: 36, height: 36, borderRadius: 18, alignItems: 'center', justifyContent: 'center' },
|
|
optionLabel: { flex: 1, fontSize: 15, fontWeight: '600' },
|
|
footer: { flexDirection: 'row', gap: 12, marginTop: 16 },
|
|
secondaryBtn: { flex: 1, height: 52, borderRadius: 16, borderWidth: 1.5, alignItems: 'center', justifyContent: 'center' },
|
|
secondaryBtnText: { fontSize: 15, fontWeight: '600' },
|
|
primaryBtn: { flex: 1.2, height: 52, borderRadius: 16, alignItems: 'center', justifyContent: 'center' },
|
|
primaryBtnText: { fontSize: 15, fontWeight: '700' },
|
|
});
|