Implemented systematic type safety improvements across the codebase to eliminate all 78 strict analysis errors: ## Phase 1: Quick Wins (Redux & Model Fixes) - Added explicit type annotations to Redux reducer parameters - Fixed copyWith() methods in FireNotification and YourLocation models with proper nullable types - Fixed BasicLocation field initializers with type casts (num to double) - Fixed context parameter inference in IntroPage and PrivacyPage - Regenerated .g.dart files with build_runner ## Phase 2: JSON Deserialization - Fixed homePage.dart Firebase message parameter casting (9 errors) - Fixed firesApi.dart JSON parsing: - Added explicit casts for num to double/int conversions - Fixed array iteration with proper List<dynamic> casting - Added return type annotation to objectIdFromJson() - Fixed nested JSON access in getMonitoredAreas() - Fixed globalFiresBottomStats.dart dynamic to int/String casting - Fixed locationUtils.dart string assignments ## Phase 3: Config & Redux Middleware - Fixed mainCommon.dart config map access with explicit String casts - Fixed mainProd.dart Sentry DSN casting - Fixed fetchDataMiddleware.dart: - Added Store<AppState>, String type annotations to createUser() - Added Function(YourLocation) type to subscribeViaApi callback - Added Exception type to catchError handler - Fixed fireMapReducer.dart restoreStatusAfterSave parameter type - Fixed persist files with Map<String, dynamic> type annotations ## Phase 4: Edge Cases - Fixed slider.dart method return types (Widget sizeText, Widget warningText) - Fixed mainDrawer.dart Key? parameter type annotation Result: 78 errors → 0 errors
306 lines
11 KiB
Dart
306 lines
11 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:comunes_flutter/comunes_flutter.dart';
|
|
import 'package:firebase_messaging/firebase_messaging.dart';
|
|
import 'package:fires_flutter/models/fireNotification.dart';
|
|
import 'package:fires_flutter/objectIdUtils.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_redux/flutter_redux.dart';
|
|
import 'package:get_it/get_it.dart';
|
|
import 'package:redux/redux.dart';
|
|
|
|
import 'activeFires.dart';
|
|
import 'colors.dart';
|
|
import 'fireAlert.dart';
|
|
import 'fireNotificationList.dart';
|
|
import 'firesSpinner.dart';
|
|
import 'generated/i18n.dart';
|
|
import 'mainDrawer.dart';
|
|
import 'models/appState.dart';
|
|
import 'redux/actions.dart';
|
|
|
|
class _ViewModel {
|
|
final bool isLoaded;
|
|
|
|
_ViewModel({required this.isLoaded});
|
|
|
|
@override
|
|
bool operator ==(Object other) =>
|
|
identical(this, other) ||
|
|
other is _ViewModel &&
|
|
runtimeType == other.runtimeType &&
|
|
isLoaded == other.isLoaded;
|
|
|
|
@override
|
|
int get hashCode => isLoaded.hashCode;
|
|
}
|
|
|
|
class HomePage extends StatefulWidget {
|
|
static const String routeName = '/home';
|
|
|
|
HomePage();
|
|
|
|
@override
|
|
_HomePageState createState() => _HomePageState();
|
|
}
|
|
|
|
class _HomePageState extends State<HomePage> {
|
|
final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
|
|
final Store<AppState> store = GetIt.instance<Store<AppState>>();
|
|
final List<FireNotification> newNotifications = [];
|
|
|
|
// Platform messages are asynchronous, so we initialize in an async method.
|
|
Future<Null> initConnectivity() async {
|
|
// Connectivity checking removed - no longer needed
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
// Firebase Messaging v5+ setup
|
|
_setupFirebaseMessaging();
|
|
_getFirebaseToken();
|
|
// initConnectivity removed - connectivity no longer tracked
|
|
}
|
|
|
|
void _setupFirebaseMessaging() {
|
|
// Request permission for notifications
|
|
_firebaseMessaging.requestPermission();
|
|
|
|
// Listen for messages when app is in foreground
|
|
FirebaseMessaging.onMessage.listen((RemoteMessage message) {
|
|
debugPrint(
|
|
"onMessage in fireApp (isLoaded: ${store.state.isLoaded}): $message");
|
|
if (message.data.isNotEmpty) {
|
|
final notif = _notifForMessage(message.data, store.state.isLoaded);
|
|
if (notif != null) {
|
|
_showItemDialog(message.data, notif);
|
|
}
|
|
}
|
|
});
|
|
|
|
// Listen for messages when app is opened from background
|
|
FirebaseMessaging.onMessageOpenedApp.listen((RemoteMessage message) {
|
|
debugPrint(
|
|
"onMessageOpenedApp (isLoaded: ${store.state.isLoaded}): $message");
|
|
if (message.data.isNotEmpty) {
|
|
_notifForMessage(message.data, store.state.isLoaded);
|
|
_navigateToItemDetail(message.data);
|
|
}
|
|
});
|
|
|
|
// Check if app was terminated and opened by notification tap
|
|
_firebaseMessaging.getInitialMessage().then((RemoteMessage? message) {
|
|
if (message != null) {
|
|
debugPrint("App opened by notification: $message");
|
|
if (message.data.isNotEmpty) {
|
|
_navigateToItemDetail(message.data);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
void _getFirebaseToken() {
|
|
_firebaseMessaging.getToken().then((String? token) {
|
|
if (token != null) {
|
|
store.dispatch(new OnUserTokenAction(token));
|
|
setState(() {});
|
|
}
|
|
});
|
|
}
|
|
|
|
final _homeFont = const TextStyle(
|
|
fontSize: 50.0,
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
final _btnFont = const TextStyle(
|
|
fontSize: 20.0,
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new StoreConnector<AppState, _ViewModel>(
|
|
distinct: true,
|
|
converter: (store) {
|
|
bool isLoaded = store.state.isLoaded;
|
|
if (isLoaded && newNotifications.isNotEmpty) {
|
|
newNotifications.forEach((notif) {
|
|
store.dispatch(new AddFireNotificationAction(notif));
|
|
});
|
|
newNotifications.clear();
|
|
}
|
|
return new _ViewModel(isLoaded: store.state.isLoaded);
|
|
},
|
|
builder: (context, view) {
|
|
return new Scaffold(
|
|
key: _scaffoldKey,
|
|
drawer: new MainDrawer(context, HomePage.routeName),
|
|
floatingActionButtonLocation:
|
|
FloatingActionButtonLocation.centerFloat,
|
|
floatingActionButton: Column(
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
children: <Widget>[
|
|
FloatingActionButton.extended(
|
|
elevation: 0.0,
|
|
onPressed: () {
|
|
Navigator.pushNamed(context, ActiveFiresPage.routeName);
|
|
},
|
|
label: Text(S.of(context).activeFires, style: _btnFont),
|
|
backgroundColor: fires600,
|
|
heroTag: 'activeFires',
|
|
icon: const Icon(Icons.whatshot, size: 32.0),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 16.0, bottom: 26.0),
|
|
child: FloatingActionButton.extended(
|
|
elevation: 0.0,
|
|
onPressed: () {
|
|
Navigator.pushNamed(context, FireAlert.routeName);
|
|
},
|
|
heroTag: 'notifyFire',
|
|
backgroundColor: fires600,
|
|
label: new Text(S.of(context).notifyAFire,
|
|
style: _btnFont),
|
|
icon:
|
|
const Icon(Icons.notifications_active, size: 32.0),
|
|
),
|
|
),
|
|
]),
|
|
body: !view.isLoaded
|
|
? new FiresSpinner()
|
|
: new SafeArea(
|
|
child: Center(
|
|
child: new CenteredColumn(children: <Widget>[
|
|
new Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: <Widget>[
|
|
new IconButton(
|
|
onPressed: () {
|
|
_scaffoldKey.currentState?.openDrawer();
|
|
},
|
|
icon: new Icon(Icons.menu,
|
|
size: 30.0, color: Colors.black38)),
|
|
]),
|
|
new Expanded(
|
|
child: new FractionallySizedBox(
|
|
alignment: FractionalOffset.center,
|
|
heightFactor: 0.7,
|
|
child: new Image.asset('images/logo-200.png',
|
|
fit: BoxFit.fitHeight))),
|
|
new Expanded(
|
|
child: new FractionallySizedBox(
|
|
alignment: FractionalOffset.topCenter,
|
|
heightFactor: 1.0,
|
|
child: new Column(
|
|
children: <Widget>[
|
|
new Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 10.0, horizontal: 20.0),
|
|
child: FittedBox(
|
|
child: new Text(S.of(context).appName,
|
|
maxLines: 2,
|
|
textAlign: TextAlign.center,
|
|
style: _homeFont),
|
|
fit: BoxFit.scaleDown,
|
|
)),
|
|
],
|
|
)))
|
|
])),
|
|
));
|
|
});
|
|
}
|
|
|
|
void _showDialog(String message) {
|
|
final context = _scaffoldKey.currentContext;
|
|
if (context == null) return;
|
|
showDialog<bool>(
|
|
context: context,
|
|
builder: (_) => new AlertDialog(
|
|
content: new Text(message),
|
|
actions: <Widget>[
|
|
new TextButton(
|
|
child: Text(S.of(context).CLOSE),
|
|
onPressed: () {
|
|
Navigator.pop(context);
|
|
},
|
|
),
|
|
],
|
|
));
|
|
}
|
|
|
|
void _showItemDialog(Map<String, dynamic> message, FireNotification notif) {
|
|
final context = _scaffoldKey.currentContext;
|
|
if (context == null) return;
|
|
showDialog<bool>(
|
|
context: context,
|
|
builder: (_) => _buildDialog(context, notif),
|
|
).then((bool? shouldNavigate) {
|
|
if (shouldNavigate == true) {
|
|
_navigateToItemDetail(message);
|
|
}
|
|
}).catchError((e) => print("$e"));
|
|
}
|
|
|
|
Widget _buildDialog(BuildContext context, FireNotification item) {
|
|
return new AlertDialog(
|
|
content: new Text(item.description),
|
|
actions: <Widget>[
|
|
new TextButton(
|
|
child: Text(S.of(context).CLOSE),
|
|
onPressed: () {
|
|
Navigator.pop(context, false);
|
|
},
|
|
),
|
|
new TextButton(
|
|
child: Text(S.of(context).SHOW),
|
|
onPressed: () {
|
|
Navigator.pop(context, true);
|
|
},
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
void _navigateToItemDetail(Map<String, dynamic> message) {
|
|
final context = _scaffoldKey.currentContext;
|
|
if (context == null) return;
|
|
// Clear away dialogs
|
|
Navigator.popUntil(context, (Route<dynamic> route) => route is PageRoute);
|
|
/* if (!notif.getRoute(store).isCurrent) {
|
|
// Navigator.push(context, notif.getRoute(store));
|
|
} */
|
|
Navigator.pushNamed(context, FireNotificationList.routeName);
|
|
}
|
|
|
|
// Firebase Messaging instance (v5+)
|
|
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging.instance;
|
|
|
|
FireNotification? _notifForMessage(
|
|
Map<String, dynamic> message, bool isLoaded) {
|
|
FireNotification? notif;
|
|
try {
|
|
notif = new FireNotification(
|
|
id: objectIdFromJson(message['id'] as String),
|
|
subsId: objectIdFromJson(message['subsId'] as String),
|
|
lat: double.parse(message['lat'] as String),
|
|
lon: double.parse(message['lon'] as String),
|
|
description: message['description'] as String,
|
|
read: false,
|
|
when: DateTime.parse(message['when'] as String),
|
|
sealed: message['sealed'] as String);
|
|
debugPrint(notif.toString());
|
|
} catch (e) {
|
|
debugPrint(e.toString());
|
|
}
|
|
// if our store is loaded, we just dispatch the notification, if not, we wait til is loaded
|
|
if (notif != null) {
|
|
if (isLoaded) {
|
|
store.dispatch(new AddFireNotificationAction(notif));
|
|
} else {
|
|
newNotifications.add(notif);
|
|
}
|
|
}
|
|
return notif;
|
|
}
|
|
}
|