管理范式化数据

范式化数据 章节所提及的,我们经常使用 Normaizr 库将嵌套式数据转化为适合集成到 store 中的范式化数据。但这并不解决针对范式化的数据进一步更新后在应用的其他地方使用的问题。根据喜好有很多种方法可供使用。下面展示一个像文章添加评论的示例。

标准方法

简单合并

一种方法是将 action 的内容合并到现有的 state。在这种情况下,我们需要一个对数据的深拷贝(非浅拷贝)。Lodash 的 merge 方法可以帮我们处理这个:

  1. import merge from 'lodash/merge'
  2. function commentsById(state = {}, action) {
  3. switch (action.type) {
  4. default: {
  5. if (action.entities && action.entities.comments) {
  6. return merge({}, state, action.entities.comments.byId)
  7. }
  8. return state
  9. }
  10. }
  11. }

这样做会让 reducer 保持最小的工作量,但需要 action creator 在 action dispatch 之前做大量的工作来将数据转化成正确的形态。在删除数据项时这种方式也是不适合的。

reducer 切片组合

如果我们有一个由切片 reducer 组成的嵌套数据,每个切片 reducer 都需要知道如何响应这个 action。因为我们需要让 action 囊括所有相关的数据。譬如更新相应的 Post 对象需要生成一个 comment 的 id,然后使用 id 作为 key 创建一个新的 comment 对象,并且让这个 comment 的 id 包括在所有的 comment id 列表中。下面是一个如何组合这样数据的例子:

译者注:结合上章节中范式化之后的 state 阅读

  1. // actions.js
  2. function addComment(postId, commentText) {
  3. // 为这个 comment 生成一个独一无二的 ID
  4. const commentId = generateId('comment')
  5. return {
  6. type: 'ADD_COMMENT',
  7. payload: {
  8. postId,
  9. commentId,
  10. commentText
  11. }
  12. }
  13. }
  14. // reducers/posts.js
  15. function addComment(state, action) {
  16. const { payload } = action
  17. const { postId, commentId } = payload
  18. // 查找出相应的文章,简化其余代码
  19. const post = state[postId]
  20. return {
  21. ...state,
  22. // 用新的 comments 数据更新 Post 对象
  23. [postId]: {
  24. ...post,
  25. comments: post.comments.concat(commentId)
  26. }
  27. }
  28. }
  29. function postsById(state = {}, action) {
  30. switch (action.type) {
  31. case 'ADD_COMMENT':
  32. return addComment(state, action)
  33. default:
  34. return state
  35. }
  36. }
  37. function allPosts(state = [], action) {
  38. // 省略,这个例子中不需要它
  39. }
  40. const postsReducer = combineReducers({
  41. byId: postsById,
  42. allIds: allPosts
  43. })
  44. // reducers/comments.js
  45. function addCommentEntry(state, action) {
  46. const { payload } = action
  47. const { commentId, commentText } = payload
  48. // 创建一个新的 Comment 对象
  49. const comment = { id: commentId, text: commentText }
  50. // 在查询表中插入新的 Comment 对象
  51. return {
  52. ...state,
  53. [commentId]: comment
  54. }
  55. }
  56. function commentsById(state = {}, action) {
  57. switch (action.type) {
  58. case 'ADD_COMMENT':
  59. return addCommentEntry(state, action)
  60. default:
  61. return state
  62. }
  63. }
  64. function addCommentId(state, action) {
  65. const { payload } = action
  66. const { commentId } = payload
  67. // 把新 Comment 的 ID 添加在 all IDs 的列表后面
  68. return state.concat(commentId)
  69. }
  70. function allComments(state = [], action) {
  71. switch (action.type) {
  72. case 'ADD_COMMENT':
  73. return addCommentId(state, action)
  74. default:
  75. return state
  76. }
  77. }
  78. const commentsReducer = combineReducers({
  79. byId: commentsById,
  80. allIds: allComments
  81. })

这个例子之所有有点长,是因为它展示了不同切片 reducer 和 case reducer 是如何配合在一起使用的。注意这里对 “委托” 的理解。postById reducer 切片将工作委拖给 addComment,addComment 将新的评论 id 插入到相应的数据项中。同时 commentsById 和 allComments 的 reducer 切片都有自己的 case reducer,他们更新评论查找表和所有评论 id 列表的表。

其他方法

基于任务的更新

reducer 仅仅是个函数,因此有无数种方法来拆分这个逻辑。使用切片 reducer 是最常见,但也可以在更面向任务的结构中组织行为。由于通常会涉及到更多嵌套的更新,因此常常会使用 dot-prop-immutableobject-path-immutable 等库实现不可变更新。

  1. import posts from "./postsReducer";
  2. import comments from "./commentsReducer";
  3. import dotProp from "dot-prop-immutable";
  4. import {combineReducers} from "redux";
  5. import reduceReducers from "reduce-reducers";
  6. const combinedReducer = combineReducers({
  7. posts,
  8. comments
  9. });
  10. function addComment(state, action) {
  11. const {payload} = action;
  12. const {postId, commentId, commentText} = payload;
  13. // State here is the entire combined state
  14. const updatedWithPostState = dotProp.set(
  15. state,
  16. `posts.byId.${postId}.comments`,
  17. comments => comments.concat(commentId)
  18. );
  19. const updatedWithCommentsTable = dotProp.set(
  20. updatedWithPostState,
  21. `comments.byId.${commentId}`,
  22. {id : commentId, text : commentText}
  23. );
  24. const updatedWithCommentsList = dotProp.set(
  25. updatedWithCommentsTable,
  26. `comments.allIds`,
  27. allIds => allIds.concat(commentId);
  28. );
  29. return updatedWithCommentsList;
  30. }
  31. const featureReducers = createReducer({}, {
  32. ADD_COMMENT : addComment,
  33. };
  34. const rootReducer = reduceReducers(
  35. combinedReducer,
  36. featureReducers
  37. );

这种方法让 ADD_COMMENT 这个 case 要干哪些事更加清楚,但需要更新嵌套逻辑和对特定状态树的了解。最后这取决于你如何组织 reducer 逻辑,或许你根本不需要这样做。

Redux-ORM

Redux-ORM 库提供了一个非常有用的抽象层,用于管理 Redux store 中存储的范式化数据。它允许你声明 Model 类并且定义他们之间的关系。然后它可以为你的数据类型生成新“表”,充当用于查找数据的特殊选择器工具,并且对数据执行不可变更新。

有几种方法可以用 Redux-ORM 执行数据更新。首选,Redux-ORM 文档建议在每个 Model 子类上定义 reducer 函数,然后将自动生成的组合 reducer 函数放到 store 中:

  1. // models.js
  2. import { Model, many, Schema } from 'redux-orm'
  3. export class Post extends Model {
  4. static get fields() {
  5. return {
  6. // 定义一个多边关系 - 一个 Post 可以有多个 Comments,
  7. // 字段名是 “comments”
  8. comments: many('Comment')
  9. }
  10. }
  11. static reducer(state, action, Post) {
  12. switch (action.type) {
  13. case 'CREATE_POST': {
  14. // 排队创建一个 Post 实例
  15. Post.create(action.payload)
  16. break
  17. }
  18. case 'ADD_COMMENT': {
  19. const { payload } = action
  20. const { postId, commentId } = payload
  21. // 排队增加一个 Comment ID 和 Post 实例的联系
  22. Post.withId(postId).comments.add(commentId)
  23. break
  24. }
  25. }
  26. // Redux-ORM 将在返回后自动应用排队的更新
  27. }
  28. }
  29. Post.modelName = 'Post'
  30. export class Comment extends Model {
  31. static get fields() {
  32. return {}
  33. }
  34. static reducer(state, action, Comment) {
  35. switch (action.type) {
  36. case 'ADD_COMMENT': {
  37. const { payload } = action
  38. const { commentId, commentText } = payload
  39. // 排队创建一个 Comment 实例
  40. Comment.create({ id: commentId, text: commentText })
  41. break
  42. }
  43. }
  44. // Redux-ORM 将在返回后自动应用排队的更新
  45. }
  46. }
  47. Comment.modelName = 'Comment'
  48. // 创建 Schema 实例,然后和 Post、Comment 数据模型挂钩起来
  49. export const schema = new Schema()
  50. schema.register(Post, Comment)
  51. // main.js
  52. import { createStore, combineReducers } from 'redux'
  53. import { schema } from './models'
  54. const rootReducer = combineReducers({
  55. // 插入 Redux-ORM 自动生成的 reducer,这将
  56. // 初始化一个数据模型 “表”,并且和我们在
  57. // 每个 Model 子类中定义的 reducer 逻辑挂钩起来
  58. entities: schema.reducer()
  59. })
  60. // dispatch 一个 action 以创建一个 Post 实例
  61. store.dispatch({
  62. type: 'CREATE_POST',
  63. payload: {
  64. id: 1,
  65. name: 'Test Post Please Ignore'
  66. }
  67. })
  68. // dispath 一个 action 以创建一个 Comment 实例作为上个 Post 的子元素
  69. store.dispatch({
  70. type: 'ADD_COMMENT',
  71. payload: {
  72. postId: 1,
  73. commentId: 123,
  74. commentText: 'This is a comment'
  75. }
  76. })

Redux-ORM 库维护要应用的内部更新队列。这些更新是不可变更新,这个库简化了这个更新过程。

使用 Redux-ORM 的另一个变化是用一个单一的 case reducer 作为抽象层。

  1. import { schema } from './models'
  2. // 假设这个 case reducer 正在我们的 “entities” 切片 reducer 使用,
  3. // 并且我们在 Redux-ORM 的 Model 子类上没有定义 reducer
  4. function addComment(entitiesState, action) {
  5. const session = schema.from(entitiesState)
  6. const { Post, Comment } = session
  7. const { payload } = action
  8. const { postId, commentId, commentText } = payload
  9. const post = Post.withId(postId)
  10. post.comments.add(commentId)
  11. Comment.create({ id: commentId, text: commentText })
  12. return session.reduce()
  13. }

总之,Redux-ORM 提供了一组非常有用的抽象,用于定义数据类型之间的关系,在我们的 state 中创建了一个 “表”,检索和反规划关系数据,以及将不可变更新应用于关系数据。