React Interview Questions & Answers
Click if you like the project. Pull Request are highly appreciated.
Table of Contents
Core React
- What is React?
React is an open-source frontend JavaScript library which is used for building user interfaces especially for single page applications. It is used for handling view layer for web and mobile apps. React was created by Jordan Walke, a software engineer working for Facebook. React was first deployed on Facebook’s News Feed in 2011 and on Instagram in 2012. - What are the major features of React?
The major features of React are:- It uses VirtualDOM instead RealDOM considering that RealDOM manipulations are expensive.
- Supports server-side rendering.
- Follows Unidirectional* data flow or data binding.
- Uses reusable/composable UI components to develop the view.
What is JSX?
JSX is a XML-like syntax extension to ECMAScript (the acronym stands for JavaScript XML). Basically it just provides syntactic sugar for theReact.createElement()
function, giving us expressiveness of JavaScript along with HTML like template syntax.
In the example below text inside<h1>
tag return as JavaScript function to the render function.class App extends React.Component {
render() {
return(
<div>
<h1>{'Welcome to React world!'}</h1>
</div>
)
}
}
What is the difference between Element and Component?
An Element is a plain object describing what you want to appear on the screen in terms of the DOM nodes or other components. Elements can contain other Elements in their props. Creating a React element is cheap. Once an element is created, it is never mutated.
The object representation of React Element would be as follows:const element = React.createElement(
'div',
{id: 'login-btn'},
'Login'
)
The above
React.createElement()
function returns an object:{
type: 'div',
props: {
children: 'Login',
id: 'login-btn'
}
}
And finally it renders to the DOM using
ReactDOM.render()
:<div id='login-btn'>Login</div>
Whereas a component can be declared in several different ways. It can be a class with a
render()
method. Alternatively, in simple cases, it can be defined as a function. In either case, it takes props as an input, and returns a JSX tree as the output:const Button = ({ onLogin }) =>
<div id={'login-btn'} onClick={onLogin} />
Then JSX gets transpiled to a
React.createElement()
function tree:const Button = ({ onLogin }) => React.createElement(
'div',
{ id: 'login-btn', onClick: onLogin },
'Login'
)
How to create components in React?
There are two possible ways to create a component.- Function Components: This is the simplest way to create a component. Those are pure JavaScript functions that accept props object as first parameter and return React elements:
``jsx function Greeting({ message }) { return <h1>{
Hello, ${message}`}
- Function Components: This is the simplest way to create a component. Those are pure JavaScript functions that accept props object as first parameter and return React elements:
}
1. **Class Components:** You can also use ES6 class to define a component. The above function component can be written as:
```jsx
class Greeting extends React.Component {
render() {
return <h1>{`Hello, ${this.props.message}`}</h1>
}
}
- When to use a Class Component over a Function Component?
If the component needs state or lifecycle methods then use class component otherwise use function component. - What are Pure Components?
React.PureComponent
is exactly the same asReact.Component
except that it handles theshouldComponentUpdate()
method for you. When props or state changes, PureComponent will do a shallow comparison on both props and state. Component on the other hand won’t compare current props and state to next out of the box. Thus, the component will re-render by default whenevershouldComponentUpdate
is called. What is state in React?
State of a component is an object that holds some information that may change over the lifetime of the component. We should always try to make our state as simple as possible and minimize the number of stateful components. Let’s create an user component with message state,class User extends React.Component {
constructor(props) {
super(props)
this.state = {
message: 'Welcome to React world'
}
}
render() {
return (
<div>
<h1>{this.state.message}</h1>
</div>
)
}
}
State is similar to props, but it is private and fully controlled by the component. i.e, It is not accessible to any component other than the one that owns and sets it.- What are props in React?
Props are inputs to components. They are single values or objects containing a set of values that are passed to components on creation using a naming convention similar to HTML-tag attributes. They are data passed down from a parent component to a child component.
The primary purpose of props in React is to provide following component functionality:- Pass custom data to your component.
- Trigger state changes.
- Use via
this.props.reactProp
inside component’srender()
method.
For example, let us create an element with reactProp
property:
<Element reactProp={'1'} />
This reactProp
(or whatever you came up with) name then becomes a property attached to React’s native props object which originally already exists on all components created using React library.
props.reactProp
- What is the difference between state and props?
Both props and state are plain JavaScript objects. While both of them hold information that influences the output of render, they are different in their functionality with respect to component. Props get passed to the component similar to function parameters whereas state is managed within the component similar to variables declared within a function. Why should we not update the state directly?
If you try to update state directly then it won’t re-render the component.//Wrong
this.state.message = 'Hello world'
Instead use
setState()
method. It schedules an update to a component’s state object. When state changes, the component responds by re-rendering.//Correct
this.setState({ message: 'Hello World' })
Note: You can directly assign to the state object either in constructor or using latest javascript’s class field declaration syntax.
What is the purpose of callback function as an argument of
setState()
?
The callback function is invoked when setState finished and the component gets rendered. SincesetState()
is asynchronous the callback function is used for any post action.
Note: It is recommended to use lifecycle method rather than this callback function.setState({ name: 'John' }, () => console.log('The name has updated and component re-rendered'))
What is the difference between HTML and React event handling?
In HTML, the event name should be in lowercase:
<button onclick='activateLasers()'>
Whereas in React it follows camelCase convention:
<button onClick={activateLasers}>
In HTML, you can return
false
to prevent default behavior:<a href='#' onclick='console.log("The link was clicked."); return false;' />
Whereas in React you must call
preventDefault()
explicitly:function handleClick(event) {
event.preventDefault()
console.log('The link was clicked.')
}
How to bind methods or event handlers in JSX callbacks?
There are 3 possible ways to achieve this:- Binding in Constructor: In JavaScript classes, the methods are not bound by default. The same thing applies for React event handlers defined as class methods. Normally we bind them in constructor. ```javascript class Component extends React.Componenet { constructor(props) { super(props) this.handleClick = this.handleClick.bind(this) }
handleClick() { // … } }
1. **Public class fields syntax:** If you don't like to use bind approach then _public class fields syntax_ can be used to correctly bind callbacks.
```jsx
handleClick = () => {
console.log('this is:', this)
}
<button onClick={this.handleClick}>
{'Click me'}
</button>
- Arrow functions in callbacks: You can use arrow functions directly in the callbacks.
Note: If the callback is passed as prop to child components, those components might do an extra re-rendering. In those cases, it is preferred to go with<button onClick={(event) => this.handleClick(event)}>
{'Click me'}
</button>
.bind()
or public class fields syntax approach considering performance.
How to pass a parameter to an event handler or callback?
You can use an arrow function to wrap around an event handler and pass parameters:<button onClick={() => this.handleClick(id)} />
This is an equivalent to calling
.bind
:<button onClick={this.handleClick.bind(this, id)} />
What are synthetic events in React?
SyntheticEvent
is a cross-browser wrapper around the browser’s native event. It’s API is same as the browser’s native event, includingstopPropagation()
andpreventDefault()
, except the events work identically across all browsers.What is inline conditional expressions?
You can use either if statements or ternary expressions which are available from JS to conditionally render expressions. Apart from these approaches, you can also embed any expressions in JSX by wrapping them in curly braces and then followed by JS logical operator&&
.<h1>Hello!</h1>
{
messages.length > 0 && !isLogin?
<h2>
You have {messages.length} unread messages.
</h2>
:
<h2>
You don't have unread messages.
</h2>
}
What are “key” props and what is the benefit of using them in arrays of elements?
Akey
is a special string attribute you should include when creating arrays of elements. Keys help React identify which items have changed, are added, or are removed.
Most often we use IDs from our data as keys:const todoItems = todos.map((todo) =>
<li key={todo.id}>
{todo.text}
</li>
)
When you don’t have stable IDs for rendered items, you may use the item index as a key as a last resort:
const todoItems = todos.map((todo, index) =>
<li key={index}>
{todo.text}
</li>
)
Note:
- Using indexes for keys is not recommended if the order of items may change. This can negatively impact performance and may cause issues with component state.
- If you extract list item as separate component then apply keys on list component instead of
li
tag. - There will be a warning message in the console if the
key
prop is not present on list items.
- What is the use of refs?
The ref is used to return a reference to the element. They should be avoided in most cases, however, they can be useful when you need a direct access to the DOM element or an instance of a component. How to create refs?
There are two approachesThis is a recently added approach. Refs are created using
React.createRef()
method and attached to React elements via theref
attribute. In order to use refs throughout the component, just assign the ref to the instance property within constructor.class MyComponent extends React.Component {
constructor(props) {
super(props)
this.myRef = React.createRef()
}
render() {
return <div ref={this.myRef} />
}
}
You can also use ref callbacks approach regardless of React version. For example, the search bar component’s input element accessed as follows,
class SearchBar extends Component {
constructor(props) {
super(props);
this.txtSearch = null;
this.state = { term: '' };
this.setInputSearchRef = e => {
this.txtSearch = e;
}
}
onInputChange(event) {
this.setState({ term: this.txtSearch.value });
}
render() {
return (
<input
value={this.state.term}
onChange={this.onInputChange.bind(this)}
ref={this.setInputSearchRef} />
);
}
}
You can also use refs in function components using closures.
Note: You can also use inline ref callbacks even though it is not a recommended approach
What are forward refs?
Ref forwarding is a feature that lets some components take a ref they receive, and pass it further down to a child. ```jsx const ButtonElement = React.forwardRef((props, ref) => ( ));
// Create ref to the DOM button: const ref = React.createRef();
22. Which is preferred option with in callback refs and findDOMNode()?<br />
<br />It is preferred to use _callback refs_ over `findDOMNode()` API. Because `findDOMNode()` prevents certain improvements in React in the future.
<br />The **legacy** approach of using `findDOMNode`:
```javascript
class MyComponent extends Component {
componentDidMount() {
findDOMNode(this).scrollIntoView()
}
render() {
return <div />
}
}
The recommended approach is:
class MyComponent extends Component {
componentDidMount() {
this.node.scrollIntoView()
}
render() {
return <div ref={node => this.node = node} />
}
}
Why are String Refs legacy?
If you worked with React before, you might be familiar with an older API where theref
attribute is a string, likeref={'textInput'}
, and the DOM node is accessed asthis.refs.textInput
. We advise against it because string refs have below issues, and are considered legacy. String refs were removed in React v16.- They force React to keep track of currently executing component. This is problematic because it makes react module stateful, and thus causes weird errors when react module is duplicated in the bundle.
- They are not composable — if a library puts a ref on the passed child, the user can’t put another ref on it. Callback refs are perfectly composable.
- They don’t work with static analysis like Flow. Flow can’t guess the magic that framework does to make the string ref appear on
this.refs
, as well as its type (which could be different). Callback refs are friendlier to static analysis. - It doesn’t work as most people would expect with the “render callback” pattern (e.g. ) ```jsx class MyComponent extends Component { renderRow = (index) => { // This won’t work. Ref will get attached to DataTable rather than MyComponent: return ;
// This would work though! Callback refs are awesome. return this[‘input-‘ + index] = input} />; }
render() { return
} } ``` What is Virtual DOM?
The Virtual DOM (VDOM) is an in-memory representation of Real DOM. The representation of a UI is kept in memory and synced with the “real” DOM. It’s a step that happens between the render function being called and the displaying of elements on the screen. This entire process is called reconciliation.How Virtual DOM works?
The Virtual DOM works in three simple steps.Whenever any underlying data changes, the entire UI is re-rendered in Virtual DOM representation.
Then the difference between the previous DOM representation and the new one is calculated.
Once the calculations are done, the real DOM will be updated with only the things that have actually changed.
What is the difference between Shadow DOM and Virtual DOM?
The Shadow DOM is a browser technology designed primarily for scoping variables and CSS in web components. The Virtual DOM is a concept implemented by libraries in JavaScript on top of browser APIs.- What is React Fiber?
Fiber is the new reconciliation engine or reimplementation of core algorithm in React v16. The goal of React Fiber is to increase its suitability for areas like animation, layout, gestures, ability to pause, abort, or reuse work and assign priority to different types of updates; and new concurrency primitives. - What is the main goal of React Fiber?
The goal of React Fiber is to increase its suitability for areas like animation, layout, and gestures. Its headline feature is incremental rendering: the ability to split rendering work into chunks and spread it out over multiple frames. What are controlled components?
A component that controls the input elements within the forms on subsequent user input is called Controlled Component, i.e, every state mutation will have an associated handler function.
For example, to write all the names in uppercase letters, we use handleChange as below,handleChange(event) {
this.setState({value: event.target.value.toUpperCase()})
}
What are uncontrolled components?
The Uncontrolled Components are the ones that store their own state internally, and you query the DOM using a ref to find its current value when you need it. This is a bit more like traditional HTML.
In the below UserProfile component, thename
input is accessed using ref.class UserProfile extends React.Component {
constructor(props) {
super(props)
this.handleSubmit = this.handleSubmit.bind(this)
this.input = React.createRef()
}
handleSubmit(event) {
alert('A name was submitted: ' + this.input.current.value)
event.preventDefault()
}
render() {
return (
<form onSubmit={this.handleSubmit}>
<label>
{'Name:'}
<input type="text" ref={this.input} />
</label>
<input type="submit" value="Submit" />
</form>
);
}
}
In most cases, it’s recommend to use controlled components to implement forms.
- What is the difference between createElement and cloneElement?
JSX elements will be transpiled toReact.createElement()
functions to create React elements which are going to be used for the object representation of UI. WhereascloneElement
is used to clone an element and pass it new props. - What is Lifting State Up in React?
When several components need to share the same changing data then it is recommended to lift the shared state up to their closest common ancestor. That means if two child components share the same data from its parent, then move the state to parent instead of maintaining local state in both of the child components. - What are the different phases of component lifecycle?
The component lifecycle has three distinct lifecycle phases:- Mounting: The component is ready to mount in the browser DOM. This phase covers initialization from
constructor()
,getDerivedStateFromProps()
,render()
, andcomponentDidMount()
lifecycle methods. - Updating: In this phase, the component get updated in two ways, sending the new props and updating the state either from
setState()
orforceUpdate()
. This phase coversgetDerivedStateFromProps()
,shouldComponentUpdate()
,render()
,getSnapshotBeforeUpdate()
andcomponentDidUpdate()
lifecycle methods. - Unmounting: In this last phase, the component is not needed and get unmounted from the browser DOM. This phase includes
componentWillUnmount()
lifecycle method.
- Mounting: The component is ready to mount in the browser DOM. This phase covers initialization from
It’s worth mentioning that React internally has a concept of phases when applying changes to the DOM. They are separated as follows
- Render The component will render without any side-effects. This applies for Pure components and in this phase, React can pause, abort, or restart the render.
- Pre-commit Before the component actually applies the changes to the DOM, there is a moment that allows React to read from the DOM through the
getSnapshotBeforeUpdate()
. - Commit React works with the DOM and executes the final lifecycles respectively
componentDidMount()
for mounting,componentDidUpdate()
for updating, andcomponentWillUnmount()
for unmounting.
React 16.3+ Phases (or an interactive version)
Before React 16.3
- What are the lifecycle methods of React?
React 16.3+- getDerivedStateFromProps: Invoked right before calling
render()
and is invoked on every render. This exists for rare use cases where you need derived state. Worth reading if you need derived state. - componentDidMount: Executed after first rendering and here all AJAX requests, DOM or state updates, and set up event listeners should occur.
- shouldComponentUpdate: Determines if the component will be updated or not. By default it returns
true
. If you are sure that the component doesn’t need to render after state or props are updated, you can return false value. It is a great place to improve performance as it allows you to prevent a re-render if component receives new prop. - getSnapshotBeforeUpdate: Executed right before rendered output is committed to the DOM. Any value returned by this will be passed into
componentDidUpdate()
. This is useful to capture information from the DOM i.e. scroll position. - componentDidUpdate: Mostly it is used to update the DOM in response to prop or state changes. This will not fire if
shouldComponentUpdate()
returnsfalse
. - componentWillUnmount It will be used to cancel any outgoing network requests, or remove all event listeners associated with the component.
- getDerivedStateFromProps: Invoked right before calling
Before 16.3
- componentWillMount: Executed before rendering and is used for App level configuration in your root component.
- componentDidMount: Executed after first rendering and here all AJAX requests, DOM or state updates, and set up event listeners should occur.
- componentWillReceiveProps: Executed when particular prop updates to trigger state transitions.
- shouldComponentUpdate: Determines if the component will be updated or not. By default it returns
true
. If you are sure that the component doesn’t need to render after state or props are updated, you can return false value. It is a great place to improve performance as it allows you to prevent a re-render if component receives new prop. - componentWillUpdate: Executed before re-rendering the component when there are props & state changes confirmed by
shouldComponentUpdate()
which returns true. - componentDidUpdate: Mostly it is used to update the DOM in response to prop or state changes.
- componentWillUnmount: It will be used to cancel any outgoing network requests, or remove all event listeners associated with the component.
- What are Higher-Order Components?
A higher-order component (HOC) is a function that takes a component and returns a new component. Basically, it’s a pattern that is derived from React’s compositional nature.
We call them pure components because they can accept any dynamically provided child component but they won’t modify or copy any behavior from their input components.const EnhancedComponent = higherOrderComponent(WrappedComponent)
- What are Higher-Order Components?
- HOC can be used for many use cases:
- Code reuse, logic and bootstrap abstraction.
- Render hijacking.
- State abstraction and manipulation.
- Props manipulation.
How to create props proxy for HOC component?
You can add/edit props passed to the component using props proxy pattern like this:function HOC(WrappedComponent) {
return class Test extends Component {
render() {
const newProps = {
title: 'New Header',
footer: false,
showFeatureX: false,
showFeatureY: true
}
return <WrappedComponent {...this.props} {...newProps} />
}
}
}
What is context?
Context provides a way to pass data through the component tree without having to pass props down manually at every level. For example, authenticated user, locale preference, UI theme need to be accessed in the application by many components.const {Provider, Consumer} = React.createContext(defaultValue)
What is children prop?
Children is a prop (this.prop.children
) that allow you to pass components as data to other components, just like any other prop you use. Component tree put between component’s opening and closing tag will be passed to that component aschildren
prop.
There are a number of methods available in the React API to work with this prop. These includeReact.Children.map
,React.Children.forEach
,React.Children.count
,React.Children.only
,React.Children.toArray
.
A simple usage of children prop looks as below, ```jsx const MyDiv = React.createClass({ render: function() { return{this.props.children}} })
ReactDOM.render(
39. How to write comments in React?<br />
<br />The comments in React/JSX are similar to JavaScript Multiline comments but are wrapped in curly braces.
<br />**Single-line comments:**
```jsx
<div>
{/* Single-line comments(In vanilla JavaScript, the single-line comments are represented by double slash(//)) */}
{`Welcome ${user}, let's play React`}
</div>
Multi-line comments:
<div>
{/* Multi-line comments for more than
one line */}
{`Welcome ${user}, let's play React`}
</div>
What is the purpose of using super constructor with props argument?
A child class constructor cannot make use ofthis
reference untilsuper()
method has been called. The same applies for ES6 sub-classes as well. The main reason of passing props parameter tosuper()
call is to accessthis.props
in your child constructors.
Passing props:class MyComponent extends React.Component {
constructor(props) {
super(props)
console.log(this.props) // prints { name: 'John', age: 42 }
}
}
Not passing props:
class MyComponent extends React.Component {
constructor(props) {
super()
console.log(this.props) // prints undefined
// but props parameter is still available
console.log(props) // prints { name: 'John', age: 42 }
}
render() {
// no difference outside constructor
console.log(this.props) // prints { name: 'John', age: 42 }
}
}
The above code snippets reveals that
this.props
is different only within the constructor. It would be the same outside the constructor.- What is reconciliation?
When a component’s props or state change, React decides whether an actual DOM update is necessary by comparing the newly returned element with the previously rendered one. When they are not equal, React will update the DOM. This process is called reconciliation. How to set state with a dynamic key name?
If you are using ES6 or the Babel transpiler to transform your JSX code then you can accomplish this with computed property names.handleInputChange(event) {
this.setState({ [event.target.id]: event.target.value })
}
What would be the common mistake of function being called every time the component renders?
You need to make sure that function is not being called while passing the function as a parameter.render() {
// Wrong: handleClick is called instead of passed as a reference!
return <button onClick={this.handleClick()}>{'Click Me'}</button>
}
Instead, pass the function itself without parenthesis:
render() {
// Correct: handleClick is passed as a reference!
return <button onClick={this.handleClick}>{'Click Me'}</button>
}
Why is it necessary to capitalize component names?
It is necessary because components are not DOM elements, they are constructors. Also, in JSX lowercase tag names are referring to HTML elements, not components.Why React uses
className
overclass
attribute?
class
is a keyword in JavaScript, and JSX is an extension of JavaScript. That’s the principal reason why React usesclassName
instead ofclass
. Pass a string as theclassName
prop.render() {
return <span className={'menu navigation-menu'}>{'Menu'}</span>
}
What are fragments?
It’s common pattern in React which is used for a component to return multiple elements. Fragments let you group a list of children without adding extra nodes to the DOM.render() {
return (
<React.Fragment>
<ChildA />
<ChildB />
<ChildC />
</React.Fragment>
)
}
There is also a shorter syntax, but it’s not supported in many tools:
render() {
return (
<>
<ChildA />
<ChildB />
<ChildC />
</>
)
}
Why fragments are better than container divs?
- Fragments are a bit faster and use less memory by not creating an extra DOM node. This only has a real benefit on very large and deep trees.
- Some CSS mechanisms like Flexbox and CSS Grid have a special parent-child relationships, and adding divs in the middle makes it hard to keep the desired layout.
- The DOM Inspector is less cluttered.
What are portals in React?
Portal is a recommended way to render children into a DOM node that exists outside the DOM hierarchy of the parent component.ReactDOM.createPortal(child, container)
The first argument is any render-able React child, such as an element, string, or fragment. The second argument is a DOM element.
- What are stateless components?
If the behaviour is independent of its state then it can be a stateless component. You can use either a function or a class for creating stateless components. But unless you need to use a lifecycle hook in your components, you should go for function components. There are a lot of benefits if you decide to use function components here; they are easy to write, understand, and test, a little faster, and you can avoid thethis
keyword altogether. What are stateful components?
If the behaviour of a component is dependent on the state of the component then it can be termed as stateful component. These stateful components are always class components and have a state that gets initialized in theconstructor
.class App extends Component {
constructor(props) {
super(props)
this.state = { count: 0 }
}
render() {
// ...
}
}
How to apply validation on props in React?
When the application is running in development mode, React will automatically check all props that we set on components to make sure they have correct type. If the type is incorrect, React will generate warning messages in the console. It’s disabled in production mode due performance impact. The mandatory props are defined withisRequired
.
The set of predefined prop types:PropTypes.number
PropTypes.string
PropTypes.array
PropTypes.object
PropTypes.func
PropTypes.node
PropTypes.element
PropTypes.bool
PropTypes.symbol
PropTypes.any
We can define propTypes
for User
component as below:
import React from 'react'
import PropTypes from 'prop-types'
class User extends React.Component {
static propTypes = {
name: PropTypes.string.isRequired,
age: PropTypes.number.isRequired
}
render() {
return (
<>
<h1>{`Welcome, ${this.props.name}`}</h1>
<h2>{`Age, ${this.props.age}`}</h2>
</>
)
}
}
Note: In React v15.5 PropTypes were moved from React.PropTypes
to prop-types
library.
- What are the advantages of React?
- Increases the application’s performance with Virtual DOM.
- JSX makes code easy to read and write.
- It renders both on client and server side (SSR).
- Easy to integrate with frameworks (Angular, Backbone) since it is only a view library.
- Easy to write unit and integration tests with tools such as Jest.
- What are the limitations of React?
- React is just a view library, not a full framework.
- There is a learning curve for beginners who are new to web development.
- Integrating React into a traditional MVC framework requires some additional configuration.
- The code complexity increases with inline templating and JSX.
- Too many smaller components leading to over engineering or boilerplate.
What are error boundaries in React v16?
Error boundaries are components that catch JavaScript errors anywhere in their child component tree, log those errors, and display a fallback UI instead of the component tree that crashed.
A class component becomes an error boundary if it defines a new lifecycle method calledcomponentDidCatch(error, info)
orstatic getDerivedStateFromError()
:class ErrorBoundary extends React.Component {
constructor(props) {
super(props)
this.state = { hasError: false }
}
componentDidCatch(error, info) {
// You can also log the error to an error reporting service
logErrorToMyService(error, info)
}
static getDerivedStateFromError(error) {
// Update state so the next render will show the fallback UI.
return { hasError: true };
}
render() {
if (this.state.hasError) {
// You can render any custom fallback UI
return <h1>{'Something went wrong.'}</h1>
}
return this.props.children
}
}
After that use it as a regular component:
<ErrorBoundary>
<MyWidget />
</ErrorBoundary>
How error boundaries handled in React v15?
React v15 provided very basic support for error boundaries usingunstable_handleError
method. It has been renamed tocomponentDidCatch
in React v16.- What are the recommended ways for static type checking?
Normally we use PropTypes library (React.PropTypes
moved to aprop-types
package since React v15.5) for type checking in the React applications. For large code bases, it is recommended to use static type checkers such as Flow or TypeScript, that perform type checking at compile time and provide auto-completion features. - What is the use of
react-dom
package?
Thereact-dom
package provides DOM-specific methods that can be used at the top level of your app. Most of the components are not required to use this module. Some of the methods of this package are:render()
hydrate()
unmountComponentAtNode()
findDOMNode()
createPortal()
What is the purpose of render method of
react-dom
?
This method is used to render a React element into the DOM in the supplied container and return a reference to the component. If the React element was previously rendered into container, it will perform an update on it and only mutate the DOM as necessary to reflect the latest changes.ReactDOM.render(element, container[, callback])
If the optional callback is provided, it will be executed after the component is rendered or updated.
- What is ReactDOMServer?
TheReactDOMServer
object enables you to render components to static markup (typically used on node server). This object is mainly used for server-side rendering (SSR). The following methods can be used in both the server and browser environments:renderToString()
renderToStaticMarkup()
For example, you generally run a Node-based web server like Express, Hapi, or Koa, and you call renderToString
to render your root component to a string, which you then send as response.
// using Express
import { renderToString } from 'react-dom/server'
import MyPage from './MyPage'
app.get('/', (req, res) => {
res.write('<!DOCTYPE html><html><head><title>My Page</title></head><body>')
res.write('<div id="content">')
res.write(renderToString(<MyPage/>))
res.write('</div></body></html>')
res.end()
})
- How to use innerHTML in React?
ThedangerouslySetInnerHTML
attribute is React’s replacement for usinginnerHTML
in the browser DOM. Just likeinnerHTML
, it is risky to use this attribute considering cross-site scripting (XSS) attacks. You just need to pass a__html
object as key and HTML text as value.
In this example MyComponent usesdangerouslySetInnerHTML
attribute for setting HTML markup: ```jsx function createMarkup() { return { __html: ‘First · Second’ } }
function MyComponent() { return
}
61. How to use styles in React?<br />
<br />The `style` attribute accepts a JavaScript object with camelCased properties rather than a CSS string. This is consistent with the DOM style JavaScript property, is more efficient, and prevents XSS security holes.
```jsx
const divStyle = {
color: 'blue',
backgroundImage: 'url(' + imgUrl + ')'
};
function HelloWorldComponent() {
return <div style={divStyle}>Hello World!</div>
}
- Style keys are camelCased in order to be consistent with accessing the properties on DOM nodes in JavaScript (e.g.
node.style.backgroundImage
). - How events are different in React?
Handling events in React elements has some syntactic differences:- React event handlers are named using camelCase, rather than lowercase.
- With JSX you pass a function as the event handler, rather than a string.
- What will happen if you use
setState()
in constructor?
When you usesetState()
, then apart from assigning to the object state React also re-renders the component and all its children. You would get error like this: Can only update a mounted or mounting component. So we need to usethis.state
to initialize variables inside constructor. What is the impact of indexes as keys?
Keys should be stable, predictable, and unique so that React can keep track of elements.
In the below code snippet each element’s key will be based on ordering, rather than tied to the data that is being represented. This limits the optimizations that React can do.{todos.map((todo, index) =>
<Todo
{...todo}
key={index}
/>
)}
If you use element data for unique key, assuming todo.id is unique to this list and stable, React would be able to reorder elements without needing to reevaluate them as much.
{todos.map((todo) =>
<Todo {...todo}
key={todo.id} />
)}
Is it good to use
setState()
incomponentWillMount()
method?
It is recommended to avoid async initialization incomponentWillMount()
lifecycle method.componentWillMount()
is invoked immediately before mounting occurs. It is called beforerender()
, therefore setting state in this method will not trigger a re-render. Avoid introducing any side-effects or subscriptions in this method. We need to make sure async calls for component initialization happened incomponentDidMount()
instead ofcomponentWillMount()
.componentDidMount() {
axios.get(`api/todos`)
.then((result) => {
this.setState({
messages: [...result.data]
})
})
}
What will happen if you use props in initial state?
If the props on the component are changed without the component being refreshed, the new prop value will never be displayed because the constructor function will never update the current state of the component. The initialization of state from props only runs when the component is first created.
The below component won’t display the updated input value:class MyComponent extends React.Component {
constructor(props) {
super(props)
this.state = {
records: [],
inputValue: this.props.inputValue
};
}
render() {
return <div>{this.state.inputValue}</div>
}
}
Using props inside render method will update the value:
class MyComponent extends React.Component {
constructor(props) {
super(props)
this.state = {
record: []
}
}
render() {
return <div>{this.props.inputValue}</div>
}
}
How do you conditionally render components?
In some cases you want to render different components depending on some state. JSX does not renderfalse
orundefined
, so you can use conditional short-circuiting to render a given part of your component only if a certain condition is true.const MyComponent = ({ name, address }) => (
<div>
<h2>{name}</h2>
{address &&
<p>{address}</p>
}
</div>
)
If you need an
if-else
condition then use ternary operator.const MyComponent = ({ name, address }) => (
<div>
<h2>{name}</h2>
{address
? <p>{address}</p>
: <p>{'Address is not available'}</p>
}
</div>
)
Why we need to be careful when spreading props on DOM elements?
When we spread props we run into the risk of adding unknown HTML attributes, which is a bad practice. Instead we can use prop destructuring with...rest
operator, so it will add only required props. For example, ```jsx const ComponentA = () =>
const ComponentB = ({ isDisplay, …domProps }) =>
69. How you use decorators in React?<br />
<br />You can _decorate_ your _class_ components, which is the same as passing the component into a function. **Decorators** are flexible and readable way of modifying component functionality.
```jsx
@setTitle('Profile')
class Profile extends React.Component {
//....
}
/*
title is a string that will be set as a document title
WrappedComponent is what our decorator will receive when
put directly above a component class as seen in the example above
*/
const setTitle = (title) => (WrappedComponent) => {
return class extends React.Component {
componentDidMount() {
document.title = title
}
render() {
return <WrappedComponent {...this.props} />
}
}
}
- Note: Decorators are a feature that didn’t make it into ES7, but are currently a stage 2 proposal.
- How do you memoize a component?
There are memoize libraries available which can be used on function components. For examplemoize
library can memoize the component in another component. ```jsx import moize from ‘moize’ import Component from ‘./components/Component’ // this module exports a non-memoized component
const MemoizedFoo = moize.react(Component)
const Consumer = () => {
71. How you implement Server Side Rendering or SSR?<br />
<br />React is already equipped to handle rendering on Node servers. A special version of the DOM renderer is available, which follows the same pattern as on the client side.
```jsx
import ReactDOMServer from 'react-dom/server'
import App from './App'
ReactDOMServer.renderToString(<App />)
- This method will output the regular HTML as a string, which can be then placed inside a page body as part of the server response. On the client side, React detects the pre-rendered content and seamlessly picks up where it left off.
- How to enable production mode in React?
You should use Webpack’sDefinePlugin
method to setNODE_ENV
toproduction
, by which it strip out things like propType validation and extra warnings. Apart from this, if you minify the code, for example, Uglify’s dead-code elimination to strip out development only code and comments, it will drastically reduce the size of your bundle. - What is CRA and its benefits?
Thecreate-react-app
CLI tool allows you to quickly create & run React applications with no configuration step.
Let’s create Todo App using CRA: ```consoleInstallation
$ npm install -g create-react-app
Create new project
$ create-react-app todo-app $ cd todo-app
Build, test and run
$ npm run build $ npm run test $ npm start
73. It includes everything we need to build a React app:
1. React, JSX, ES6, and Flow syntax support.
2. Language extras beyond ES6 like the object spread operator.
3. Autoprefixed CSS, so you don’t need -webkit- or other prefixes.
4. A fast interactive unit test runner with built-in support for coverage reporting.
5. A live development server that warns about common mistakes.
6. A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps.
74. What is the lifecycle methods order in mounting?<br />
<br />The lifecycle methods are called in the following order when an instance of a component is being created and inserted into the DOM.
1. `constructor()`
2. `static getDerivedStateFromProps()`
3. `render()`
4. `componentDidMount()`
75. What are the lifecycle methods going to be deprecated in React v16?<br />
<br />The following lifecycle methods going to be unsafe coding practices and will be more problematic with async rendering.
1. `componentWillMount()`
2. `componentWillReceiveProps()`
3. `componentWillUpdate()`
Starting with React v16.3 these methods are aliased with `UNSAFE_` prefix, and the unprefixed version will be removed in React v17.
76. What is the purpose of `getDerivedStateFromProps()` lifecycle method?<br />
<br />The new static `getDerivedStateFromProps()` lifecycle method is invoked after a component is instantiated as well as before it is re-rendered. It can return an object to update state, or `null` to indicate that the new props do not require any state updates.
```javascript
class MyComponent extends React.Component {
static getDerivedStateFromProps(props, state) {
// ...
}
}
- This lifecycle method along with
componentDidUpdate()
covers all the use cases ofcomponentWillReceiveProps()
. What is the purpose of
getSnapshotBeforeUpdate()
lifecycle method?
The newgetSnapshotBeforeUpdate()
lifecycle method is called right before DOM updates. The return value from this method will be passed as the third parameter tocomponentDidUpdate()
.class MyComponent extends React.Component {
getSnapshotBeforeUpdate(prevProps, prevState) {
// ...
}
}
This lifecycle method along with
componentDidUpdate()
covers all the use cases ofcomponentWillUpdate()
.- What is the difference between createElement() and cloneElement() methods?
In JSX the React element is transpiled toReact.createElement()
which represents an UI element. WhereasReact.cloneElement()
is used in order to clone an element and pass it new props. What is the recommended way for naming components?
It is recommended to name the component by reference instead of usingdisplayName
.
UsingdisplayName
for naming component:export default React.createClass({
displayName: 'TodoApp',
// ...
})
The recommended approach:
export default class TodoApp extends React.Component {
// ...
}
What is the recommended ordering of methods in component class?
Recommended ordering of methods from mounting to render stage:static
methodsconstructor()
getChildContext()
componentWillMount()
componentDidMount()
componentWillReceiveProps()
shouldComponentUpdate()
componentWillUpdate()
componentDidUpdate()
componentWillUnmount()
- click handlers or event handlers like
onClickSubmit()
oronChangeDescription()
- getter methods for render like
getSelectReason()
orgetFooterContent()
- optional render methods like
renderNavigation()
orrenderProfilePicture()
render()
- What is a switching component?
A switching component is a component that renders one of many components. We need to use object to map prop values to components.
For example, a switching component to display different pages based onpage
prop: ```jsx import HomePage from ‘./HomePage’ import AboutPage from ‘./AboutPage’ import ServicesPage from ‘./ServicesPage’ import ContactPage from ‘./ContactPage’
const PAGES = { home: HomePage, about: AboutPage, services: ServicesPage, contact: ContactPage }
const Page = (props) => { const Handler = PAGES[props.page] || ContactPage
return
// The keys of the PAGES object can be used in the prop types to catch dev-time errors. Page.propTypes = { page: PropTypes.oneOf(Object.keys(PAGES)).isRequired }
82. Why we need to pass a function to setState()?<br />
<br />The reason behind for this is that `setState()` is an asynchronous operation. React batches state changes for performance reasons, so the state may not change immediately after `setState()` is called. That means you should not rely on the current state when calling `setState()` since you can't be sure what that state will be. The solution is to pass a function to `setState()`, with the previous state as an argument. By doing this you can avoid issues with the user getting the old state value on access due to the asynchronous nature of `setState()`.
<br />Let's say the initial count value is zero. After three consecutive increment operations, the value is going to be incremented only by one.
```javascript
// assuming this.state.count === 0
this.setState({ count: this.state.count + 1 })
this.setState({ count: this.state.count + 1 })
this.setState({ count: this.state.count + 1 })
// this.state.count === 1, not 3
If we pass a function to
setState()
, the count gets incremented correctly.this.setState((prevState, props) => ({
count: prevState.count + props.increment
}))
// this.state.count === 3 as expected
What is strict mode in React?
React.StrictMode
is an useful component for highlighting potential problems in an application. Just like<Fragment>
,<StrictMode>
does not render any extra DOM elements. It activates additional checks and warnings for its descendants. These checks apply for development mode only. ```jsx import React from ‘react’
function ExampleApplication() { return (
83. In the example above, the _strict mode_ checks apply to `<ComponentOne>` and `<ComponentTwo>` components only.
84. What are React Mixins?<br />
<br />_Mixins_ are a way to totally separate components to have a common functionality. Mixins are **should not be used** and can be replaced with _higher-order components_ or _decorators_.
<br />One of the most commonly used mixins is `PureRenderMixin`. You might be using it in some components to prevent unnecessary re-renders when the props and state are shallowly equal to the previous props and state:
```javascript
const PureRenderMixin = require('react-addons-pure-render-mixin')
const Button = React.createClass({
mixins: [PureRenderMixin],
// ...
})
Why is
isMounted()
an anti-pattern and what is the proper solution?
The primary use case forisMounted()
is to avoid callingsetState()
after a component has been unmounted, because it will emit a warning.if (this.isMounted()) {
this.setState({...})
}
Checking
isMounted()
before callingsetState()
does eliminate the warning, but it also defeats the purpose of the warning. UsingisMounted()
is a code smell because the only reason you would check is because you think you might be holding a reference after the component has unmounted.
An optimal solution would be to find places wheresetState()
might be called after a component has unmounted, and fix them. Such situations most commonly occur due to callbacks, when a component is waiting for some data and gets unmounted before the data arrives. Ideally, any callbacks should be canceled incomponentWillUnmount()
, prior to unmounting.- What are the Pointer Events supported in React?
Pointer Events provide a unified way of handling all input events. In the olden days we have a mouse and respective event listeners to handle them but nowadays we have many devices which don’t correlate to having a mouse, like phones with touch surface or pens. We need to remember that these events will only work in browsers that support the Pointer Events specification.
The following event types are now available in React DOM:onPointerDown
onPointerMove
onPointerUp
onPointerCancel
onGotPointerCapture
onLostPointerCaptur
onPointerEnter
onPointerLeave
onPointerOver
onPointerOut
- Why should component names start with capital letter?
If you are rendering your component using JSX, the name of that component has to begin with a capital letter otherwise React will throw an error as unrecognized tag. This convention is because only HTML elements and SVG tags can begin with a lowercase letter.
You can define component class which name starts with lowercase letter, but when it’s imported it should have capital letter. Here lowercase is fine: ```jsx class myComponent extends Component { render() { return } }
export default myComponent
87. While when imported in another file it should start with capital letter:
```jsx
import MyComponent from './MyComponent'
Are custom DOM attributes supported in React v16?
Yes. In the past, React used to ignore unknown DOM attributes. If you wrote JSX with an attribute that React doesn’t recognize, React would just skip it. For example, this:<div mycustomattribute={'something'} />
Would render an empty div to the DOM with React v15:
<div />
In React v16 any unknown attributes will end up in the DOM:
<div mycustomattribute='something' />
This is useful for supplying browser-specific non-standard attributes, trying new DOM APIs, and integrating with opinionated third-party libraries.
What is the difference between constructor and getInitialState?
You should initialize state in the constructor when using ES6 classes, andgetInitialState()
method when usingReact.createClass()
.
Using ES6 classes:class MyComponent extends React.Component {
constructor(props) {
super(props)
this.state = { /* initial state */ }
}
}
Using
React.createClass()
:const MyComponent = React.createClass({
getInitialState() {
return { /* initial state */ }
}
})
Note:
React.createClass()
is deprecated and removed in React v16. Use plain JavaScript classes instead.Can you force a component to re-render without calling setState?
By default, when your component’s state or props change, your component will re-render. If yourrender()
method depends on some other data, you can tell React that the component needs re-rendering by callingforceUpdate()
.component.forceUpdate(callback)
It is recommended to avoid all uses of
forceUpdate()
and only read fromthis.props
andthis.state
inrender()
.What is the difference between
super()
andsuper(props)
in React using ES6 classes?
When you want to accessthis.props
inconstructor()
then you should pass props tosuper()
method.
Usingsuper(props)
:class MyComponent extends React.Component {
constructor(props) {
super(props)
console.log(this.props) // { name: 'John', ... }
}
}
Using
super()
:class MyComponent extends React.Component {
constructor(props) {
super()
console.log(this.props) // undefined
}
}
Outside
constructor()
both will display same value forthis.props
.How to loop inside JSX?
You can simply useArray.prototype.map
with ES6 arrow function syntax. For example, theitems
array of objects is mapped into an array of components:<tbody>
{items.map(item => <SomeComponent key={item.id} name={item.name} />)}
</tbody>
You can’t iterate using
for
loop:<tbody>
for (let i = 0; i < items.length; i++) {
<SomeComponent key={items[i].id} name={items[i].name} />
}
</tbody>
This is because JSX tags are transpiled into function calls, and you can’t use statements inside expressions. This may change thanks to
do
expressions which are stage 1 proposal.How do you access props in attribute quotes?
React (or JSX) doesn’t support variable interpolation inside an attribute value. The below representation won’t work:<img className='image' src='images/{this.props.image}' />
But you can put any JS expression inside curly braces as the entire attribute value. So the below expression works:
<img className='image' src={'images/' + this.props.image} />
Using template strings will also work:
<img className='image' src={`images/${this.props.image}`} />
What is React proptype array with shape?
If you want to pass an array of objects to a component with a particular shape then useReact.PropTypes.shape()
as an argument toReact.PropTypes.arrayOf()
.ReactComponent.propTypes = {
arrayWithShape: React.PropTypes.arrayOf(React.PropTypes.shape({
color: React.PropTypes.string.isRequired,
fontSize: React.PropTypes.number.isRequired
})).isRequired
}
How conditionally apply class attributes?
You shouldn’t use curly braces inside quotes because it is going to be evaluated as a string.<div className="btn-panel {this.props.visible ? 'show' : 'hidden'}">
Instead you need to move curly braces outside (don’t forget to include spaces between class names):
<div className={'btn-panel ' + (this.props.visible ? 'show' : 'hidden')}>
Template strings will also work:
<div className={`btn-panel ${this.props.visible ? 'show' : 'hidden'}`}>
What is the difference between React and ReactDOM?
Thereact
package containsReact.createElement()
,React.Component
,React.Children
, and other helpers related to elements and component classes. You can think of these as the isomorphic or universal helpers that you need to build components. Thereact-dom
package containsReactDOM.render()
, and inreact-dom/server
we have server-side rendering support withReactDOMServer.renderToString()
andReactDOMServer.renderToStaticMarkup()
.- Why ReactDOM is separated from React?
The React team worked on extracting all DOM-related features into a separate library called ReactDOM. React v0.14 is the first release in which the libraries are split. By looking at some of the packages,react-native
,react-art
,react-canvas
, andreact-three
, it has become clear that the beauty and essence of React has nothing to do with browsers or the DOM. To build more environments that React can render to, React team planned to split the main React package into two:react
andreact-dom
. This paves the way to writing components that can be shared between the web version of React and React Native. How to use React label element?
If you try to render a<label>
element bound to a text input using the standardfor
attribute, then it produces HTML missing that attribute and prints a warning to the console.<label for={'user'}>{'User'}</label>
<input type={'text'} id={'user'} />
Since
for
is a reserved keyword in JavaScript, usehtmlFor
instead.<label htmlFor={'user'}>{'User'}</label>
<input type={'text'} id={'user'} />
How to combine multiple inline style objects?
You can use spread operator in regular React:<button style={{...styles.panel.button, ...styles.panel.submitButton}}>{'Submit'}</button>
If you’re using React Native then you can use the array notation:
<button style={[styles.panel.button, styles.panel.submitButton]}>{'Submit'}</button>
How to re-render the view when the browser is resized?
You can listen to theresize
event incomponentDidMount()
and then update the dimensions (width
andheight
). You should remove the listener incomponentWillUnmount()
method.class WindowDimensions extends React.Component {
componentWillMount() {
this.updateDimensions()
}
componentDidMount() {
window.addEventListener('resize', this.updateDimensions)
}
componentWillUnmount() {
window.removeEventListener('resize', this.updateDimensions)
}
updateDimensions() {
this.setState({width: $(window).width(), height: $(window).height()})
}
render() {
return <span>{this.state.width} x {this.state.height}</span>
}
}
What is the difference between
setState()
andreplaceState()
methods?
When you usesetState()
the current and previous states are merged.replaceState()
throws out the current state, and replaces it with only what you provide. UsuallysetState()
is used unless you really need to remove all previous keys for some reason. You can also set state tofalse
/null
insetState()
instead of usingreplaceState()
.How to listen to state changes?
The following lifecycle methods will be called when state changes. You can compare provided state and props values with current state and props to determine if something meaningful changed.componentWillUpdate(object nextProps, object nextState)
componentDidUpdate(object prevProps, object prevState)
What is the recommended approach of removing an array element in React state?
The better approach is to useArray.prototype.filter()
method.
For example, let’s create aremoveItem()
method for updating the state.removeItem(index) {
this.setState({
data: this.state.data.filter((item, i) => i !== index)
})
}
Is it possible to use React without rendering HTML?
It is possible with latest version (>=16.2). Below are the possible options:render() {
return false
}
render() {
return null
}
render() {
return []
}
render() {
return <React.Fragment></React.Fragment>
}
render() {
return <></>
}
Returning
undefined
won’t work.- How to pretty print JSON with React?
We can use `
)
}
}
React.render(<User />, document.getElementById('container'))
106. Why you can't update props in React?<br />
<br />The React philosophy is that props should be _immutable_ and _top-down_. This means that a parent can send any prop values to a child, but the child can't modify received props.
107. How to focus an input element on page load?<br />
<br />You can do it by creating _ref_ for `input` element and using it in `componentDidMount()`:
```jsx
class App extends React.Component{
componentDidMount() {
this.nameInput.focus()
}
render() {
return (
<div>
<input
defaultValue={'Won\'t focus'}
/>
<input
ref={(input) => this.nameInput = input}
defaultValue={'Will focus'}
/>
</div>
)
}
}
ReactDOM.render(<App />, document.getElementById('app'))
What are the possible ways of updating objects in state?
Calling
setState()
with an object to merge with state:Using
Object.assign()
to create a copy of the object:const user = Object.assign({}, this.state.user, { age: 42 })
this.setState({ user })
Using spread operator:
const user = { ...this.state.user, age: 42 }
this.setState({ user })
Calling
setState()
with a function:this.setState(prevState => ({
user: {
...prevState.user,
age: 42
}
}))
Why function is preferred over object for
setState()
?
React may batch multiplesetState()
calls into a single update for performance. Becausethis.props
andthis.state
may be updated asynchronously, you should not rely on their values for calculating the next state.
This counter example will fail to update as expected:// Wrong
this.setState({
counter: this.state.counter + this.props.increment,
})
The preferred approach is to call
setState()
with function rather than object. That function will receive the previous state as the first argument, and the props at the time the update is applied as the second argument.// Correct
this.setState((prevState, props) => ({
counter: prevState.counter + props.increment
}))
How can we find the version of React at runtime in the browser?
You can useReact.version
to get the version. ```jsx const REACT_VERSION = React.version
ReactDOM.render(
React version: ${REACT_VERSION}
}
111. What are the approaches to include polyfills in your `create-react-app`?
1. **Manual import from `core-js`:**
<br />Create a file called (something like) `polyfills.js` and import it into root `index.js` file. Run `npm install core-js` or `yarn add core-js` and import your specific required features.
```javascript
import 'core-js/fn/array/find'
import 'core-js/fn/array/includes'
import 'core-js/fn/number/is-nan'
Using Polyfill service:
Use the polyfill.io CDN to retrieve custom, browser-specific polyfills by adding this line toindex.html
:<script src='https://cdn.polyfill.io/v2/polyfill.min.js?features=default,Array.prototype.includes'></script>
In the above script we had to explicitly request the
Array.prototype.includes
feature as it is not included in the default feature set.- How to use https instead of http in create-react-app?
You just need to useHTTPS=true
configuration. You can edit yourpackage.json
scripts section:"scripts": {
"start": "set HTTPS=true && react-scripts start"
}
- How to use https instead of http in create-react-app?
- or just run
set HTTPS=true && npm start
How to avoid using relative path imports in create-react-app?
Create a file called.env
in the project root and write the import path:NODE_PATH=src/app
After that restart the development server. Now you should be able to import anything inside
src/app
without relative paths.How to add Google Analytics for React Router?
Add a listener on thehistory
object to record each page view:history.listen(function (location) {
window.ga('set', 'page', location.pathname + location.search)
window.ga('send', 'pageview', location.pathname + location.search)
})
How to update a component every second?
You need to usesetInterval()
to trigger the change, but you also need to clear the timer when the component unmounts to prevent errors and memory leaks. ```javascript componentDidMount() { this.interval = setInterval(() => this.setState({ time: Date.now() }), 1000) }
componentWillUnmount() { clearInterval(this.interval) }
116. How do you apply vendor prefixes to inline styles in React?<br />
<br />React _does not_ apply _vendor prefixes_ automatically. You need to add vendor prefixes manually.
```jsx
<div style={{
transform: 'rotate(90deg)',
WebkitTransform: 'rotate(90deg)', // note the capital 'W' here
msTransform: 'rotate(90deg)' // 'ms' is the only lowercase vendor prefix
}} />
- How to import and export components using React and ES6?
You should use default for exporting the components ```jsx import React from ‘react’ import User from ‘user’
export default class MyProfile extends React.Component {
render(){
return (
117. With the export specifier, the MyProfile is going to be the member and exported to this module and the same can be imported without mentioning the name in other components.
118. Why React component names must begin with a capital letter?<br />
<br />In JSX, lowercase tag names are considered to be HTML tags. However, capitalized and lowercase tag names with a dot (property accessors) aren't.
1. `<component />` compiles to `React.createElement('component')` (i.e, HTML tag)
2. `<obj.component />` compiles to `React.createElement(obj.component)`
3. `<Component />` compiles to `React.createElement(Component)`
119. Why is a component constructor called only once?<br />
<br />React's _reconciliation_ algorithm assumes that without any information to the contrary, if a custom component appears in the same place on subsequent renders, it's the same component as before, so reuses the previous instance rather than creating a new one.
120. How to define constants in React?<br />
<br />You can use ES7 `static` field to define constant.
```javascript
class MyComponent extends React.Component {
static DEFAULT_PAGINATION = 10
}
- Static fields are part of the Class Fields stage 3 proposal.
How to programmatically trigger click event in React?
You could use the ref prop to acquire a reference to the underlyingHTMLInputElement
object through a callback, store the reference as a class property, then use that reference to later trigger a click from your event handlers using theHTMLElement.click
method. This can be done in two steps:Create ref in render method:
<input ref={input => this.inputElement = input} />
Apply click event in your event handler:
this.inputElement.click()
Is it possible to use async/await in plain React?
If you want to useasync
/await
in React, you will need Babel and transform-async-to-generator plugin. React Native ships with Babel and a set of transforms.What are the common folder structures for React?
There are two common practices for React project file structure.Grouping by features or routes:
One common way to structure projects is locate CSS, JS, and tests together, grouped by feature or route.common/
├─ Avatar.js
├─ Avatar.css
├─ APIUtils.js
└─ APIUtils.test.js
feed/
├─ index.js
├─ Feed.js
├─ Feed.css
├─ FeedStory.js
├─ FeedStory.test.js
└─ FeedAPI.js
profile/
├─ index.js
├─ Profile.js
├─ ProfileHeader.js
├─ ProfileHeader.css
└─ ProfileAPI.js
Grouping by file type:
Another popular way to structure projects is to group similar files together.api/
├─ APIUtils.js
├─ APIUtils.test.js
├─ ProfileAPI.js
└─ UserAPI.js
components/
├─ Avatar.js
├─ Avatar.css
├─ Feed.js
├─ Feed.css
├─ FeedStory.js
├─ FeedStory.test.js
├─ Profile.js
├─ ProfileHeader.js
└─ ProfileHeader.css
What are the popular packages for animation?
React Transition Group and React Motion are popular animation packages in React ecosystem.- What is the benefit of styles modules?
It is recommended to avoid hard coding style values in components. Any values that are likely to be used across different UI components should be extracted into their own modules.
For example, these styles could be extracted into a separate component: ```javascript export const colors = { white, black, blue }
export const space = [ 0, 8, 16, 32, 64 ]
125. And then imported individually in other components:
```javascript
import { space, colors } from './styles'
- What are the popular React-specific linters?
ESLint is a popular JavaScript linter. There are plugins available that analyse specific code styles. One of the most common for React is an npm package calledeslint-plugin-react
. By default, it will check a number of best practices, with rules checking things from keys in iterators to a complete set of prop types. Another popular plugin iseslint-plugin-jsx-a11y
, which will help fix common issues with accessibility. As JSX offers slightly different syntax to regular HTML, issues withalt
text andtabindex
, for example, will not be picked up by regular plugins. How to make AJAX call and in which component lifecycle methods should I make an AJAX call?
You can use AJAX libraries such as Axios, jQuery AJAX, and the browser built-infetch
. You should fetch data in thecomponentDidMount()
lifecycle method. This is so you can usesetState()
to update your component when the data is retrieved.
For example, the employees list fetched from API and set local state:class MyComponent extends React.Component {
constructor(props) {
super(props)
this.state = {
employees: [],
error: null
}
}
componentDidMount() {
fetch('https://api.example.com/items')
.then(res => res.json())
.then(
(result) => {
this.setState({
employees: result.employees
})
},
(error) => {
this.setState({ error })
}
)
}
render() {
const { error, employees } = this.state
if (error) {
return <div>Error: {error.message}</div>;
} else {
return (
<ul>
{employees.map(item => (
<li key={employee.name}>
{employee.name}-{employees.experience}
</li>
))}
</ul>
)
}
}
}
What are render props?
Render Props is a simple technique for sharing code between components using a prop whose value is a function. The below component uses render prop which returns a React element.<DataProvider render={data => (
<h1>{`Hello ${data.target}`}</h1>
)}/>
Libraries such as React Router and DownShift are using this pattern.
React Router
What is React Router?
React Router is a powerful routing library built on top of React that helps you add new screens and flows to your application incredibly quickly, all while keeping the URL in sync with what’s being displayed on the page.- How React Router is different from history library?
React Router is a wrapper around thehistory
library which handles interaction with the browser’swindow.history
with its browser and hash histories. It also provides memory history which is useful for environments that don’t have global history, such as mobile app development (React Native) and unit testing with Node. - What are the
<Router>
components of React Router v4?
React Router v4 provides below 3<Router>
components:<BrowserRouter>
<HashRouter>
<MemoryRouter>
The above components will create browser, hash, and memory history instances. React Router v4 makes the properties and methods of the history
instance associated with your router available through the context in the router
object.
- What is the purpose of
push()
andreplace()
methods ofhistory
?
A history instance has two methods for navigation purpose.push()
replace()
If you think of the history as an array of visited locations, push()
will add a new location to the array and replace()
will replace the current location in the array with the new one.
- How do you programmatically navigate using React Router v4?
There are three different ways to achieve programmatic routing/navigation within components.- Using the
withRouter()
higher-order function:
ThewithRouter()
higher-order function will inject the history object as a prop of the component. This object providespush()
andreplace()
methods to avoid the usage of context. ```jsx import { withRouter } from ‘react-router-dom’ // this also works with ‘react-router-native’
- Using the
const Button = withRouter(({ history }) => ( ))
1. **Using `<Route>` component and render props pattern:**
<br />The `<Route>` component passes the same props as `withRouter()`, so you will be able to access the history methods through the history prop.
```jsx
import { Route } from 'react-router-dom'
const Button = () => (
<Route render={({ history }) => (
<button
type='button'
onClick={() => { history.push('/new-location') }}
>
{'Click Me!'}
</button>
)} />
)
- Using context:
This option is not recommended and treated as unstable API. ```jsx const Button = (props, context) => ( )
Button.contextTypes = { history: React.PropTypes.shape({ push: React.PropTypes.func.isRequired }) }
134. How to get query parameters in React Router v4?<br />
<br />The ability to parse query strings was taken out of React Router v4 because there have been user requests over the years to support different implementation. So the decision has been given to users to choose the implementation they like. The recommended approach is to use query strings library.
```javascript
const queryString = require('query-string');
const parsed = queryString.parse(props.location.search);
You can also use
URLSearchParams
if you want something native:const params = new URLSearchParams(props.location.search)
const foo = params.get('name')
You should use a polyfill for IE11.
Why you get “Router may have only one child element” warning?
You have to wrap your Route’s in a<Switch>
block because<Switch>
is unique in that it renders a route exclusively.
At first you need to addSwitch
to your imports:import { Switch, Router, Route } from 'react-router'
Then define the routes within
<Switch>
block:<Router>
<Switch>
<Route {/* ... */} />
<Route {/* ... */} />
</Switch>
</Router>
How to pass params to
history.push
method in React Router v4?
While navigating you can pass props to thehistory
object:this.props.history.push({
pathname: '/template',
search: '?name=sudheer',
state: { detail: response.data }
})
The
search
property is used to pass query params inpush()
method.How to implement default or NotFound page?
A<Switch>
renders the first child<Route>
that matches. A<Route>
with no path always matches. So you just need to simply drop path attribute as below<Switch>
<Route exact path="/" component={Home}/>
<Route path="/user" component={User}/>
<Route component={NotFound} />
</Switch>
How to get history on React Router v4?
- Create a module that exports a
history
object and import this module across the project.
For example, createhistory.js
file: ```javascript import { createBrowserHistory } from ‘history’
- Create a module that exports a
export default createBrowserHistory({ / pass a configuration object here if needed / })
1. You should use the `<Router>` component instead of built-in routers. Imported the above `history.js` inside `index.js` file:
```jsx
import { Router } from 'react-router-dom'
import history from './history'
import App from './App'
ReactDOM.render((
<Router history={history}>
<App />
</Router>
), holder)
- You can also use push method of
history
object similar to built-in history object: ```javascript // some-other-file.js import history from ‘./history’
history.push(‘/go-here’)
139. How to perform automatic redirect after login?<br />
<br />The `react-router` package provides `<Redirect>` component in React Router. Rendering a `<Redirect>` will navigate to a new location. Like server-side redirects, the new location will override the current location in the history stack.
```javascript
import React, { Component } from 'react'
import { Redirect } from 'react-router'
export default class LoginComponent extends Component {
render() {
if (this.state.isLoggedIn === true) {
return <Redirect to="/your/redirect/page" />
} else {
return <div>{'Login Please'}</div>
}
}
}
React Internationalization
- What is React Intl?
The React Intl library makes internalization in React straightforward, with off-the-shelf components and an API that can handle everything from formatting strings, dates, and numbers, to pluralization. React Intl is part of FormatJS which provides bindings to React via its components and API. - What are the main features of React Intl?
- Display numbers with separators.
- Display dates and times correctly.
- Display dates relative to “now”.
- Pluralize labels in strings.
- Support for 150+ languages.
- Runs in the browser and Node.
- Built on standards.
- What are the two ways of formatting in React Intl?
The library provides two ways to format strings, numbers, and dates: react components or an API.
```javascript const messages = defineMessages({ accountMessage: { id: ‘account’, defaultMessage: ‘The amount is less than minimum balance.’, } })<FormattedMessage
id={'account'}
defaultMessage={'The amount is less than minimum balance.'}
/>
formatMessage(messages.accountMessage)
143. How to use `<FormattedMessage>` as placeholder using React Intl?<br />
<br />The `<Formatted... />` components from `react-intl` return elements, not plain text, so they can't be used for placeholders, alt text, etc. In that case, you should use lower level API `formatMessage()`. You can inject the `intl` object into your component using `injectIntl()` higher-order component and then format the message using `formatMessage()` available on that object.
```jsx
import React from 'react'
import { injectIntl, intlShape } from 'react-intl'
const MyComponent = ({ intl }) => {
const placeholder = intl.formatMessage({id: 'messageId'})
return <input placeholder={placeholder} />
}
MyComponent.propTypes = {
intl: intlShape.isRequired
}
export default injectIntl(MyComponent)
- How to access current locale with React Intl?
You can get the current locale in any component of your application usinginjectIntl()
: ```jsx import { injectIntl, intlShape } from ‘react-intl’
const MyComponent = ({ intl }) => (
The current locale is ${intl.locale}
}MyComponent.propTypes = { intl: intlShape.isRequired }
export default injectIntl(MyComponent)
145. How to format date using React Intl?<br />
<br />The `injectIntl()` higher-order component will give you access to the `formatDate()` method via the props in your component. The method is used internally by instances of `FormattedDate` and it returns the string representation of the formatted date.
```jsx
import { injectIntl, intlShape } from 'react-intl'
const stringDate = this.props.intl.formatDate(date, {
year: 'numeric',
month: 'numeric',
day: 'numeric'
})
const MyComponent = ({intl}) => (
<div>{`The formatted date is ${stringDate}`}</div>
)
MyComponent.propTypes = {
intl: intlShape.isRequired
}
export default injectIntl(MyComponent)
React Testing
What is Shallow Renderer in React testing?
Shallow rendering is useful for writing unit test cases in React. It lets you render a component one level deep and assert facts about what its render method returns, without worrying about the behavior of child components, which are not instantiated or rendered.
For example, if you have the following component:function MyComponent() {
return (
<div>
<span className={'heading'}>{'Title'}</span>
<span className={'description'}>{'Description'}</span>
</div>
)
}
Then you can assert as follows: ```jsx import ShallowRenderer from ‘react-test-renderer/shallow’
// in your test
const renderer = new ShallowRenderer()
renderer.render(
const result = renderer.getRenderOutput()
expect(result.type).toBe(‘div’) expect(result.props.children).toEqual([ {‘Title’}, {‘Description’} ])
147. What is `TestRenderer` package in React?<br />
<br />This package provides a renderer that can be used to render components to pure JavaScript objects, without depending on the DOM or a native mobile environment. This package makes it easy to grab a snapshot of the platform view hierarchy (similar to a DOM tree) rendered by a ReactDOM or React Native without using a browser or `jsdom`.
```jsx
import TestRenderer from 'react-test-renderer'
const Link = ({page, children}) => <a href={page}>{children}</a>
const testRenderer = TestRenderer.create(
<Link page={'https://www.facebook.com/'}>{'Facebook'}</Link>
)
console.log(testRenderer.toJSON())
// {
// type: 'a',
// props: { href: 'https://www.facebook.com/' },
// children: [ 'Facebook' ]
// }
- What is the purpose of ReactTestUtils package?
ReactTestUtils are provided in thewith-addons
package and allow you to perform actions against a simulated DOM for the purpose of unit testing. - What is Jest?
Jest is a JavaScript unit testing framework created by Facebook based on Jasmine and provi