react-native-navigation的迁移库

store.js 316B

123456789101112131415161718
  1. import _ from 'lodash';
  2. const state = {
  3. propsByScreenId: {}
  4. };
  5. export const mutators = {
  6. setPropsForScreenId(screenId, props) {
  7. _.set(state.propsByScreenId, screenId, props);
  8. }
  9. };
  10. export const selectors = {
  11. getPropsForScreenId(screenId) {
  12. return _.get(state.propsByScreenId, screenId, {});
  13. }
  14. };