• 抽离出 store
  • 监控数据变化
  • 总结
    • 作者:胡子大哈
    • 原文链接: http://huziketang.com/books/react/lesson31
    • 转载请注明出处,保留原文链接和作者信息。 (本文未审核)

    抽离出 store

    上一节 的我们有了 appStatedispatch

    1. let appState = {
    2. title: {
    3. text: 'React.js 小书',
    4. color: 'red',
    5. },
    6. content: {
    7. text: 'React.js 小书内容',
    8. color: 'blue'
    9. }
    10. }
    11. function dispatch (action) {
    12. switch (action.type) {
    13. case 'UPDATE_TITLE_TEXT':
    14. appState.title.text = action.text
    15. break
    16. case 'UPDATE_TITLE_COLOR':
    17. appState.title.color = action.color
    18. break
    19. default:
    20. break
    21. }
    22. }

    现在我们把它们集中到一个地方,给这个地方起个名字叫做 store,然后构建一个函数 createStore,用来专门生产这种 statedispatch 的集合,这样别的 App 也可以用这种模式了:

    1. function createStore (state, stateChanger) {
    2. const getState = () => state
    3. const dispatch = (action) => stateChanger(state, action)
    4. return { getState, dispatch }
    5. }

    createStore 接受两个参数,一个是表示应用程序状态的 state;另外一个是 stateChanger,它来描述应用程序状态会根据 action 发生什么变化,其实就是相当于本节开头的 dispatch 代码里面的内容。

    createStore 会返回一个对象,这个对象包含两个方法 getStatedispatchgetState 用于获取 state 数据,其实就是简单地把 state 参数返回。

    dispatch 用于修改数据,和以前一样会接受 action,然后它会把 stateaction 一并传给 stateChanger,那么 stateChanger 就可以根据 action 来修改 state 了。

    现在有了 createStore,我们可以这么修改原来的代码,保留原来所有的渲染函数不变,修改数据生成的方式:

    1. let appState = {
    2. title: {
    3. text: 'React.js 小书',
    4. color: 'red',
    5. },
    6. content: {
    7. text: 'React.js 小书内容',
    8. color: 'blue'
    9. }
    10. }
    11. function stateChanger (state, action) {
    12. switch (action.type) {
    13. case 'UPDATE_TITLE_TEXT':
    14. state.title.text = action.text
    15. break
    16. case 'UPDATE_TITLE_COLOR':
    17. state.title.color = action.color
    18. break
    19. default:
    20. break
    21. }
    22. }
    23. const store = createStore(appState, stateChanger)
    24. renderApp(store.getState()) // 首次渲染页面
    25. store.dispatch({ type: 'UPDATE_TITLE_TEXT', text: '《React.js 小书》' }) // 修改标题文本
    26. store.dispatch({ type: 'UPDATE_TITLE_COLOR', color: 'blue' }) // 修改标题颜色
    27. renderApp(store.getState()) // 把新的数据渲染到页面上

    针对每个不同的 App,我们可以给 createStore 传入初始的数据 appState,和一个描述数据变化的函数 stateChanger,然后生成一个 store。需要修改数据的时候通过 store.dispatch,需要获取数据的时候通过 store.getState

    监控数据变化

    上面的代码有一个问题,我们每次通过 dispatch 修改数据的时候,其实只是数据发生了变化,如果我们不手动调用 renderApp,页面上的内容是不会发生变化的。但是我们总不能每次 dispatch 的时候都手动调用一下 renderApp,我们肯定希望数据变化的时候程序能够智能一点地自动重新渲染数据,而不是手动调用。

    你说这好办,往 dispatch里面加 renderApp 就好了,但是这样 createStore 就不够通用了。我们希望用一种通用的方式“监听”数据变化,然后重新渲染页面,这里要用到观察者模式。修改 createStore

    1. function createStore (state, stateChanger) {
    2. const listeners = []
    3. const subscribe = (listener) => listeners.push(listener)
    4. const getState = () => state
    5. const dispatch = (action) => {
    6. stateChanger(state, action)
    7. listeners.forEach((listener) => listener())
    8. }
    9. return { getState, dispatch, subscribe }
    10. }

    我们在 createStore 里面定义了一个数组 listeners,还有一个新的方法 subscribe,可以通过 store.subscribe(listener) 的方式给 subscribe 传入一个监听函数,这个函数会被 push 到数组当中。

    我们修改了 dispatch,每次当它被调用的时候,除了会调用 stateChanger 进行数据的修改,还会遍历 listeners 数组里面的函数,然后一个个地去调用。相当于我们可以通过 subscribe 传入数据变化的监听函数,每当 dispatch 的时候,监听函数就会被调用,这样我们就可以在每当数据变化时候进行重新渲染:

    1. const store = createStore(appState, stateChanger)
    2. store.subscribe(() => renderApp(store.getState()))
    3. renderApp(store.getState()) // 首次渲染页面
    4. store.dispatch({ type: 'UPDATE_TITLE_TEXT', text: '《React.js 小书》' }) // 修改标题文本
    5. store.dispatch({ type: 'UPDATE_TITLE_COLOR', color: 'blue' }) // 修改标题颜色
    6. // ...后面不管如何 store.dispatch,都不需要重新调用 renderApp

    对观察者模式不熟悉的朋友可能会在这里晕头转向,建议了解一下这个设计模式的相关资料,然后进行练习: 实现一个 EventEmitter 再进行阅读。

    我们只需要 subscribe 一次,后面不管如何 dispatch 进行修改数据,renderApp 函数都会被重新调用,页面就会被重新渲染。这样的订阅模式还有好处就是,以后我们还可以拿同一块数据来渲染别的页面,这时 dispatch 导致的变化也会让每个页面都重新渲染:

    1. const store = createStore(appState, stateChanger)
    2. store.subscribe(() => renderApp(store.getState()))
    3. store.subscribe(() => renderApp2(store.getState()))
    4. store.subscribe(() => renderApp3(store.getState()))
    5. ...

    本节的完整代码:

    1. function createStore (state, stateChanger) {
    2. const listeners = []
    3. const subscribe = (listener) => listeners.push(listener)
    4. const getState = () => state
    5. const dispatch = (action) => {
    6. stateChanger(state, action)
    7. listeners.forEach((listener) => listener())
    8. }
    9. return { getState, dispatch, subscribe }
    10. }
    11. function renderApp (appState) {
    12. renderTitle(appState.title)
    13. renderContent(appState.content)
    14. }
    15. function renderTitle (title) {
    16. const titleDOM = document.getElementById('title')
    17. titleDOM.innerHTML = title.text
    18. titleDOM.style.color = title.color
    19. }
    20. function renderContent (content) {
    21. const contentDOM = document.getElementById('content')
    22. contentDOM.innerHTML = content.text
    23. contentDOM.style.color = content.color
    24. }
    25. let appState = {
    26. title: {
    27. text: 'React.js 小书',
    28. color: 'red',
    29. },
    30. content: {
    31. text: 'React.js 小书内容',
    32. color: 'blue'
    33. }
    34. }
    35. function stateChanger (state, action) {
    36. switch (action.type) {
    37. case 'UPDATE_TITLE_TEXT':
    38. state.title.text = action.text
    39. break
    40. case 'UPDATE_TITLE_COLOR':
    41. state.title.color = action.color
    42. break
    43. default:
    44. break
    45. }
    46. }
    47. const store = createStore(appState, stateChanger)
    48. store.subscribe(() => renderApp(store.getState())) // 监听数据变化
    49. renderApp(store.getState()) // 首次渲染页面
    50. store.dispatch({ type: 'UPDATE_TITLE_TEXT', text: '《React.js 小书》' }) // 修改标题文本
    51. store.dispatch({ type: 'UPDATE_TITLE_COLOR', color: 'blue' }) // 修改标题颜色

    总结

    现在我们有了一个比较通用的 createStore,它可以产生一种我们新定义的数据类型 store,通过 store.getState 我们获取共享状态,而且我们约定只能通过 store.dispatch 修改共享状态。store 也允许我们通过 store.subscribe 监听数据数据状态被修改了,并且进行后续的例如重新渲染页面的操作。


    因为第三方评论工具有问题,对本章节有任何疑问的朋友可以移步到 React.js 小书的论坛 发帖,我会回答大家的疑问。