整洁的代码不仅仅是正常运行的代码,更是要求易于阅读、简单易懂、组织整齐。
在本文中,我们将研究八种代码整洁之道。
在阅读这些建议时,要记住这些只是建议!如果你不同意它们中的任何一个,那也完全没关系。
以下这些实践,个人觉得对我自己编写 React 代码很有帮助。
让我们开始吧!
1. 仅对一个条件进行渲染
如果需要在条件为 true 时渲染某些内容,而在条件为 false 时不渲染任何内容,不要使 三元表达式,请改用 &&。
️ 不推荐示例:
- import React, { useState } from 'react'
- export const ConditionalRenderingWhenTrueBad = () => {
- const [showConditionalText, setShowConditionalText] = useState(false)
- const handleClick = () =>
- setShowConditionalText(showConditionalText => !showConditionalText)
- return (
- {/* 三元表达式 */}
- {showConditionalText ?
条件为 True!
: null}- )
- }
推荐示例:
- import React, { useState } from 'react'
- export const ConditionalRenderingWhenTrueGood = () => {
- const [showConditionalText, setShowConditionalText] = useState(false)
- const handleClick = () =>
- setShowConditionalText(showConditionalText => !showConditionalText)
- return (
- {showConditionalText &&
条件为 True!
}- )
- }
2. 每一个条件都进行渲染
如果需要在条件为 true 时渲染某些内容,而在条件为 false 时渲染其他内容。使用三元表达式!
️ 不推荐的示例:
- import React, { useState } from 'react'
- export const ConditionalRenderingBad = () => {
- const [showConditionOneText, setShowConditionOneText] = useState(false)
- const handleClick = () =>
- setShowConditionOneText(showConditionOneText => !showConditionOneText)
- return (
- {/* 条件 True 和 False 都要渲染内容 */}
- {showConditionOneText &&
条件为 True!
}- {!showConditionOneText &&
条件为 Flase!
}- )
- }
推荐示例:
- import React, { useState } from 'react'
- export const ConditionalRenderingGood = () => {
- const [showConditionOneText, setShowConditionOneText] = useState(false)
- const handleClick = () =>
- setShowConditionOneText(showConditionOneText => !showConditionOneText)
- return (
- {showConditionOneText ? (
The condition must be true!
- ) : (
The condition must be false!
- )}
- )
- }
3. Boolean props
Props 值为 true 的推荐省略不写。
️ 不推荐示例:
- import React from 'react'
- const HungryMessage = ({ isHungry }) => (
- {isHungry ? 'I am hungry' : 'I am full'}
- )
- export const BooleanPropBad = () => (
- This person is hungry:
- This person is full:
- )
推荐示例:
- import React from 'react'
- const HungryMessage = ({ isHungry }) => (
- {isHungry ? 'I am hungry' : 'I am full'}
- )
- export const BooleanPropGood = () => (
- This person is hungry:
- {/* 不需要赋值 true,省略 */}
- This person is full:
- )
4. String props
Props 值为 String, 使用双引号,不使用花括号或反引号。
️ 不推荐示例:
- import React from 'react'
- const Greeting = ({ personName }) =>
Hi, {personName}!
- export const StringPropValuesBad = () => (
- )
推荐示例:
- import React from 'react'
- const Greeting = ({ personName }) =>
Hi, {personName}!
- export const StringPropValuesGood = () => (
- )
5. Event handler functions
如果一个事件函数只接受一个参数,不需要传入匿名函数:onChange={e=>handleChange(e)},推荐这种写法:onChange={handleChange} 。
️ 不推荐示例:
- import React, { useState } from 'react'
- export const UnnecessaryAnonymousFunctionsBad = () => {
- const [inputValue, setInputValue] = useState('')
- const handleChange = e => {
- setInputValue(e.target.value)
- }
- return (
- <>
- {/* 事件只有一个参数,不需要匿名函数*/}
- handleChange(e)} />
- >
- )
- }
推荐示例:
- import React, { useState } from 'react'
- export const UnnecessaryAnonymousFunctionsGood = () => {
- const [inputValue, setInputValue] = useState('')
- const handleChange = e => {
- setInputValue(e.target.value)
- }
- return (
- <>
- >
- )
- }
6. components as props
将组件作为参数传递给另一个组件时,如果该组件不接受任何参数,则无需将该传递的组件包装在函数中。
️ 不推荐示例:
- import React from 'react'
- const CircleIcon = () => (
- )
- const ComponentThatAcceptsAnIcon = ({ IconComponent }) => (
Below is the icon component prop I was given:
- )
- export const UnnecessaryAnonymousFunctionComponentsBad = () => (
- {/* 组件不需要包装在函数中 */}
} /> - )
推荐示例:
- import React from 'react'
- const CircleIcon = () => (
- )
- const ComponentThatAcceptsAnIcon = ({ IconComponent }) => (
Below is the icon component prop I was given:
- )
- export const UnnecessaryAnonymousFunctionComponentsGood = () => (
- )
7. undefined props
如果参数为 undefined 是允许的,那么不要提供 undefined 作为回退值。
️ 不推荐示例:
- import React from 'react'
- const ButtonOne = ({ handleClick }) => (
- )
- const ButtonTwo = ({ handleClick }) => {
- const noop = () => {}
- return
- }
- export const UndefinedPropsBad = () => (
alert('Clicked!')} /> alert('Clicked!')} /> - )
推荐示例:
- import React from 'react'
- const ButtonOne = ({ handleClick }) => (
- )
- export const UndefinedPropsGood = () => (
alert('Clicked!')} /> - )
8. 设置 state 依赖先前的 state
如果新 state 依赖于先前 state,则始终将 state 设置为先前 state 的函数。可以批处理 React 状态更新。
️ 不推荐示例:
- import React, { useState } from 'react'
- export const PreviousStateBad = () => {
- const [isDisabled, setIsDisabled] = useState(false)
- const toggleButton = () => setIsDisabled(!isDisabled)
- const toggleButton2Times = () => {
- for (let i = 0; i < 2; i++) {
- toggleButton()
- }
- }
- return (
- I'm {isDisabled ? 'disabled' : 'enabled'}
- )
- }
推荐示例:
- import React, { useState } from 'react'
- export const PreviousStateGood = () => {
- const [isDisabled, setIsDisabled] = useState(false)
- {/* 推荐设置为函数 */}
- const toggleButton = () => setIsDisabled(isDisabled => !isDisabled)
- const toggleButton2Times = () => {
- for (let i = 0; i < 2; i++) {
- toggleButton()
- }
- }
- return (
- I'm {isDisabled ? 'disabled' : 'enabled'}
- )
- }
以上就是我推荐的几个写出整洁的 React 代码的实践。
最后,恭喜你读完了本文,欢迎留言交流~
原文地址:https://dev.to/thawkin3/react-clean-code-simple-ways-to-write-better-and-cleaner-code-2loa
翻译/润色:ViktorHub
本文题目:【译】React代码整洁之道
网页网址:http://www.mswzjz.cn/qtweb/news4/316154.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能