redux_thunk 0.1.1 copy "redux_thunk: ^0.1.1" to clipboard
redux_thunk: ^0.1.1 copied to clipboard

outdatedDart 1 only

Redux Middleware for handling functions as actions

redux_thunk #

Build Status codecov

Redux provides a simple way to update a your application's State in response to synchronous Actions. However, it lacks tools to handle asynchronous code. This is where Thunks come in.

The thunkMiddleware intercepts and calls ThunkActions, which is simply a fancy name for any function that takes 1 argument: a Redux Store. This allows you to dispatch functions (aka ThunkActions) to your Store that can perform asynchronous work, then dispatch actions using the Store after the work is complete.

The dispatched ThunkActions will be swallowed, meaning they will not go through the rest of your middleware to the Store's Reducer.

Example #

// First, create a quick reducer
final reducer = (String state, action) =>
    action is String ? action : state;

// Next, apply the `thunkMiddleware` to the Store
final store = new Store<String>(
  reducer,
  middleware: [thunkMiddleware],
);

// Create a `ThunkAction`, which is any function that accepts the 
// Store as it's only argument. Our function (aka ThunkAction) will
// simply send an action after 1 second.  This is just an example, 
// but  in real life, you could make a call to an HTTP service or 
// database instead!
final action = (Store<String> store) async {
  final searchResults = await new Future.delayed(
    new Duration(seconds: 1),
    () => "Search Results",
  );

  store.dispatch(searchResults);
};

Credits #

All the ideas in this lib are shamelessly stolen from the original redux-thunk library and simply adapted to Dart.

63
likes
0
pub points
95%
popularity

Publisher

unverified uploader

Redux Middleware for handling functions as actions

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

redux

More

Packages that depend on redux_thunk