Profile (3 Iterationen):
- app/profile/index.tsx + components/profile/* (Header, StatsBar, Approved,
Streak, UrgeStats, Demographics, DigaMissionBanner)
- echte Live-Daten via useMe-Hook (Avatar/Nickname/Plan/Email/Provider-Pill)
- Demographics mit echten Inputs (TextInput + Bottom-Sheet-Selects),
debounced auto-save, Pro-Trial-Reward-Banner, Mikro-Why-Texte
- Approved Domains als plain integer (KEIN Plan-Slot/Cap)
- Friendly Hint-Text statt Progress-Bar (alignSelf:'stretch' Pattern)
- StatsBar zentriert mit 3 prominenten Cards (vertikale Dividers)
- Cooldown-Timeline als Liste mit 1px-Rail
- ApprovedDomainsList: Collapse-Chevron rechts in Title-Row (Pattern-Fix)
- Eigene vs fremde Profile-Ansicht streng getrennt (DSGVO/Anonymität)
Header-Dropdown (kein 3-Punkte-Icon):
- Avatar als Trigger im AppHeader (User-Wunsch)
- Custom-Modal beide Plattformen, Card-Style
- SOS prominent oben (nur Wort 'SOS' rot, Tagline 'wir sind für dich da' klein darunter)
- Profile/Settings/Games/Debug(__DEV__)/Logout
- Logout neutral (nicht rot — Recovery-tonal)
- AppHeader: neue showBack + title Props für Sub-Routes
Routes (Stub bis Phase C):
- app/profile/[userId].tsx — anonym (nur public-Stats)
- app/settings.tsx — Coming-Soon-Skeleton
- app/games.tsx — Standalone Games-Page mit GameCard-Grid
- app/debug.tsx — __DEV__-only
Game-Picker (Migration aus Nuxt):
- components/games/{GameCard, StarRating, GameRatingStars}
- 2x2 Grid, 56pt SVG-Icons (inline aus components/urge/gameSvgs.ts)
- Live-Backend /api/games/ratings (silent-fail)
- Re-use UrgeGames.tsx ohne TTS/Cooldown-Loop
UI-Pattern-Fixes (alle aus screenshot-User-Feedback 2026-05-07):
- Snake-Bug (food-pellet React-18-StrictMode-Reducer-double-call) gefixt
- Snake-Buttons platform-native (iOS-blue / Android-ripple)
- Tetris-Margins (16px paddingHorizontal)
- PostCard-Buttons Apple-44pt-Hit-Area (Image-Select, Image-Remove,
Cancel, Share-Pill — via hitSlop)
- ProfileHeader Demographics-Hint: alignSelf:'stretch' Pattern
- ApprovedDomainsList Collapse: Title flex:1 + Chevron rechts
- ProtectionDetailsSheet FAQ-Items: alignSelf:'stretch' defensive
- AppHeader Back-Button: neue showBack-Prop + chevron-back
Memory + Plan-Docs:
- 17 Memory-Files dokumentieren System-Wissen + Patterns
- ops/{CUTOVER, UI_MIGRATION, PROFILE_PAGE, WEBHOOK, GAMES_1V1,
RELEASE_READINESS, TESTING_STATE, MAESTRO_HOSTING}_*.md
Backend bleibt unverändert (Tier-LLM + Nickname + sort:latency
sind seit gestern deployed).
120 lines
4.7 KiB
TypeScript
120 lines
4.7 KiB
TypeScript
import { useState } from 'react';
|
|
import { View, Text, Pressable, Image } from 'react-native';
|
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { useRouter, type RelativePathString } from 'expo-router';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useAuthStore } from '../stores/auth';
|
|
import { useNotificationStore } from '../stores/notifications';
|
|
import { resolveAvatar } from '../lib/resolveAvatar';
|
|
import { useMe } from '../hooks/useMe';
|
|
import { NotificationsDropdown } from './NotificationsDropdown';
|
|
import { HeaderDropdownMenu } from './header/HeaderDropdownMenu';
|
|
|
|
type Props = {
|
|
notifCount?: number;
|
|
showBack?: boolean;
|
|
title?: string;
|
|
};
|
|
|
|
export function AppHeader({ notifCount, showBack, title }: Props = {}) {
|
|
const insets = useSafeAreaInsets();
|
|
const router = useRouter();
|
|
const { t } = useTranslation();
|
|
const { user } = useAuthStore();
|
|
const { me } = useMe();
|
|
const storeUnread = useNotificationStore((s) => s.unread);
|
|
const badge = notifCount ?? storeUnread;
|
|
const [notifOpen, setNotifOpen] = useState(false);
|
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
|
|
const firstName = (user?.user_metadata?.first_name as string | undefined) ?? '';
|
|
const lastName = (user?.user_metadata?.last_name as string | undefined) ?? '';
|
|
const email = user?.email ?? '';
|
|
const initials = (() => {
|
|
if (me?.nickname) return me.nickname.slice(0, 2).toUpperCase();
|
|
return ((firstName.charAt(0) + (lastName.charAt(0) || email.charAt(0))).toUpperCase() || '?');
|
|
})();
|
|
|
|
// Avatar: aus DB (`/api/auth/me` → profiles.avatar). Kann Hero-Avatar-ID
|
|
// ("spider"/"hulk"/...) ODER Custom-Photo-URL (https://... von Foto-Upload)
|
|
// sein. resolveAvatar handlet beide Fälle.
|
|
const avatarUrl = me ? resolveAvatar(me.avatar, me.nickname ?? '') : '';
|
|
const [avatarLoadFailed, setAvatarLoadFailed] = useState(false);
|
|
const showAvatarImage = !!avatarUrl && !avatarLoadFailed && !!me?.avatar;
|
|
|
|
const headerHeight = insets.top + 56;
|
|
|
|
return (
|
|
<View
|
|
className="bg-white border-b border-neutral-200"
|
|
style={{ paddingTop: insets.top }}
|
|
>
|
|
<View className="h-14 flex-row items-center justify-between px-5">
|
|
<View className="flex-row items-center" style={{ gap: 8 }}>
|
|
{showBack ? (
|
|
<Pressable
|
|
onPress={() => router.back()}
|
|
hitSlop={10}
|
|
className="w-9 h-9 rounded-full items-center justify-center"
|
|
style={({ pressed }) => ({ opacity: pressed ? 0.6 : 1, marginLeft: -8 })}
|
|
accessibilityLabel="Zurück"
|
|
>
|
|
<Ionicons name="chevron-back" size={22} color="#0a0a0a" />
|
|
</Pressable>
|
|
) : null}
|
|
<Text className="text-lg text-midnight-900 tracking-tight" style={{ fontFamily: 'Nunito_700Bold' }}>
|
|
{title ?? t('appHeader.appName')}
|
|
</Text>
|
|
</View>
|
|
|
|
<View className="flex-row items-center gap-1">
|
|
<Pressable
|
|
onPress={() => setNotifOpen(true)}
|
|
className="w-9 h-9 rounded-full bg-white items-center justify-center"
|
|
style={({ pressed }) => ({ opacity: pressed ? 0.7 : 1 })}
|
|
>
|
|
<Ionicons name="notifications-outline" size={18} color="#737373" />
|
|
{badge > 0 && (
|
|
<View className="absolute top-0 right-0 w-4 h-4 rounded-full bg-rebreak-500 items-center justify-center">
|
|
<Text className="text-white text-[9px]" style={{ fontFamily: 'Nunito_700Bold' }}>
|
|
{badge > 9 ? '9+' : String(badge)}
|
|
</Text>
|
|
</View>
|
|
)}
|
|
</Pressable>
|
|
|
|
{/* Avatar = Trigger für Dropdown-Menu (kein separates 3-Punkte-Icon) */}
|
|
<Pressable
|
|
onPress={() => setMenuOpen(true)}
|
|
className={`w-9 h-9 rounded-full items-center justify-center overflow-hidden ${showAvatarImage ? 'bg-neutral-100' : 'bg-rebreak-500'}`}
|
|
style={({ pressed }) => ({ opacity: pressed ? 0.7 : 1 })}
|
|
>
|
|
{showAvatarImage ? (
|
|
<Image
|
|
source={{ uri: avatarUrl }}
|
|
onError={() => setAvatarLoadFailed(true)}
|
|
style={{ width: 36, height: 36, borderRadius: 18 }}
|
|
/>
|
|
) : (
|
|
<Text className="text-white text-xs" style={{ fontFamily: 'Nunito_700Bold' }}>{initials}</Text>
|
|
)}
|
|
</Pressable>
|
|
|
|
<HeaderDropdownMenu
|
|
visible={menuOpen}
|
|
onClose={() => setMenuOpen(false)}
|
|
topOffset={headerHeight + 6}
|
|
/>
|
|
</View>
|
|
</View>
|
|
|
|
<NotificationsDropdown
|
|
visible={notifOpen}
|
|
onClose={() => setNotifOpen(false)}
|
|
topOffset={headerHeight}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|