codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Validating Props easily with React PropTypes

Andreas Reiterer
codeburst
Published in
6 min readSep 25, 2017

--

Introduction

What the heck are React PropTypes?

import React from 'react';
import PropTypes from 'prop-types';
const Person = (props) => <div>
<h1>{props.firstName} {props.lastName}</h1>
{props.country ? <p>Country: {props.country}</p> : null}
</div>;
Person.propTypes = {
firstName:PropTypes.string,
lastName:PropTypes.string,
country:PropTypes.string
};
export default Person;

Data Type Validation

Basic data types, arrays and objects

Person.propTypes = {
email: PropTypes.string,
age: PropTypes.number,
worksRemote: PropTypes.bool,
updateCallback: PropTypes.func
}
PropTypes.array,
PropTypes.arrayOf(PropTypes.string),
PropTypes.object,
PropTypes.objectOf(PropTypes.number)

Complex data types

Person.propTypes = { 
car: PropTypes.shape({
registrationNumber: PropTypes.string,
year: PropTypes.number
})
}

Specifying a Range of Valid Prop Values

Person.propTypes = {
gender: PropTypes.oneOf([
'female', 'male'
])
}
PropTypes.oneOfType([
PropTypes.string,
PropTypes.number
])

Flagging Props as Mandatory

[...]const Person = (props) => <div> 
<h1>{props.firstName} {props.lastName}</h1>
{props.country ? <p>Country: {props.country}</p> : null}
</div>;
Person.propTypes = {
firstName:PropTypes.string.isRequired,
lastName:PropTypes.string.isRequired,
country:PropTypes.string
};
[...]

Set Default Prop Values

Person.defaultProps = {
country: 'Austria'
}

Wrapping up

Call to Action

Subscribe now: www.andreasreiterer.at/weekly-webdev-newsletter/

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Responses (5)

Write a response