与ESLint反应PropType

时间:2019-09-18 09:37:25

标签: javascript reactjs eslint react-proptypes

开始使用ESLint并遇到PropType问题,目前我有一个道具children,现在让我们说这个道具是string。我遇到了一个错误'children' is missing in props validationeslint(react/prop-types),要解决此问题,我就像这样使用PropTypes

CartProvider.propTypes = {
  children: PropTypes.string,
}

以上解决了问题,然后又遇到了另一个问题propType "children" is not required, but has no corresponding defaultProps declaration.eslint(react/require-default-props)

为解决此问题,我添加了另一个PropType,如下所示:

CartProvider.defaultProps = {
  children: PropTypes.string,
}

所以我的理解是,每次使用道具时,我都需要使用propTypedefaultProps。好的,这可以解决基于string的prop的问题。但是实际上,这个道具是一个array,然后使用array我得到了其他问题Prop type数组is forbiddeneslint(react/forbid-prop-types)

请帮助我理解为什么ESLint为什么将这些道具标记为错误,我知道如何禁用它,但是我想了解为什么会发生它,然后编写更好的代码。

这是一个示例项目:

CartContext

import React from 'react'
import PropTypes from 'prop-types'

export const CartContext = React.createContext(null)

export const CartProvider = ({ children }) => {
  const [cartTotal, setCartTotal] = React.useState(0)
  const incrementCartTotal = () => setCartTotal(cartTotal + 1)

  return (
    <CartContext.Provider
      value={{
        cartTotal,
        incrementCartTotal,
      }}
    >
      {children}
    </CartContext.Provider>
  )
}

CartProvider.propTypes = {
  children: PropTypes.string,
}

CartProvider.defaultProps = {
  children: PropTypes.string,
}

应用

import React from 'react'
import { CartContext, CartProvider } from './CartContext'

function CartTotalItems() {
  const { cartTotal } = React.useContext(CartContext)
  return (
    <p>
      Total items currently in cart:
      {cartTotal}
    </p>
  )
}

function AddToCart() {
  const { incrementCartTotal } = React.useContext(CartContext)
  return (
    <button type="button" onClick={incrementCartTotal}>
      Add to cart
    </button>
  )
}

export default function App() {
  return (
    <CartProvider>
      <CartTotalItems />
      <AddToCart />
    </CartProvider>
  )
}

更新 这对我有用,请删除2个PropTypes并添加以下内容:

CartProvider.propTypes = {
  children: PropTypes.node.isRequired,
}

2 个答案:

答案 0 :(得分:0)

您误解了type of children并混淆了use of defaultProps

// Use for initial value
CartProvider.defaultProps = {
  counter: 10,

/* 
  You declared the initial value to be the value of `PropTypes.string`
  children: PropTypes.string
*/
}
// Children are always an Array of `ReactElement`/ `ReactElement` node.
CartProvider.propTypes = {
  counter: PropTypes.number,

  children: PropTypes.node.isRequired,

/* Same
  children: PropTypes.oneOfType([
        PropTypes.arrayOf(PropTypes.node),
        PropTypes.node
    ]).isRequired
*/

/*
  props.children can't be a string.
  children: PropTypes.string,
*/
}

答案 1 :(得分:0)

defaultProps应该设置一个值,而不是再次使用Proptypes

CartProvider.propTypes = {
  children: PropTypes.string,
}

CartProvider.defaultProps = {
  children: "This is chidlren default string"
}