You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-require-props

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-require-props

Define property schemas for React.js components.

0.0.1
latest
Source
npmnpm
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

React Require Props

This simple library assists with enforcing data schemas for React.js component properties. It can theoretically be used to verify data types within any object, too.

Installation

npm install react-require-props --save

...or

yarn add react-require-props

Argument Reference

RequireProps(componentName, props, required, other, disabled);
  • componentName (string): The name of your Component. Helpful for debugging.
  • props (object): The props object of your component.
  • required (array|object): Which properties are required? See below for examples.
  • other (object): Data type validations for non-required properties. See below for examples.
  • disabled (boolean): If true, the validations will not run.

Basic Usage

  • Use RequireProps in the constructor of your component:
import React from 'react';
import RequireProps from 'react-require-props';

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    RequireProps('MyComponent', props, ['image', 'text']);
  }
}
  • Then, your components will throw an error if they're missing a required property.
<MyComponent image='./demo.jpg' text='Hello, world!' />
<MyComponent text='Hello, world!' /> {/* <-- Throws an error */}

Advanced Usage: Type Hinting

RequiredProps also allows you to enforce specific data types for properties:

RequireProps('MyComponent', props, {
  'image': Array,
  'text': String
});
<MyComponent text='Hello, world!' /> {/* <-- Throws an error */}
<MyComponent image='./demo.jpg' text='Oops.' /> {/* <-- Throws an error */}
<MyComponent image={['./demo.jpg', 'Demo']} text='All good!' />

Types available are:

  • String
  • Boolean
  • Number
  • Function
  • Array
  • Object

Advanced Usage: Non-Required Type Hinting

You can also enforce the data type of parameters which aren't required. This can be achieved by passing in a fourth argument to the function:

RequireProps('MyComponent', props, {
  'image': Array,
  'text': String
}, {
  visible: Boolean
});
<MyComponent image={['./demo.jpg', 'Demo']} text='All good!' />
<MyComponent image={['./demo.jpg', 'Demo']} text='All good!' visible={true} />
<MyComponent image={['./demo.jpg', 'Demo']} text='Oops.' visible='yes' /> {/* <-- Throws an error */}

Keywords

react

FAQs

Package last updated on 02 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts