import '../models/app_state.dart'; import 'actions.dart'; AppState appReducer(AppState state, dynamic action) { if (action is FetchYourLocationsSucceededAction) { return state.copyWith(yourLocations: action.fetchedYourLocations); } if (action is FetchFireNotificationsSucceededAction) { return state.copyWith( fireNotifications: action.fetchedFireNotifications, fireNotificationsUnread: action.unreadCount); } if (action is FetchMonitoredAreasSucceededAction) { return state.copyWith(monitoredAreas: action.monitoredAreas); } if (action is AddedFireNotificationAction) return state.copyWith( fireNotificationsUnread: state.fireNotificationsUnread + 1); if (action is ReadedFireNotificationAction) return state.copyWith( fireNotificationsUnread: state.fireNotificationsUnread - 1); if (action is DeleteAllFireNotificationAction) return state.copyWith(fireNotificationsUnread: 0); return state; }