- Add phase3.2.md requirement: overlay UX, mitra activity log - Add phase3.2-plan.md implementation plan - Fix stale request validation: add GET /:sessionId/status endpoint - Fix notification tap flow: setIncomingFromNotification + onChatRequestTapped - IncomingRequestSheet shows stale message instead of auto-dismiss - Home screen validates on resume, shows immediately on fresh WS Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
92 lines
2.6 KiB
Dart
92 lines
2.6 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/status/status_notifier.dart';
|
|
import 'core/chat/chat_request_notifier.dart';
|
|
import 'core/notifications/notification_service.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> with WidgetsBindingObserver {
|
|
bool _fcmRegistered = false;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
WidgetsBinding.instance.addObserver(this);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
WidgetsBinding.instance.removeObserver(this);
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
void didChangeAppLifecycleState(AppLifecycleState state) {
|
|
if (state == AppLifecycleState.paused || state == AppLifecycleState.detached) {
|
|
ref.read(onlineStatusProvider.notifier).onAppPaused();
|
|
} else if (state == AppLifecycleState.resumed) {
|
|
ref.read(onlineStatusProvider.notifier).onAppResumed();
|
|
}
|
|
}
|
|
|
|
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) {
|
|
// Listen for auth changes to load status and register FCM
|
|
ref.listen(mitraAuthProvider, (prev, next) {
|
|
final data = next.valueOrNull;
|
|
if (data is MitraAuthAuthenticatedData) {
|
|
ref.read(onlineStatusProvider.notifier).load();
|
|
_registerFcmToken();
|
|
}
|
|
});
|
|
|
|
final router = ref.watch(routerProvider);
|
|
NotificationService.initialize(router);
|
|
NotificationService.onChatRequestTapped = (sessionId) {
|
|
ref.read(chatRequestProvider.notifier).setIncomingFromNotification(sessionId);
|
|
};
|
|
|
|
return MaterialApp.router(
|
|
title: 'Halo Bestie Mitra',
|
|
routerConfig: router,
|
|
);
|
|
}
|
|
}
|