美文网首页
React 代码规范

React 代码规范

作者: xiaodu | 来源:发表于2016-12-30 12:12 被阅读0次

作者:陈学家 链接:https://zhuanlan.zhihu.com/p/21458464
来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

内容目录:

  • 关于
  • 基础规范
  • 组件结构
  • 命名规范
  • jsx 书写规范
  • eslint-plugin-react

关于
在代码的设计上,每个团队可能都有一定的代码规范和模式,好的代码规范能够提高代码的可读性便于协作沟通,好的模式能够上层设计上避免不必要的 bug 出现。本节会参考社区提供一些 React 的规范和优秀的设计模式。

基础规范

  1. 统一全部采用 Es6
  2. 组件文件名称采用大驼峰命名

组件结构
总体规则:** stateless(Function)** 优先于** Es6 Class** 优先于 React.createClass书写规则: 规范组件内部方法的定义顺序

Es6 class 定义规范:

  1. static 方法
  2. constructor
  3. getChildContext
  4. componentWillMount
  5. componentDidMount
  6. componentWillReceiveProps
  7. shouldComponentUpdate
  8. componentWillUpdate
  9. componentDidUpdate
  10. componentWillUnmount
  11. clickHandlers + eventHandlers 如 onClickSubmit() 或 onChangeDescription()
  12. getter methods for render 如 getSelectReason() 或 getFooterContent()
  13. render methods 如 renderNavigation() 或 renderProfilePicture()
  14. render

以 Es6 Class 定义的组件为例;

const defaultProps = {
   name: 'Guest'
};
const propTypes = { 
  name: React.PropTypes.string
};
class Person extends React.Component { 
  
  // 构造函数 
  constructor (props) { 
    super(props);
     // 定义 state 
    this.state = { smiling: false }; 
    // 定义 eventHandler 
    this.handleClick = this.handleClick.bind(this); 
  } 

  // 生命周期方法 
  componentWillMount () {}, 
  componentDidMount () {}, 
  componentWillUnmount () {}, 

  // getters and setters 
  get attr() {} 
  // handlers 
  handleClick() {}, 
  // render 
  renderChild() {}, 
  render () {},
}
/** 
  * 类变量定义 
  */
Person.defaultProps = defaultProps;

/** 
  * 统一都要定义 propTypes 
  * @type {Object} 
  */
Person.propTypes = propTypes;

命名规范

  • 组件名称:大驼峰
  • 属性名称:小驼峰
  • 事件处理函数:handleSomething
  • 自定义事件属性名称:onSomething={this.handleSomething}
  • key: 不能使用数组 index ,构造或使用唯一的 id
  • 组件方法名称:避免使用下划线开头的命名

jsx 书写规范

  • 自闭合
// bad
<Foo className="stuff"></Foo>

// good
<Foo className="stuff" />
  • 属性对齐
// bad
<Foo superLongParam="bar" 
     anotherSuperLongParam="baz" />
// good
<Foo superLongParam="bar" 
     anotherSuperLongParam="baz"
/>
// if props fit in one line then keep it on the same line
<Foo bar="bar" />
  • 返回
// bad
render() {
  return 
    <MyComponent className="long body" foo="bar"> 
      <MyChild />
    </MyComponent>;
}

// good
render() { 
  return ( 
    <MyComponent className="long body" foo="bar"> 
      <MyChild /> 
    </MyComponent> 
  );
}

// good, when single line
render() { 
  const body = <div>hello</div>; 
  return <MyComponent>{body}</MyComponent>;
}

eslint-plugin-react
规范可以使用 eslint-plugin-react 插件来强制实施,规则和配置可查看 https://github.com/yannickcr/eslint-plugin-react

更多 react 代码规范可参考 https://github.com/airbnb/javascript/tree/master/react

相关文章

  • React Native 代码规范

    本规范主要用于React Native项目,原则是提升效率、规避风险。React/JSX代码规范ES6代码规范项目...

  • React代码规范

    解除React一段时间了,作为一个初创型项目,已经上来就开始撸代码,感觉代码写起来非常随意,项目中lint配置也是...

  • React 代码规范

    作者:陈学家 链接:https://zhuanlan.zhihu.com/p/21458464来源:知乎著作权归作...

  • React代码规范

    React代码规范 components 展示性组件里面一般存放ui组件,负责组件的外表,也就是组件如何渲染,具有...

  • 代码规范

    规范: javascript-airbnb react html css 代码reviewchecklist: 规...

  • React Native代码规范

    React Native基于0.43.4拆包后代码规范 可能造成Crash或功能失效 1.使用变量要做判断保护❌错...

  • React 项目中引入 Husky 6.x 和 Lint-sta

    在 React 项目中引入 ESLint + Perttier 做代码规范[https://www.jianshu...

  • React最佳实践

    tags:开发随笔 代码风格 用ES6,遵循Airbnb的React编码规范和javascript 编码规范。两个...

  • React 项目根目录中的 tsconfig.json 文件说明

    在React 项目中引入 TSLint 做代码规范这篇文章中,介绍了如何在Create React App项目中引...

  • React 书写规范

    搜集并总结的一些React书写规范,帮助使用React开发者更好的构建项目中的代码。 基本规范 每个文件只写一个模...

网友评论

      本文标题:React 代码规范

      本文链接:https://www.haomeiwen.com/subject/lhnpvttx.html