Created
January 26, 2020 13:26
-
-
Save bardiarastin/7c307ff14cae6be6c7885120b659e7a2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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