zoukankan      html  css  js  c++  java
  • [Redux] Normalizing the State Shape

    We will learn how to normalize the state shape to ensure data consistency that is important in real-world applications.

    We currently represent the todos in the state free as an array of todo object. However, in the real app, we probably have more than a single array and then todos with the same IDs in different arrays might get out of sync.

    const byIds = (state = {}, action) => {
      switch (action.type) {
        case 'ADD_TODO':
        case 'TOGGLE_TODO':
          return {
            ...state,
            [action.id]: todo(state[action.id], action),
          };
        default:
          return state;
      }
    };

    For using object spread, we need to include plugins:

    // .baberc
    
    {
      "presets": ["es2015", "react"],
      "plugins": ["transform-object-rest-spread"]
    }

    Anytime the ByID reducer receives an action, it's going to return the copy of its mapping between the IDs and the actual todos with updated todo for the current action. I will let another reducer that keeps track of all the added IDs.

    const allIds = (state = [], action) => {
      switch(action.type){
        case 'ADD_TODO':
          return [...state, action.id];
        default:
          return state;
      }
    };

    the only action I care about is a todo because if a new todo is added, I want to return a new array of IDs with that ID as the last item. For any other actions, I just need to return the current state.

    Finally, I still need to export the single reducer from the todos file, so I'm going to use combined reducers again to combine the ByID and the AllIDs reducers.

    const todos = combineReducers({
      allIds,
      byIds
    });

    export default todos;

    Now that we have changed the state shape in reducers, we also need to update the selectors that rely on it. The state object then get visible todos is now going to contain ByID and AllIDs fields, because it corresponds to the state of the combined reducer.

    const getAllTodos = (state) => {
      return state.allIds.map( (id) => {
        return state.byIds[id];
      })
    };
    
    export const getVisibleTodos = (state, filter) => {
      const allTodos = getAllTodos(state);
      console.log(allTodos);
      switch (filter) {
        case 'all':
          return allTodos;
        case 'completed':
          return allTodos.filter(t => t.completed);
        case 'active':
          return allTodos.filter(t => !t.completed);
        default:
          throw new Error(`Unknown filter: ${filter}.`);
      }
    };

    My todos file has grown quite a bit so it's a good time to extract the todo reducer that manages just when you go todo into a separate file of its own. I created a file called todo in the same folder and I will paste my implementation right there so that I can import it from the todos file.

    // reducers/todo.js
    const todo = (state, action) => { switch (action.type) { case 'ADD_TODO': return { id: action.id, text: action.text, completed: false, }; case 'TOGGLE_TODO': if (state.id !== action.id) { return state; } return { ...state, completed: !state.completed, }; default: return state; } };

    ------------------

    //todos.js
    
    import { combineReducers } from 'redux';
    import  todo  from './todo';
    
    const byIds = (state = {}, action) => {
      switch (action.type) {
        case 'ADD_TODO':
        case 'TOGGLE_TODO':
          return {
            ...state,
            [action.id]: todo(state[action.id], action),
          };
        default:
          return state;
      }
    };
    
    const allIds = (state = [], action) => {
      switch(action.type){
        case 'ADD_TODO':
          return [...state, action.id];
        default:
          return state;
      }
    };
    
    const todos = combineReducers({
      allIds,
      byIds
    });
    
    export default todos;
    
    const getAllTodos = (state) => {
      return state.allIds.map( (id) => {
        return state.byIds[id];
      })
    };
    
    export const getVisibleTodos = (state, filter) => {
      const allTodos = getAllTodos(state);
      console.log(allTodos);
      switch (filter) {
        case 'all':
          return allTodos;
        case 'completed':
          return allTodos.filter(t => t.completed);
        case 'active':
          return allTodos.filter(t => !t.completed);
        default:
          throw new Error(`Unknown filter: ${filter}.`);
      }
    };
    //todo.js
    const todo = (state, action) => {
        switch (action.type) {
            case 'ADD_TODO':
                return {
                    id: action.id,
                    text: action.text,
                    completed: false,
                };
            case 'TOGGLE_TODO':
                if (state.id !== action.id) {
                    return state;
                }
                return {
                    ...state,
                    completed: !state.completed,
                };
            default:
                return state;
        }
    };
    
    export default todo;
  • 相关阅读:
    power designer 水电费缴纳系统的设计
    水电费管理系统需求分析----表格的建立
    GUID
    Java对象的序列化
    模拟银行自动终端系统
    随便选择两个城市作为预选旅游目标。实现两个独立的线程分别显示10次城市名,每次显示后休眠一段随机时间(1000ms以内),哪个先显示完毕,就决定去哪个城市。分别用Runnable接口和Thread类实现。
    Cookie的简易用法
    工作任务:题目一:网页输出九九乘法表;题目二:网页输出三角形和菱形
    简单的sql注入
    10-18 Oracle 基础练习
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5565716.html
Copyright © 2011-2022 走看看