Skip to content

Instantly share code, notes, and snippets.

@bardiarastin
Created January 26, 2020 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bardiarastin/7c307ff14cae6be6c7885120b659e7a2 to your computer and use it in GitHub Desktop.
Save bardiarastin/7c307ff14cae6be6c7885120b659e7a2 to your computer and use it in GitHub Desktop.
import 'package:meta/meta.dart';
import 'package:redux/redux.dart';
import 'package:redux_example/src/redux/posts/posts_actions.dart';
import 'package:redux_example/src/redux/posts/posts_reducer.dart';
import 'package:redux_example/src/redux/posts/posts_state.dart';
import 'package:redux_thunk/redux_thunk.dart';
AppState appReducer(AppState state, dynamic action) {
if (action is SetPostsStateAction) {
final nextPostsState = postsReducer(state.postsState, action);
return state.copyWith(postsState: nextPostsState);
}
return state;
}
@immutable
class AppState {
final PostsState postsState;
AppState({
@required this.postsState,
});
AppState copyWith({
PostsState postsState,
}) {
return AppState(
postsState: postsState ?? this.postsState,
);
}
}
class Redux {
static Store<AppState> _store;
static Store<AppState> get store {
if (_store == null) {
throw Exception("store is not initialized");
} else {
return _store;
}
}
static Future<void> init() async {
final postsStateInitial = PostsState.initial();
_store = Store<AppState>(
appReducer,
middleware: [thunkMiddleware],
initialState: AppState(postsState: postsStateInitial),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment