Implement comprehensive error handling for actions. Covers the `wrapError()` method for action-level error wrapping, GlobalWrapError for app-wide error transformation, ErrorObserver for logging/monitoring, and the error handling flow (before → reduce → after).
AsyncRedux provides a comprehensive error handling system with multiple layers: action-level wrapping, global error transformation, and error observation for logging/monitoring.
When errors occur during action execution:
before() throws an error, the reducer doesn't execute and state remains unchangedreduce() throws an error, execution halts without state modificationafter() method always runs, even when errors occur (like a finally block)Processing order: wrapError() → GlobalWrapError → ErrorObserver
Actions can throw errors using throw. When an error is thrown, the reducer stops and state is not modified:
class TransferMoney extends AppAction {
final double amount;
TransferMoney(this.amount);
AppState? reduce() {
if (amount == 0) {
throw UserException('You cannot transfer zero money.');
}
return state.copy(cash: state.cash - amount);
}
}
UserException is a built-in class for errors that users can understand and potentially fix (not code bugs):
class SaveUser extends AppAction {
final String name;
SaveUser(this.name);
Future<AppState?> reduce() async {
if (name.length < 4)
throw UserException('Name must have 4 letters.');
await saveUser(name);
return null;
}
}
When a UserException is thrown, it's added to a special error queue in the store and can be displayed via UserExceptionDialog.
Wrap your home page with UserExceptionDialog below both StoreProvider and MaterialApp:
UserExceptionDialog<AppState>(
onShowUserExceptionDialog: (context, exception) => showDialog(...),
child: MyHomePage(),
)
The wrapError() method acts as a catch block for entire actions. It receives the original error and stack trace, and must return:
null (to suppress/disable the error)class LogoutAction extends AppAction {
@override
Object? wrapError(Object error, StackTrace stackTrace) {
return LogoutError("Logout failed", cause: error);
}
Future<AppState?> reduce() async {
await authService.logout();
return state.copy(user: null);
}
}
Create mixins for consistent error transformation across multiple actions:
mixin ShowUserException on AppAction {
String getErrorMessage();
@override
Object? wrapError(Object error, StackTrace stackTrace) {
return UserException(getErrorMessage()).addCause(error);
}
}
class LoadDataAction extends AppAction with ShowUserException {
@override
String getErrorMessage() => 'Failed to load data. Please try again.';
Future<AppState?> reduce() async {
var data = await api.loadData();
return state.copy(data: data);
}
}
Return null from wrapError() to suppress errors without further propagation:
@override
Object? wrapError(Object error, StackTrace stackTrace) {
if (error is CancelledException) {
return null; // Silently ignore cancellation
}
return error;
}
GlobalWrapError processes all action errors centrally. This is useful for transforming third-party library errors (like Firebase or platform exceptions):
var store = Store<AppState>(
initialState: AppState.initialState(),
globalWrapError: MyGlobalWrapError(),
);
class MyGlobalWrapError extends GlobalWrapError {
@override
Object? wrap(Object error, StackTrace stackTrace, ReduxAction<AppState> action) {
// Transform platform exceptions to user-friendly messages
if (error is PlatformException && error.code == "Error performing get") {
return UserException('Check your internet connection').addCause(error);
}
// Transform Firebase errors
if (error is FirebaseException) {
return UserException('Service temporarily unavailable').addCause(error);
}
// Pass through all other errors unchanged
return error;
}
}
Return null from GlobalWrapError.wrap() to suppress errors globally.
ErrorObserver receives all errors with context about the action and store. Use it for logging, monitoring, or analytics:
var store = Store<AppState>(
initialState: AppState.initialState(),
errorObserver: MyErrorObserver<AppState>(),
);
class MyErrorObserver<St> implements ErrorObserver<St> {
@override
bool observe(
Object error,
StackTrace stackTrace,
ReduxAction<St> action,
Store<St> store,
) {
// Log the error
print("Error during ${action.runtimeType}: $error");
// Send to crash reporting service
crashlytics.recordError(error, stackTrace);
// Return true to rethrow, false to swallow
return true;
}
}
The observe method returns:
true to rethrow the error (default behavior)false to swallow the error silentlyFor showing error feedback while allowing the action to continue (without stopping execution):
class ConvertAction extends AppAction {
final String text;
ConvertAction(this.text);
Future<AppState?> reduce() async {
var value = int.tryParse(text);
if (value == null) {
// Show error but continue action
dispatch(UserExceptionAction('Please enter a valid number'));
return null; // No state change
}
return state.copy(counter: value);
}
}
After dispatching with dispatchAndWait(), check the status:
var status = await store.dispatchAndWait(SaveAction());
if (status.isCompletedOk) {
Navigator.pop(context);
} else if (status.isCompletedFailed) {
var error = status.wrappedError;
print('Save failed: $error');
}
ActionStatus properties:
isCompletedOk: Action finished without errorsisCompletedFailed: Action encountered errorsoriginalError: The error as thrown from before or reducewrappedError: The error after transformation by wrapError()Check action failure state in the UI:
Widget build(BuildContext context) {
if (context.isFailed(LoadDataAction)) {
var exception = context.exceptionFor(LoadDataAction);
return Column(
children: [
Text('Error: ${exception?.message}'),
ElevatedButton(
onPressed: () => context.dispatch(LoadDataAction()),
child: Text('Retry'),
),
],
);
}
if (context.isWaiting(LoadDataAction)) {
return CircularProgressIndicator();
}
return DataWidget(data: context.state.data);
}
The error is cleared automatically when the action is dispatched again.
To manually clear the error:
context.clearExceptionFor(LoadDataAction);
Test that actions fail with expected errors:
test('action throws UserException for invalid input', () async {
var store = Store<AppState>(initialState: AppState.initialState());
var status = await store.dispatchAndWait(SaveUser('abc')); // too short
expect(status.isCompletedFailed, isTrue);
var error = status.wrappedError;
expect(error, isA<UserException>());
expect((error as UserException).msg, 'Name must have 4 letters.');
});
Test multiple exceptions via the error queue:
test('multiple actions accumulate errors', () async {
var store = Store<AppState>(initialState: AppState.initialState());
await store.dispatchAndWaitAll([
InvalidAction1(),
InvalidAction2(),
InvalidAction3(),
]);
var errors = store.errors;
expect(errors.length, 3);
expect(errors[0].msg, 'First error message');
});
var store = Store<AppState>(
initialState: AppState.initialState(),
globalWrapError: MyGlobalWrapError(),
errorObserver: MyErrorObserver<AppState>(),
actionObservers: [Log.printer(formatter: Log.verySimpleFormatter)],
);
class MyGlobalWrapError extends GlobalWrapError {
@override
Object? wrap(Object error, StackTrace stackTrace, ReduxAction<AppState> action) {
if (error is SocketException) {
return UserException('No internet connection').addCause(error);
}
return error;
}
}
class MyErrorObserver<St> implements ErrorObserver<St> {
@override
bool observe(Object error, StackTrace stackTrace, ReduxAction<St> action, Store<St> store) {
// Skip logging UserExceptions (they're expected)
if (error is! UserException) {
crashlytics.recordError(error, stackTrace);
}
return true;
}
}
URLs from the documentation:
npx skills add marcglasberg/asyncredux-error-handling下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer