Verif Choice Sheet on display_name_screen drives the user into either the verified or anonymous onboarding sub-flow. ESP screen (12 chips, multi-select, info-only) + USP screen are shared between both branches; selections persist through to chat_sessions.topics on session start. OTP-blocked popup (HaloPopup) listens for the four real OTP-rate-limit error codes (OTP_RATE_LIMIT_PHONE, OTP_RATE_LIMIT_IP, OTP_COOLDOWN, OTP_ATTEMPTS_EXCEEDED) and drops the user onto the anonymous path with ESP/USP state preserved. Auth-providers gating replaces the --dart-define=ENABLE_SOCIAL_AUTH build flag with server-driven discovery. authProvidersProvider preloads GET /api/shared/auth-providers at cold start; welcome/register/ force-register screens render Google/Apple buttons only when the backend reports enabled:true. Falls back to phone-OTP-only when both providers are off. social_auth_enabled.dart deleted; client_app/CLAUDE.md updated to reflect the new gating contract. Mitra app: chat screen renders an ESP chip strip above the first message bubble when chat_sessions.topics is non-empty. Backend session.service.js getSessionById SELECTs cs.topics so the mitra side can read the customer's selected topics. Maestro flows 02_onboarding_verified.yaml + 03_onboarding_anon.yaml. Deviation from plan: plan referenced OTP error code 'otp_retry_exhausted'; real codes are OTP_RATE_LIMIT_*/OTP_COOLDOWN/OTP_ATTEMPTS_EXCEEDED - popup listens for all four. Plan said 'has_paid_first_session'; live endpoint returns 'has_consulted_before' - used the live field. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
106 lines
3.3 KiB
Dart
106 lines
3.3 KiB
Dart
import 'package:firebase_core/firebase_core.dart';
|
|
import 'package:firebase_messaging/firebase_messaging.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'core/api/api_client_provider.dart';
|
|
import 'core/auth/auth_notifier.dart';
|
|
import 'core/auth/auth_providers_provider.dart';
|
|
import 'core/chat/active_session_notifier.dart';
|
|
import 'core/chat/chat_notifier.dart';
|
|
import 'core/notifications/notification_service.dart';
|
|
import 'core/theme/halo_theme.dart';
|
|
import 'firebase_options.dart';
|
|
import 'router.dart';
|
|
|
|
void main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);
|
|
|
|
final messaging = FirebaseMessaging.instance;
|
|
await messaging.requestPermission();
|
|
|
|
runApp(const ProviderScope(child: App()));
|
|
}
|
|
|
|
class App extends ConsumerStatefulWidget {
|
|
const App({super.key});
|
|
|
|
@override
|
|
ConsumerState<App> createState() => _AppState();
|
|
}
|
|
|
|
class _AppState extends ConsumerState<App> {
|
|
bool _fcmRegistered = false;
|
|
bool _authProvidersPreloaded = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
// Phase 4: preload server-driven auth-provider gating once on cold start.
|
|
// Cached via @Riverpod(keepAlive: true) — subsequent reads are instant.
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
if (_authProvidersPreloaded) return;
|
|
_authProvidersPreloaded = true;
|
|
ref.read(authProvidersProvider.future);
|
|
});
|
|
}
|
|
|
|
void _registerFcmToken() {
|
|
if (_fcmRegistered) return;
|
|
_fcmRegistered = true;
|
|
Future(() async {
|
|
try {
|
|
final token = await FirebaseMessaging.instance.getToken();
|
|
if (token != null) {
|
|
await ref.read(apiClientProvider).post('/api/shared/device-token', data: {'token': token});
|
|
}
|
|
} catch (_) {
|
|
_fcmRegistered = false;
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
// FCM registration on auth.
|
|
ref.listen(authProvider, (prev, next) {
|
|
final data = next.valueOrNull;
|
|
if (data is AuthAuthenticatedData || data is AuthAnonymousData) {
|
|
_registerFcmToken();
|
|
} else {
|
|
// Logged out (or initial) — ensure the chat WS is closed.
|
|
ref.read(chatProvider.notifier).disconnect();
|
|
}
|
|
});
|
|
|
|
// Global chat WebSocket lifecycle: connect whenever the user has an
|
|
// active session, regardless of which screen is mounted. The chat screen
|
|
// only joins this connection — it doesn't own it. FCM remains the
|
|
// background-only fallback.
|
|
ref.listen(activeSessionProvider, (prev, next) {
|
|
final snapshot = next.valueOrNull;
|
|
final notifier = ref.read(chatProvider.notifier);
|
|
if (snapshot == null || !snapshot.hasSession) {
|
|
if (notifier.connectedSessionId != null) {
|
|
notifier.disconnect();
|
|
}
|
|
return;
|
|
}
|
|
final sessionId = snapshot.sessionId;
|
|
if (sessionId != null && notifier.connectedSessionId != sessionId) {
|
|
notifier.connectIfNotConnected(sessionId);
|
|
}
|
|
});
|
|
|
|
final router = ref.watch(routerProvider);
|
|
|
|
NotificationService.initialize(router);
|
|
|
|
return MaterialApp.router(
|
|
title: 'Halo Bestie',
|
|
theme: haloThemeData(),
|
|
routerConfig: router,
|
|
);
|
|
}
|
|
}
|