现在我们有三个 Dumb 组件,一个控制评论的 reducer。我们还缺什么?需要有人去 LocalStorage 加载数据,去控制新增、删除评论,去把数据保存到 LocalStorage 里面。之前这些逻辑我们都是零散地放在各个组件里面的(主要是 CommentApp 组件),那是因为当时我们还没对 Dumb 和 Smart 组件类型划分的认知,状态和视图之间也没有这么泾渭分明。

而现在我们知道,这些逻辑是应该放在 Smart 组件里面的:

实例图片

了解 MVC、MVP 架构模式的同学应该可以类比过去,Dumb 组件就是 View(负责渲染),Smart 组件就是 Controller(Presenter),State 其实就有点类似 Model。其实不能完全类比过去,它们还是有不少差别的。但是本质上兜兜转转还是把东西分成了三层,所以说前端很喜欢炒别人早就玩烂的概念,这话果然不假。废话不多说,我们现在就把这些应用逻辑抽离到 Smart 组件里面。

Smart CommentList

对于 CommentList 组件,可以看到它接受两个参数:commentsonDeleteComment。说明需要一个 Smart 组件来负责把 comments 数据传给它,并且还得响应它删除评论的请求。我们新建一个 Smart 组件 src/containers/CommentList.js 来干这些事情:

  1. import React, { Component } from 'react'
  2. import PropTypes from 'prop-types'
  3. import { connect } from 'react-redux'
  4. import CommentList from '../components/CommentList'
  5. import { initComments, deleteComment } from '../reducers/comments'
  6. // CommentListContainer
  7. // 一个 Smart 组件,负责评论列表数据的加载、初始化、删除评论
  8. // 沟通 CommentList 和 state
  9. class CommentListContainer extends Component {
  10. static propTypes = {
  11. comments: PropTypes.array,
  12. initComments: PropTypes.func,
  13. onDeleteComment: PropTypes.func
  14. }
  15. componentWillMount () {
  16. // componentWillMount 生命周期中初始化评论
  17. this._loadComments()
  18. }
  19. _loadComments () {
  20. // 从 LocalStorage 中加载评论
  21. let comments = localStorage.getItem('comments')
  22. comments = comments ? JSON.parse(comments) : []
  23. // this.props.initComments 是 connect 传进来的
  24. // 可以帮我们把数据初始化到 state 里面去
  25. this.props.initComments(comments)
  26. }
  27. handleDeleteComment (index) {
  28. const { comments } = this.props
  29. // props 是不能变的,所以这里新建一个删除了特定下标的评论列表
  30. const newComments = [
  31. ...comments.slice(0, index),
  32. ...comments.slice(index + 1)
  33. ]
  34. // 保存最新的评论列表到 LocalStorage
  35. localStorage.setItem('comments', JSON.stringify(newComments))
  36. if (this.props.onDeleteComment) {
  37. // this.props.onDeleteComment 是 connect 传进来的
  38. // 会 dispatch 一个 action 去删除评论
  39. this.props.onDeleteComment(index)
  40. }
  41. }
  42. render () {
  43. return (
  44. <CommentList
  45. comments={this.props.comments}
  46. onDeleteComment={this.handleDeleteComment.bind(this)} />
  47. )
  48. }
  49. }
  50. // 评论列表从 state.comments 中获取
  51. const mapStateToProps = (state) => {
  52. return {
  53. comments: state.comments
  54. }
  55. }
  56. const mapDispatchToProps = (dispatch) => {
  57. return {
  58. // 提供给 CommentListContainer
  59. // 当从 LocalStorage 加载评论列表以后就会通过这个方法
  60. // 把评论列表初始化到 state 当中
  61. initComments: (comments) => {
  62. dispatch(initComments(comments))
  63. },
  64. // 删除评论
  65. onDeleteComment: (commentIndex) => {
  66. dispatch(deleteComment(commentIndex))
  67. }
  68. }
  69. }
  70. // 将 CommentListContainer connect 到 store
  71. // 会把 comments、initComments、onDeleteComment 传给 CommentListContainer
  72. export default connect(
  73. mapStateToProps,
  74. mapDispatchToProps
  75. )(CommentListContainer)

代码有点长,大家通过注释应该了解这个组件的基本逻辑。有一点要额外说明的是,我们一开始传给 CommentListContainerprops.comments 其实是 reducer 里面初始化的空的 comments 数组,因为还没有从 LocalStorage 里面取数据。

CommentListContainer 内部从 LocalStorage 加载 comments 数据,然后调用 this.props.initComments(comments) 会导致 dispatch,从而使得真正从 LocalStorage 加载的 comments 初始化到 state 里面去。

因为 dispatch 了导致 connect 里面的 Connect 包装组件去 state 里面取最新的 comments 然后重新渲染,这时候 CommentListContainer 才获得了有数据的 props.comments

这里的逻辑有点绕,大家可以回顾一下我们之前实现的 react-redux.js 来体会一下。

Smart CommentInput

对于 CommentInput 组件,我们可以看到它有三个参数:usernameonSubmitonUserNameInputBlur。我们需要一个 Smart 的组件来管理用户名在 LocalStorage 的加载、保存;用户还可能点击“发布”按钮,所以还需要处理评论发布的逻辑。我们新建一个 Smart 组件 src/containers/CommentInput.js 来干这些事情:

  1. import React, { Component } from 'react'
  2. import PropTypes from 'prop-types'
  3. import { connect } from 'react-redux'
  4. import CommentInput from '../components/CommentInput'
  5. import { addComment } from '../reducers/comments'
  6. // CommentInputContainer
  7. // 负责用户名的加载、保存,评论的发布
  8. class CommentInputContainer extends Component {
  9. static propTypes = {
  10. comments: PropTypes.array,
  11. onSubmit: PropTypes.func
  12. }
  13. constructor () {
  14. super()
  15. this.state = { username: '' }
  16. }
  17. componentWillMount () {
  18. // componentWillMount 生命周期中初始化用户名
  19. this._loadUsername()
  20. }
  21. _loadUsername () {
  22. // 从 LocalStorage 加载 username
  23. // 然后可以在 render 方法中传给 CommentInput
  24. const username = localStorage.getItem('username')
  25. if (username) {
  26. this.setState({ username })
  27. }
  28. }
  29. _saveUsername (username) {
  30. // 看看 render 方法的 onUserNameInputBlur
  31. // 这个方法会在用户名输入框 blur 的时候的被调用,保存用户名
  32. localStorage.setItem('username', username)
  33. }
  34. handleSubmitComment (comment) {
  35. // 评论数据的验证
  36. if (!comment) return
  37. if (!comment.username) return alert('请输入用户名')
  38. if (!comment.content) return alert('请输入评论内容')
  39. // 新增评论保存到 LocalStorage 中
  40. const { comments } = this.props
  41. const newComments = [...comments, comment]
  42. localStorage.setItem('comments', JSON.stringify(newComments))
  43. // this.props.onSubmit 是 connect 传进来的
  44. // 会 dispatch 一个 action 去新增评论
  45. if (this.props.onSubmit) {
  46. this.props.onSubmit(comment)
  47. }
  48. }
  49. render () {
  50. return (
  51. <CommentInput
  52. username={this.state.username}
  53. onUserNameInputBlur={this._saveUsername.bind(this)}
  54. onSubmit={this.handleSubmitComment.bind(this)} />
  55. )
  56. }
  57. }
  58. const mapStateToProps = (state) => {
  59. return {
  60. comments: state.comments
  61. }
  62. }
  63. const mapDispatchToProps = (dispatch) => {
  64. return {
  65. onSubmit: (comment) => {
  66. dispatch(addComment(comment))
  67. }
  68. }
  69. }
  70. export default connect(
  71. mapStateToProps,
  72. mapDispatchToProps
  73. )(CommentInputContainer)

同样地,对代码的解释都放在了注释当中。这样就构建了一个 Smart 的 CommentInput

Smart CommentApp

接下来的事情都是很简单,我们用 CommentApp 把这两个 Smart 的组件组合起来,把 src/CommentApp.js 移动到 src/containers/CommentApp.js,把里面的内容替换为:

  1. import React, { Component } from 'react'
  2. import CommentInput from './CommentInput'
  3. import CommentList from './CommentList'
  4. export default class CommentApp extends Component {
  5. render() {
  6. return (
  7. <div className='wrapper'>
  8. <CommentInput />
  9. <CommentList />
  10. </div>
  11. )
  12. }
  13. }

原本很复杂的 CommentApp 现在变得异常简单,因为它的逻辑都分离到了两个 Smart 组件里面去了。原来的 CommentApp 确实承载了太多它不应该承担的责任。分离这些逻辑对我们代码的维护和管理也会带来好处。

最后一步,修改 src/index.js

  1. import React from 'react'
  2. import ReactDOM from 'react-dom'
  3. import { createStore } from 'redux'
  4. import { Provider } from 'react-redux'
  5. import CommentApp from './containers/CommentApp'
  6. import commentsReducer from './reducers/comments'
  7. import './index.css'
  8. const store = createStore(commentsReducer)
  9. ReactDOM.render(
  10. <Provider store={store}>
  11. <CommentApp />
  12. </Provider>,
  13. document.getElementById('root')
  14. );

通过 commentsReducer 构建一个 store,然后让 Provider 把它传递下去,这样我们就完成了最后的重构。

我们最后的组件树是这样的:

实例图片

文件目录:

  1. src
  2. ├── components
  3. ├── Comment.js
  4. ├── CommentInput.js
  5. └── CommentList.js
  6. ├── containers
  7. ├── CommentApp.js
  8. ├── CommentInput.js
  9. └── CommentList.js
  10. reducers
  11. └── comments.js
  12. ├── index.css
  13. └── index.js

所有代码可以在这里找到: comment-app3


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