Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
React.js Essentials

You're reading from   React.js Essentials A fast-paced guide to designing and building scalable and maintainable web apps with React.js

Arrow left icon
Product type Paperback
Published in Aug 2015
Publisher Packt
ISBN-13 9781783551620
Length 208 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Artemij Fedosejev Artemij Fedosejev
Author Profile Icon Artemij Fedosejev
Artemij Fedosejev
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. Installing Powerful Tools for Your Project 2. Create Your First React Element FREE CHAPTER 3. Create Your First React Component 4. Make Your React Components Reactive 5. Use Your React Components with Another Library 6. Update Your React Components 7. Build Complex React Components 8. Test Your React Application with Jest 9. Supercharge Your React Architecture with Flux 10. Prepare Your React Application for Painless Maintenance with Flux Index

Validating React component properties


In React, there is a way to validate the component properties using the component's propTypes object:

propTypes: {
  propertyName: validator
}

In this object, you need to specify a property name and a validator function that will determine whether a property is valid or not. React provides some predefined validators for you to reuse. They are all available in the React.PropTypes object:

  • React.PropTypes.number: This will validate whether a property is a number or not

  • React.PropTypes.string: This will validate whether a property is a string or not

  • React.PropTypes.bool: This will validate whether a property is a Boolean or not

  • React.PropTypes.object: This will validate whether a property is an object or not

  • React.PropTypes.element: This will validate whether a property is a React element or not

For a complete list of the React.PropTypes validators, you can check the docs at https://facebook.github.io/react/docs/reusable-components.html#prop-validation.

By default...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image