React
React
Learn Depth
learndepth.com/InterviewQa/"ReactInt"
React is a JavaScript library specifically designed for building user interfaces on the
web. It simplifies the development process by breaking down the user interface into
reusable components. These components are like building blocks that can be easily
assembled and reused throughout the application. By dividing the UI into smaller,
manageable parts, developers can efficiently update and render only the necessary
sections, leading to faster and more responsive applications.
One of the standout features of React is its declarative syntax. Instead of directly
manipulating the DOM, developers can describe how the UI should look based on
the application's state. React takes care of efficiently updating and rendering the
components as the state changes. This declarative approach not only makes the
code easier to understand but also enhances code reusability and maintainability.
JSX stands for JavaScript XML. It's a syntax extension used in React, a popular
JavaScript library for building user interfaces. JSX allows you to write HTML-like
code directly within your JavaScript code.
Instead of creating elements and modifying them using JavaScript functions, JSX
lets you define the structure and appearance of your user interface components in a
more declarative and intuitive way.
For example, in regular JavaScript, you would create an element like this:
https://learndepth.com/InterviewQa/"ReactInt" 1/83
7/24/24, 8:19 PM Learn Depth
With JSX, you can achieve the same result in a more concise and familiar way:
Under the hood, JSX is transformed into regular JavaScript using a transpiler like
Babel. This transformed code is what actually gets executed by the browser or
JavaScript runtime.
JSX combines the power of JavaScript with the flexibility and expressiveness of
HTML-like syntax, making it easier to create dynamic and interactive user interfaces
in React.
Q4. How to create components in React?
Components are the building blocks of creating User Interfaces(UI) 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 the first parameter and return
React elements to render the output:
For example, in regular JavaScript, you would create an element like this:
Class Components : You can also use ES6 class to define a component. The above
function component can be written as a class component:
In React, both class components and function components can be used to build
user interfaces. However, with the introduction of React Hooks in React 16.8,
function components have gained more capabilities and can handle most of the
https://learndepth.com/InterviewQa/"ReactInt" 2/83
7/24/24, 8:19 PM Learn Depth
But even there are two reasons to use Class components over Function
components.
A pure component in React is a component that only re-renders when its props
change. It helps optimize performance by preventing unnecessary re-renders when
the component's props remain the same.
return (
<div>
<Greeting name={name} />
</div>
);
};
In this example, we have a Greeting component that receives a name prop and
displays a greeting message with the name. The Greeting component is a pure
component because it only relies on its props and doesn't have any internal state.
The App component renders the Greeting component with a specific name prop
value, which is 'John Doe' in this case. Since the Greeting component is a pure
component, it won't re-render unnecessarily as long as the name prop remains the
same.
https://learndepth.com/InterviewQa/"ReactInt" 3/83
7/24/24, 8:19 PM Learn Depth
Pure components are helpful in scenarios where you want to prevent unnecessary
re-renders of components that rely only on their props.
Q7. 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. The important point is whenever the state object
changes, the component re-renders. It is always recommended to make our state
as simple as possible and minimize the number of stateful components.
Let's take an example of User component with message state. Here, useState hook
has been used to add state to the User component and it returns an array with
current state and function to update it.
function User() {
const [message, setMessage] = useState("Welcome to React world");
return (
<div>
<h1>{message}</h1>
</div>
);
}
this.state = {
message: "Welcome to React world",
};
}
render() {
return (
<div>
<h1>{this.state.message}</h1>
</div>
);
}
}
https://learndepth.com/InterviewQa/"ReactInt" 4/83
7/24/24, 8:19 PM Learn Depth
State is similar to props, but it is private and fully controlled by the component ,i.e., it
is not accessible to any other component till the owner component decides to pass
it.
Q8. What are props in React?
If we want to send data from parent component to child component, then we use
props. Props acts as inputs to the component and they are immutable.
Example:
// Greeting.jsx
function Greeting() {
const name = 'John Doe';
return (
<div>
<Message name={name} />
</div>
);
}
// Message.jsx
function Message(props) {
return <h2>Hello, {props.name}!</h2>;
}
Here, the parent component Greeting supplies the data (name) to the child
component Message via props. The child component can then use that data to
customize its rendering or perform other operations.
https://learndepth.com/InterviewQa/"ReactInt" 5/83
7/24/24, 8:19 PM Learn Depth
Mutability: State can be changed and updated within a component, while props
cannot be changed and are read-only.
Rendering: Changes to state trigger the component to re-render, updating what is
shown on the screen. Changes to props do not trigger automatic re-rendering.
In summary, state is for managing a component's internal data and can be changed,
while props are for passing data from a parent component to a child component and
are read-only.
Q10. Why should we not update the state directly?
If you try to update the state directly then it won't re-render the component.
//Wrong
this.state.message = "Hello world";
//Correct
this.setState({ message: "Hello World" });
Q11. Why would you use a callback function as an argument when calling setState()?
The callback function is invoked when setState finished and the component gets
rendered.
Note: It is recommended to use lifecycle method rather than this callback function.
Q12. What are the differences between HTML and React event handling?
Below are some of the main differences between HTML and React event handling:
//Html
<button onclick="activateLasers()"></button>
//React
<button onClick={activateLasers}>
https://learndepth.com/InterviewQa/"ReactInt" 6/83
7/24/24, 8:19 PM Learn Depth
In HTML, you can return false to prevent default behavior. Whereas in React you
must call preventDefault() explicitly
//Html
<a
href="#"
onclick='console.log("The link was clicked."); return false;'
/>
//React
function handleClick(event) {
event.preventDefault();
console.log("The link was clicked.");
}
In HTML, you need to invoke the function by appending () Whereas in react you
should not append () with the function name. (refer 'activateLasers' function in the
first point for example)
Q13. How to bind methods or event handlers in JSX callbacks?
Binding in Constructor: In JavaScript classes, the methods are not bound by default.
The same rule applies for React event handlers defined as class methods. Normally
we bind them in constructor.
handleClick() {
console.log("SingOut triggered");
}
render() {
return <button onClick={this.handleClick}>SingOut</button>;
}
}
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. The Create React App
eanables this syntax by default.
https://learndepth.com/InterviewQa/"ReactInt" 7/83
7/24/24, 8:19 PM Learn Depth
handleClick = () => {
console.log("SingOut triggered", this);
};
<button onClick={this.handleClick}>SingOut</button>
handleClick() {
console.log('SingOut triggered');
}
render() {
return <button onClick={() => this.handleClick()}>SignOut</button>;
}
You can use an arrow function to wrap around an event handler and pass
parameters:
Apart from these two approaches, you can also pass arguments to a function which
is defined as arrow function
https://learndepth.com/InterviewQa/"ReactInt" 8/83
7/24/24, 8:19 PM Learn Depth
Let's take an example of BookStore title search component with the ability to get all
native event properties
function BookStore() {
handleTitleChange(e) {
console.log('The new title is:', e.target.value);
// 'e' represents synthetic event
const nativeEvent = e.nativeEvent;
console.log(nativeEvent);
e.stopPropogation();
e.preventDefault();
}
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>
);
}
Q17. What is 'key' prop and what is the benefit of using it in arrays of elements?
A key is a special attribute you should include when creating arrays of elements.
Key prop helps React identify which items have changed, are added, or are
removed.
Keys should be unique among its siblings. Most often we use ID from our data as
key:
https://learndepth.com/InterviewQa/"ReactInt" 9/83
7/24/24, 8:19 PM Learn Depth
When you don't have stable IDs for rendered items, you may use the item index as
a key as a last resort:
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.
The key attribute accepts either string or number and internally convert it as string
type.
Q18. 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.
The callback function is invoked when setState finished and the component gets
rendered.
https://learndepth.com/InterviewQa/"ReactInt" 10/83
7/24/24, 8:19 PM Learn Depth
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 is accessed as follows,
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.
Q20. 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.
https://learndepth.com/InterviewQa/"ReactInt" 11/83
7/24/24, 8:19 PM Learn Depth
render() {
return <div />;
}
}
componentDidMount() {
this.node.current.scrollIntoView();
}
render() {
return <div ref={this.node} />;
}
}
https://learndepth.com/InterviewQa/"ReactInt" 12/83
7/24/24, 8:19 PM Learn Depth
If you worked with React before, you might be familiar with an older API where the
ref attribute is a string, like ref={'textInput'}, and the DOM node is accessed as
this.refs.textInput. We advise against it because string refs have below issues, and
are considered legacy. String refs were removed in React v16.
render() {
return (
<DataTable data={this.props.data} renderRow={this.renderRow} />
);
}
}
Whenever any underlying data changes, the entire UI is re-rendered in Virtual DOM
representation.
https://learndepth.com/InterviewQa/"ReactInt" 13/83
7/24/24, 8:19 PM Learn Depth
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.
Q25. 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.
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.
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,
https://learndepth.com/InterviewQa/"ReactInt" 14/83
7/24/24, 8:19 PM Learn Depth
handleChange(event) {
this.setState({value: event.target.value.toUpperCase()})
}
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, the name input is accessed using ref.
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>
);
}
}
https://learndepth.com/InterviewQa/"ReactInt" 15/83
7/24/24, 8:19 PM Learn Depth
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.
Q32. What are the different phases of component lifecycle?
Mounting: The component is ready to mount in the browser DOM. This phase
covers initialization from constructor(), getDerivedStateFromProps(), render(), and
componentDidMount() lifecycle methods.
Updating: In this phase, the component gets updated in two ways, sending the new
props and updating the state either from setState() or forceUpdate(). This phase
covers getDerivedStateFromProps(), shouldComponentUpdate(), render(),
getSnapshotBeforeUpdate() and componentDidUpdate() lifecycle methods.
Unmounting: In this last phase, the component is not needed and gets unmounted
from the browser DOM. This phase includes componentWillUnmount() lifecycle
method.
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 to 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, and
componentWillUnmount() for unmounting.
https://learndepth.com/InterviewQa/"ReactInt" 16/83
7/24/24, 8:19 PM Learn Depth
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.
https://learndepth.com/InterviewQa/"ReactInt" 17/83
7/24/24, 8:19 PM Learn Depth
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,
};
Context provides a way to pass data through the component tree without having to
pass props down manually at every level.
There are several methods available in the React API to work with this prop. These
include React.Children.map, React.Children.forEach, React.Children.count,
React.Children.only, React.Children.toArray.
https://learndepth.com/InterviewQa/"ReactInt" 18/83
7/24/24, 8:19 PM Learn Depth
ReactDOM.render(
<MyDiv>
<span>{"Hello"}</span>
<span>{"World"}</span>
</MyDiv>,
node
);
The comments in React/JSX are similar to JavaScript Multiline comments but are
wrapped in curly braces.
Single-line comments:
<div>
{/* Single-line comments(In vanilla JavaScript, the single-line comments are
represented by double slash(//)) */}
{'Welcome, let's play React'}
</div>
Multi-line comments:
<div>
{/* Multi-line comments for more than
one line */}
{'Welcome user, let's play React'}
</div>
Q39. What is the purpose of using super constructor with props argument?
A child class constructor cannot make use of this reference until the super() method
has been called. The same applies to ES6 sub-classes as well. The main reason for
passing props parameter to super() call is to access this.props in your child
constructors.
Passing props:
https://learndepth.com/InterviewQa/"ReactInt" 19/83
7/24/24, 8:19 PM Learn Depth
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.
Q40. What is reconciliation?
Reconciliation is the process through which React updates the Browser DOM and
makes React work faster. React use a diffing algorithm so that component updates
are predictable and faster. React would first calculate the difference between the
real DOM and the copy of DOM (Virtual DOM) when there's an update of
components. React stores a copy of Browser DOM which is called Virtual DOM.
When we make changes or add data, React creates a new Virtual DOM and
compares it with the previous one. This comparison is done by Diffing Algorithm.
Now React compares the Virtual DOM with Real DOM. It finds out the changed
nodes and updates only the changed nodes in Real DOM leaving the rest nodes as
it is. This process is called Reconciliation.
If you are using ES6 or the Babel transpiler to transform your JSX code then you
can accomplish this with computed property names.
https://learndepth.com/InterviewQa/"ReactInt" 20/83
7/24/24, 8:19 PM Learn Depth
handleInputChange(event) {
this.setState({ [event.target.id]: event.target.value })
}
Q42. 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>
}
render() {
// Correct: handleClick is passed as a reference!
return <button onClick={this.handleClick}>{'Click Me'}</button>
}
No, currently React.lazy function supports default exports only. If you would like to
import modules which are named exports, you can create an intermediate module
that reexports it as the default. It also ensures that tree shaking keeps working and
don’t pull unused components. Let's take a component file which exports multiple
named components,
// MoreComponents.js
export const SomeComponent = /* ... */;
export const UnusedComponent = /* ... */;
// IntermediateComponent.js
export { SomeComponent as default } from "./MoreComponents.js";
Now you can import the module using lazy function as below,
https://learndepth.com/InterviewQa/"ReactInt" 21/83
7/24/24, 8:19 PM Learn Depth
render() {
return <span className={'menu navigation-menu'}>{'Menu'}</span>
}
It is also possible to render list of fragments inside a loop with the mandatory key
attribute supplied.
function StoryBook() {
return stories.map(story =>
<Fragment key={ story.id}>
<h2>{story.title}</h2>
<p>{story.description}</p>
<p>{story.date}</p>
</Fragment>
);
}
Ususally you don't need to use until unless there is a need of key attribute. The
usage of shorter syntax looks like below.
https://learndepth.com/InterviewQa/"ReactInt" 22/83
7/24/24, 8:19 PM Learn Depth
Below are the list of reasons to prefer fragments over container DOM elements,
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.
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.
https://learndepth.com/InterviewQa/"ReactInt" 23/83
7/24/24, 8:19 PM Learn Depth
Let's take an example of function stateful component which update the state based
on click event,
return (
<>
<button onClick={handleIncrement}>Increment</button>
<span>Counter: {count}</span>
</>
)
}
PropTypes.number
PropTypes.string
PropTypes.array
PropTypes.object
PropTypes.func
PropTypes.node
PropTypes.element
PropTypes.bool
PropTypes.symbol
PropTypes.any
https://learndepth.com/InterviewQa/"ReactInt" 24/83
7/24/24, 8:19 PM Learn Depth
render() {
return (
<>
<h1>{'Welcome, $ {this.props.name}'}</h1>
<h2>{'Age, $ {this.props.age}'}</h2>
</>
);
}
}
User.propTypes = {
name: PropTypes.string.isRequired,
age: PropTypes.number.isRequired,
};
https://learndepth.com/InterviewQa/"ReactInt" 25/83
7/24/24, 8:19 PM Learn Depth
Apart from the advantages, there are few limitations of React too,
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.
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;
}
}
https://learndepth.com/InterviewQa/"ReactInt" 26/83
7/24/24, 8:19 PM Learn Depth
<ErrorBoundary>
<MyWidget />
</ErrorBoundary>
React v15 provided very basic support for error boundaries using
unstable_handleError method. It has been renamed to componentDidCatch in
React v16.
Q55. What are the recommended ways for static type checking?
The react-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()
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.
https://learndepth.com/InterviewQa/"ReactInt" 27/83
7/24/24, 8:19 PM Learn Depth
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";
function createMarkup() {
return { __html: "First · Second" };
}
function MyComponent() {
return <div dangerouslySetInnerHTML={createMarkup()} />;
}
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.
https://learndepth.com/InterviewQa/"ReactInt" 28/83
7/24/24, 8:19 PM Learn Depth
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).
Q61. How events are different in React?
React event handlers are named using camelCase, rather than lowercase.
With JSX you pass a function as the event handler, rather than a string.
When you use setState(), 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 use this.state to initialize
variables inside constructor.
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} />);
}
https://learndepth.com/InterviewQa/"ReactInt" 29/83
7/24/24, 8:19 PM Learn Depth
componentDidMount() {
axios.get('api/todos')
.then((result) => {
this.setState({
messages: [...result.data]
})
})
}
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.
this.state = {
records: [],
inputValue: this.props.inputValue,
};
}
render() {
return <div>{this.state.inputValue}</div>;
}
}
https://learndepth.com/InterviewQa/"ReactInt" 30/83
7/24/24, 8:19 PM Learn Depth
this.state = {
record: [],
};
}
render() {
return <div>{this.props.inputValue}</div>;
}
}
In some cases you want to render different components depending on some state.
JSX does not render false or undefined, so you can use conditional short-circuiting
to render a given part of your component only if a certain condition is true.
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,
https://learndepth.com/InterviewQa/"ReactInt" 31/83
7/24/24, 8:19 PM Learn Depth
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.
@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.
There are memoize libraries available which can be used on function components.
For example moize library can memoize the component in another component.
https://learndepth.com/InterviewQa/"ReactInt" 32/83
7/24/24, 8:19 PM Learn Depth
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.
https://learndepth.com/InterviewQa/"ReactInt" 33/83
7/24/24, 8:19 PM Learn Depth
The create-react-app CLI tool allows you to quickly create & run React applications
with no configuration step.
# Installation
$ npm install -g create-react-app
The lifecycle methods are called in the following order when an instance of a
component is being created and inserted into the DOM.
constructor()
static getDerivedStateFromProps()
render()
componentDidMount()
Q74. What are the lifecycle methods going to be deprecated in React v16?
The following lifecycle methods going to be unsafe coding practices and will be
more problematic with async rendering.
componentWillMount()
componentWillReceiveProps()
componentWillUpdate()
Starting with React v16.3 these methods are aliased with UNSAFE_ prefix, and the
unprefixed version will be removed in React v17.
https://learndepth.com/InterviewQa/"ReactInt" 34/83
7/24/24, 8:19 PM Learn Depth
This lifecycle method along with componentDidUpdate() covers all the use cases of
componentWillReceiveProps().
This lifecycle method along with componentDidUpdate() covers all the use cases of
componentWillUpdate().
Both render props and higher-order components render only a single child but in
most of the cases Hooks are a simpler way to serve this by reducing nesting in your
tree.
https://learndepth.com/InterviewQa/"ReactInt" 35/83
7/24/24, 8:19 PM Learn Depth
also
static methods
constructor()
getChildContext()
componentWillMount()
componentDidMount()
componentWillReceiveProps()
shouldComponentUpdate()
componentWillUpdate()
componentDidUpdate()
componentWillUnmount()
click handlers or event handlers like onClickSubmit() or onChangeDescription()
getter methods for render like getSelectReason() or getFooterContent()
optional render methods like renderNavigation() or renderProfilePicture()
render()
For example, a switching component to display different pages based on page prop:
https://learndepth.com/InterviewQa/"ReactInt" 36/83
7/24/24, 8:19 PM Learn Depth
const PAGES = {
home: HomePage,
about: AboutPage,
services: ServicesPage,
contact: ContactPage,
};
// 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,
};
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().
Let's say the initial count value is zero. After three consecutive increment
operations, the value is going to be incremented only by one.
https://learndepth.com/InterviewQa/"ReactInt" 37/83
7/24/24, 8:19 PM Learn Depth
function ExampleApplication() {
return (
<div>
<Header />
<React.StrictMode>
<div>
<ComponentOne />
<ComponentTwo />
</div>
</React.StrictMode>
<Header />
</div>
);
}
In the example above, the strict mode checks apply to and components only.
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:
https://learndepth.com/InterviewQa/"ReactInt" 38/83
7/24/24, 8:19 PM Learn Depth
The primary use case for isMounted() is to avoid calling setState() after a
component has been unmounted, because it will emit a warning.
if (this.isMounted()) {
this.setState({...})
}
Checking isMounted() before calling setState() does eliminate the warning, but it
also defeats the purpose of the warning. Using isMounted() 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 where setState() 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 in
componentWillUnmount(), prior to unmounting.
Pointer Events provide a unified way of handling all input events. In the old days we
had 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.
https://learndepth.com/InterviewQa/"ReactInt" 39/83
7/24/24, 8:19 PM Learn Depth
onPointerDown
onPointerMove
onPointerUp
onPointerCancel
onGotPointerCapture
onLostPointerCapture
onPointerEnter
onPointerLeave
onPointerOver
onPointerOut
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 an 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:
While when imported in another file it should start with capital letter:
The component names should start with an uppercase letter but there are few
exceptions to this convention. The lowercase tag names with a dot (property
accessors) are still considered as valid component names. For example, the below
tag can be compiled to a valid component,
https://learndepth.com/InterviewQa/"ReactInt" 40/83
7/24/24, 8:19 PM Learn Depth
render() {
return (
<obj.component/> // 'React.createElement(obj.component)'
)
}
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.
<div />
You should initialize state in the constructor when using ES6 classes, and
getInitialState() method when using React.createClass().
Using React.createClass():
https://learndepth.com/InterviewQa/"ReactInt" 41/83
7/24/24, 8:19 PM Learn Depth
By default, when your component's state or props change, your component will re-
render. If your render() method depends on some other data, you can tell React that
the component needs re-rendering by calling forceUpdate().
component.forceUpdate(callback);
It is recommended to avoid all uses of forceUpdate() and only read from this.props
and this.state in render().
Q90. What is the difference between super() and super(props) in React using ES6
classes?
When you want to access this.props in constructor() then you should pass props to
super() method.
Using super(props):
Using super():
https://learndepth.com/InterviewQa/"ReactInt" 42/83
7/24/24, 8:19 PM Learn Depth
You can simply use Array.prototype.map with ES6 arrow function syntax.
For example, the items array of objects is mapped into an array of components:
<tbody>
{items.map((item) => (
<SomeComponent key={item.id} name={item.name} />
))}
</tbody>
<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.
React (or JSX) doesn't support variable interpolation inside an attribute value. The
below representation won't work:
But you can put any JS expression inside curly braces as the entire attribute value.
So the below expression works:
If you want to pass an array of objects to a component with a particular shape then
use React.PropTypes.shape() as an argument to React.PropTypes.arrayOf().
https://learndepth.com/InterviewQa/"ReactInt" 43/83
7/24/24, 8:19 PM Learn Depth
ReactComponent.propTypes = {
arrayWithShape: React.PropTypes.arrayOf(
React.PropTypes.shape({
color: React.PropTypes.string.isRequired,
fontSize: React.PropTypes.number.isRequired,
})
).isRequired,
};
You shouldn't use curly braces inside quotes because it is going to be evaluated as
a string.
Instead you need to move curly braces outside (don't forget to include spaces
between class names):
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, and
react-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 and react-dom. This paves the way to
writing components that can be shared between the web version of React and
React Native.
https://learndepth.com/InterviewQa/"ReactInt" 44/83
7/24/24, 8:19 PM Learn Depth
<label for={'user'}>{'User'}</label>
<input type={'text'} id={'user'} />
<label htmlFor={'user'}>{'User'}</label>
<input type={'text'} id={'user'} />
If you're using React Native then you can use the array notation:
You can use the useState hook to manage the width and height state variables, and
the useEffect hook to add and remove the resize event listener. The [] dependency
array passed to useEffect ensures that the effect only runs once (on mount) and not
on every re-render.
https://learndepth.com/InterviewQa/"ReactInt" 45/83
7/24/24, 8:19 PM Learn Depth
useEffect(() => {
function handleResize() {
setDimensions({
width: window.innerWidth,
height: window.innerHeight,
});
}
window.addEventListener("resize", handleResize);
return () => window.removeEventListener("resize", handleResize);
}, []);
return (
<span>
{dimensions.width} x {dimensions.height}
</span>
);
}
When you use setState() the current and previous states are merged.
replaceState() throws out the current state, and replaces it with only what you
provide. Usually setState() is used unless you really need to remove all previous
keys for some reason. You can also set state to false/null in setState() instead of
using replaceState().
The componentDidUpdate lifecycle method 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.
Q102. What is the recommended approach of removing an array element in React state?
https://learndepth.com/InterviewQa/"ReactInt" 46/83
7/24/24, 8:19 PM Learn Depth
For example, let's create a removeItem() method for updating the state.
removeItem(index) {
this.setState({
data: this.state.data.filter((item, i) => i !== index)
})
}
render() {
return false
}
render() {
return true
}
render() {
return null
}
render() {
return []
}
render() {
return ""
}
render() {
return <React.Fragment></React.Fragment>
}
https://learndepth.com/InterviewQa/"ReactInt" 47/83
7/24/24, 8:19 PM Learn Depth
render() {
return <></>
}
render() {
return undefined
}
We can use
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.
You can do it by creating ref for input element and using it in componentDidMount():
https://learndepth.com/InterviewQa/"ReactInt" 48/83
7/24/24, 8:19 PM Learn Depth
render() {
return (
<div>
<input defaultValue={"Won't focus"} />
<input
ref={(input) => (this.nameInput = input)}
defaultValue={"Will focus"}
/>
</div>
);
}
}
useEffect(() => {
inputElRef.current.focus();
}, []);
return (
<div>
<input defaultValue={"Won't focus"} />
<input ref={inputElRef} defaultValue={"Will focus"} />
</div>
);
};
https://learndepth.com/InterviewQa/"ReactInt" 49/83
7/24/24, 8:19 PM Learn Depth
this.setState((prevState) => ({
user: {
...prevState.user,
age: 42,
},
}));
Q108. How can we find the version of React at runtime in the browser?
ReactDOM.render(
<div>{'React version: $ {REACT_VERSION}'}</div>,
document.getElementById("app")
);
import "core-js/fn/array/find";
import "core-js/fn/array/includes";
import "core-js/fn/number/is-nan";
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?
features=default,Array.prototype.includes"></script>
https://learndepth.com/InterviewQa/"ReactInt" 50/83
7/24/24, 8:19 PM Learn Depth
You just need to use HTTPS=true configuration. You can edit your package.json
scripts section:
"scripts": {
"start": "set HTTPS=true && react-scripts start"
}
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.
history.listen(function (location) {
window.ga("set", "page", location.pathname + location.search);
window.ga("send", "pageview", location.pathname + location.search);
});
You need to use setInterval() to trigger the change, but you also need to clear the
timer when the component unmounts to prevent errors and memory leaks.
componentDidMount() {
this.interval = setInterval(() => this.setState({ time: Date.now() }), 1000)
}
componentWillUnmount() {
clearInterval(this.interval)
}
https://learndepth.com/InterviewQa/"ReactInt" 51/83
7/24/24, 8:19 PM Learn Depth
React does not apply vendor prefixes automatically. You need to add vendor
prefixes manually.
<div
style={{
transform: "rotate(90deg)",
WebkitTransform: "rotate(90deg)", // note the capital 'W' here
msTransform: "rotate(90deg)", // 'ms' is the only lowercase vendor prefix
}}
/>
Q115. How to import and export components using React and ES6?
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.
https://learndepth.com/InterviewQa/"ReactInt" 52/83
7/24/24, 8:19 PM Learn Depth
You could use the ref prop to acquire a reference to the underlying
HTMLInputElement 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 the HTMLElement.click method.
this.inputElement.click();
If you want to use async/await in React, you will need Babel and transform-async-
to-generator plugin. React Native ships with Babel and a set of transforms.
There are two common practices for React project file structure.
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
https://learndepth.com/InterviewQa/"ReactInt" 53/83
7/24/24, 8:19 PM Learn Depth
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
React Transition Group and React Motion are popular animation packages in React
ecosystem.
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.
https://learndepth.com/InterviewQa/"ReactInt" 54/83
7/24/24, 8:19 PM Learn Depth
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 called
eslint-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 is eslint-plugin-jsx-a11y, which will help fix common issues
with accessibility. As JSX offers slightly different syntax to regular HTML, issues with
alt text and tabindex, for example, will not be picked up by regular plugins.
Q124. 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-in
fetch. You should fetch data in the componentDidMount() lifecycle method. This is
so you can use setState() to update your component when the data is retrieved.
For example, the employees list fetched from API and set local state:
https://learndepth.com/InterviewQa/"ReactInt" 55/83
7/24/24, 8:19 PM Learn Depth
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((employee) => (
<li key={employee.name}>
{employee.name}-{employee.experience}
</li>
))}
</ul>
);
}
}
}
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.
Libraries such as React Router and DownShift are using this pattern.
https://learndepth.com/InterviewQa/"ReactInt" 56/83
7/24/24, 8:19 PM Learn Depth
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.
React Router is a wrapper around the history library which handles interaction with
the browser's window.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.
<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.
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.
https://learndepth.com/InterviewQa/"ReactInt" 57/83
7/24/24, 8:19 PM Learn Depth
Using context:
This option is not recommended and treated as unstable API.
https://learndepth.com/InterviewQa/"ReactInt" 58/83
7/24/24, 8:19 PM Learn Depth
Button.contextTypes = {
history: React.PropTypes.shape({
push: React.PropTypes.func.isRequired,
}),
};
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.
Q132. Why you get 'Router may have only one child element' warning?
You have to wrap your Route's in a block because is unique in that it renders a
route exclusively.
https://learndepth.com/InterviewQa/"ReactInt" 59/83
7/24/24, 8:19 PM Learn Depth
<Router>
<Switch>
<Route {/* ... */} />
<Route {/* ... */} />
</Switch>
</Router>
this.props.history.push({
pathname: "/template",
search: "?name=sudheer",
state: { detail: response.data },
});
A renders the first child that matches. A 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>
Below are the list of steps to get history object on React Router v4,
Create a module that exports a history object and import this module across the
project.
For example, create history.js file:
You should use the component instead of built-in routers. Import the above history.js
inside index.js file:
https://learndepth.com/InterviewQa/"ReactInt" 60/83
7/24/24, 8:19 PM Learn Depth
ReactDOM.render(
<Router history={history}>
<App />
</Router>,
holder
);
You can also use push method of history object similar to built-in history object:
// some-other-file.js
import history from "./history";
history.push("/go-here");
The React Intl library makes internationalization 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.
https://learndepth.com/InterviewQa/"ReactInt" 61/83
7/24/24, 8:19 PM Learn Depth
The library provides two ways to format strings, numbers, and dates:
<FormattedMessage
id={"account"}
defaultMessage={"The amount is less than minimum balance."}
/>
Using an API:
formatMessage(messages.accountMessage);
The 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.
https://learndepth.com/InterviewQa/"ReactInt" 62/83
7/24/24, 8:19 PM Learn Depth
MyComponent.propTypes = {
intl: intlShape.isRequired,
};
You can get the current locale in any component of your application using
injectIntl():
MyComponent.propTypes = {
intl: intlShape.isRequired,
};
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.
https://learndepth.com/InterviewQa/"ReactInt" 63/83
7/24/24, 8:19 PM Learn Depth
MyComponent.propTypes = {
intl: intlShape.isRequired,
};
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.
function MyComponent() {
return (
<div>
<span className={"heading"}>{"Title"}</span>
<span className={"description"}>{"Description"}</span>
</div>
);
}
https://learndepth.com/InterviewQa/"ReactInt" 64/83
7/24/24, 8:19 PM Learn Depth
// in your test
const renderer = new ShallowRenderer();
renderer.render(<MyComponent />);
expect(result.type).toBe("div");
expect(result.props.children).toEqual([
<span className={"heading"}>{"Title"}</span>,
<span className={"description"}>{"Description"}</span>,
]);
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.
console.log(testRenderer.toJSON());
// {
// type: 'a',
// props: { href: 'https://www.facebook.com/' },
// children: [ 'Facebook' ]
// }
ReactTestUtils are provided in the with-addons package and allow you to perform
actions against a simulated DOM for the purpose of unit testing.
https://learndepth.com/InterviewQa/"ReactInt" 65/83
7/24/24, 8:19 PM Learn Depth
Let's write a test for a function that adds two numbers in sum.js file:
{
"scripts": {
"test": "jest"
}
}
Finally, run yarn test or npm test and Jest will print a result:
$ yarn test
PASS ./sum.test.js
✓ adds 1 + 2 to equal 3 (2ms)
https://learndepth.com/InterviewQa/"ReactInt" 66/83
7/24/24, 8:19 PM Learn Depth
Redux is a predictable state container for JavaScript apps based on the Flux design
pattern. Redux can be used together with React, or with any other view library. It is
tiny (about 2kB) and has no dependencies.
Single source of truth: The state of your whole application is stored in an object tree
within a single store. The single state tree makes it easier to keep track of changes
over time and debug or inspect the application.
State is read-only: The only way to change the state is to emit an action, an object
describing what happened. This ensures that neither the views nor the network
callbacks will ever write directly to the state.
Changes are made with pure functions: To specify how the state tree is transformed
by actions, you write reducers. Reducers are just pure functions that take the
previous state and an action as parameters, and return the next state.
Instead of saying downsides we can say that there are few compromises of using
Redux over Flux. Those are as follows:
You will need to learn to avoid mutations: Flux is un-opinionated about mutating
data, but Redux doesn't like mutations and many packages complementary to
Redux assume you never mutate the state. You can enforce this with dev-only
packages like redux-immutable-state-invariant, Immutable.js, or instructing your
team to write non-mutating code.
You're going to have to carefully pick your packages: While Flux explicitly doesn't try
to solve problems such as undo/redo, persistence, or forms, Redux has extension
points such as middleware and store enhancers, and it has spawned a rich
ecosystem.
There is no nice Flow integration yet: Flux currently lets you do very impressive
static type checks which Redux doesn't support yet.
mapStateToProps() is a utility which helps your component get updated state (which
is updated by some other components):
https://learndepth.com/InterviewQa/"ReactInt" 67/83
7/24/24, 8:19 PM Learn Depth
const mapDispatchToProps = {
onTodoClick,
};
You just need to export the store from the module where it created with
createStore(). Also, it shouldn't pollute the global window object.
store = createStore(myReducer);
https://learndepth.com/InterviewQa/"ReactInt" 68/83
7/24/24, 8:19 PM Learn Depth
DOM manipulation is very expensive which causes applications to behave slow and
inefficient.
Due to circular dependencies, a complicated model was created around models and
views.
Lot of data changes happens for collaborative applications(like Google Docs).
No way to do undo (travel back in time) easily without adding so much extra code.
Q157. Are there any similarities between Redux and RxJS?
These libraries are very different for very different purposes, but there are some
vague similarities.
Redux is a tool for managing state throughout the application. It is usually used as
an architecture for UIs. Think of it as an alternative to (half of) Angular. RxJS is a
reactive programming library. It is usually used as a tool to accomplish
asynchronous tasks in JavaScript. Think of it as an alternative to Promises. Redux
uses the Reactive paradigm because the Store is reactive. The Store observes
actions from a distance, and changes itself. RxJS also uses the Reactive paradigm,
but instead of being an architecture, it gives you basic building blocks, Observables,
to accomplish this pattern.
render() {
return this.props.isLoaded ? (
<div>{"Loaded"}</div>
) : (
<div>{"Not Loaded"}</div>
);
}
}
https://learndepth.com/InterviewQa/"ReactInt" 69/83
7/24/24, 8:19 PM Learn Depth
You need to follow two steps to use your store in your container:
Use mapStateToProps(): It maps the state variables from your store to the props
that you specify.
Connect the above props to your container: The object returned by the
mapStateToProps function is connected to the container. You can import connect()
from react-redux.
function mapStateToProps(state) {
return { containerData: state.data };
}
You need to write a root reducer in your application which delegate handling the
action to the reducer generated by combineReducers().
For example, let us take rootReducer() to return the initial state after
USER_LOGOUT action. As we know, reducers are supposed to return the initial
state when they are called with undefined as the first argument, no matter the
action.
In case of using redux-persist, you may also need to clean your storage. redux-
persist keeps a copy of your state in a storage engine. First, you need to import the
appropriate storage engine and then, to parse the state before setting it to
https://learndepth.com/InterviewQa/"ReactInt" 70/83
7/24/24, 8:19 PM Learn Depth
state = undefined;
}
Without decorator:
function mapStateToProps(state) {
return { todos: state.todos };
}
function mapDispatchToProps(dispatch) {
return { actions: bindActionCreators(actionCreators, dispatch) };
}
With decorator:
https://learndepth.com/InterviewQa/"ReactInt" 71/83
7/24/24, 8:19 PM Learn Depth
function mapStateToProps(state) {
return { todos: state.todos };
}
function mapDispatchToProps(dispatch) {
return { actions: bindActionCreators(actionCreators, dispatch) };
}
@connect(mapStateToProps, mapDispatchToProps)
export default class MyApp extends React.Component {
// ...define your main app here
}
The above examples are almost similar except the usage of decorator. The
decorator syntax isn't built into any JavaScript runtimes yet, and is still experimental
and subject to change. You can use babel for the decorators support.
Q162. What is the difference between React context and React Redux?
You can use Context in your application directly and is going to be great for passing
down data to deeply nested components which what it was designed for.
Whereas Redux is much more powerful and provides a large number of features
that the Context API doesn't provide. Also, React Redux uses context internally but
it doesn't expose this fact in the public API.
Reducers always return the accumulation of the state (based on all previous and
current actions). Therefore, they act as a reducer of state. Each time a Redux
reducer is called, the state and action are passed as parameters. This state is then
reduced (or accumulated) based on the action, and then the next state is returned.
You could reduce a collection of actions and an initial state (of the store) on which to
perform these actions to get the resulting final state.
You can use redux-thunk middleware which allows you to define async actions.
Let's take an example of fetching specific account as an AJAX call using fetch API:
https://learndepth.com/InterviewQa/"ReactInt" 72/83
7/24/24, 8:19 PM Learn Depth
function setAccount(data) {
return { type: "SET_Account", data: data };
}
Keep your data in the Redux store, and the UI related state internally in the
component.
The best way to access your store in a component is to use the connect() function,
that creates a new component that wraps around your existing one. This pattern is
called Higher-Order Components, and is generally the preferred way of extending a
component's functionality in React. This allows you to map state and action creators
to your component, and have them passed in automatically as your store updates.
https://learndepth.com/InterviewQa/"ReactInt" 73/83
7/24/24, 8:19 PM Learn Depth
Due to it having quite a few performance optimizations and generally being less
likely to cause bugs, the Redux developers almost always recommend using
connect() over accessing the store directly (using context API).
class MyComponent {
someMethod() {
doSomethingWith(this.context.store);
}
}
Q167. What is the difference between component and container in React Redux?
Constants allows you to easily find all usages of that specific functionality across the
project when you use an IDE. It also prevents you from introducing silly bugs
caused by typos – in which case, you will get a ReferenceError immediately.
In reducers:
https://learndepth.com/InterviewQa/"ReactInt" 74/83
7/24/24, 8:19 PM Learn Depth
If the ownProps parameter is specified, React Redux will pass the props that were
passed to the component into your connect functions. So, if you use a connected
component:
https://learndepth.com/InterviewQa/"ReactInt" 75/83
7/24/24, 8:19 PM Learn Depth
{
user: "john";
}
You can use this object to decide what to return from those functions.
Q171. How to structure Redux top level directories?
redux-saga is a library that aims to make side effects (asynchronous things like data
fetching and impure things like accessing the browser cache) in React/Redux
applications easier and better.
It is available in NPM:
Saga is like a separate thread in your application, that's solely responsible for side
effects. redux-saga is a redux middleware, which means this thread can be started,
paused and cancelled from the main application with normal Redux actions, it has
access to the full Redux application state and it can dispatch Redux actions as well.
Q174. What are the differences between call() and put() in redux-saga?
https://learndepth.com/InterviewQa/"ReactInt" 76/83
7/24/24, 8:19 PM Learn Depth
Both call() and put() are effect creator functions. call() function is used to create
effect description, which instructs middleware to call the promise. put() function
creates an effect, which instructs middleware to dispatch an action to the store.
Let's take example of how these effects work for fetching particular user data.
function* fetchUserSaga(action) {
// 'call' function accepts rest arguments, which will be passed to
'api.fetchUser' function.
// Instructing middleware to call promise, it resolved value will be assigned to
'userData' variable
const userData = yield call(api.fetchUser, action.userId);
Redux Thunk middleware allows you to write action creators that return a function
instead of an action. The thunk can be used to delay the dispatch of an action, or to
dispatch only if a certain condition is met. The inner function receives the store
methods dispatch() and getState() as parameters.
Both Redux Thunk and Redux Saga take care of dealing with side effects. In most
of the scenarios, Thunk uses Promises to deal with them, whereas Saga uses
Generators. Thunk is simple to use and Promises are familiar to many developers,
Sagas/Generators are more powerful but you will need to learn them. But both
middleware can coexist, so you can start with Thunks and introduce Sagas when/if
you need them.
Redux DevTools is a live-editing time travel environment for Redux with hot
reloading, action replay, and customizable UI. If you don't want to bother with
installing Redux DevTools and integrating it into your project, consider using Redux
DevTools Extension for Chrome and Firefox.
https://learndepth.com/InterviewQa/"ReactInt" 77/83
7/24/24, 8:19 PM Learn Depth
If you change the reducer code, each staged action will be re-evaluated.
If the reducers throw, you will see during which action this happened, and what the
error was.
With persistState() store enhancer, you can persist debug sessions across page
reloads.
Q179. What are Redux selectors and why to use them?
Selectors are functions that take Redux state as an argument and return some data
to pass to the component.
The selector can compute derived data, allowing Redux to store the minimal
possible state
The selector is not recomputed unless one of its arguments changes
Redux Form works with React and Redux to enable a form in React to use Redux to
store all of its state. Redux Form can be used with raw HTML5 inputs, but it also
works very well with common UI frameworks like Material UI, React Widgets and
React Bootstrap.
For example, you can add redux-thunk and logger passing them as arguments to
applyMiddleware():
https://learndepth.com/InterviewQa/"ReactInt" 78/83
7/24/24, 8:19 PM Learn Depth
const initialState = {
todos: [{ id: 123, name: "example", completed: false }],
};
Relay is similar to Redux in that they both use a single store. The main difference is
that relay only manages state originated from the server, and all access to the state
is used via GraphQL queries (for reading data) and mutations (for changing data).
Relay caches the data for you and optimizes data fetching for you, by fetching only
changed data and nothing more.
Actions are plain JavaScript objects or payloads of information that send data from
your application to your store. They are the only source of information for the store.
Actions must have a type property that indicates the type of action being performed.
For example, let's take an action which represents adding a new todo item:
{
type: ADD_TODO,
text: 'Add todo item'
}
React is a JavaScript library, supporting both front end web and being run on the
server, for building user interfaces and web applications.
https://learndepth.com/InterviewQa/"ReactInt" 79/83
7/24/24, 8:19 PM Learn Depth
React Native can be tested only in mobile simulators like iOS and Android. You can
run the app in your mobile using expo app (https://expo.io) Where it syncs using QR
code, your mobile and computer should be in same wireless network.
You can use console.log, console.warn, etc. As of React Native v0.29 you can
simply run the following to see logs in the console:
$ react-native log-ios
$ react-native log-android
Reselect is a selector library (for Redux) which uses memoization concept. It was
originally written to compute derived data from Redux-like applications state, but it
can't be tied to any architecture or library.
Reselect keeps a copy of the last inputs/outputs of the last call, and recomputes the
result only if one of the inputs changes. If the the same inputs are provided twice in
a row, Reselect returns the cached output. It's memoization and cache are fully
customizable.
Flow is a static type checker designed to find type errors in JavaScript. Flow types
can express much more fine-grained distinctions than traditional type systems. For
example, Flow helps you catch errors involving null, unlike most type systems.
https://learndepth.com/InterviewQa/"ReactInt" 80/83
7/24/24, 8:19 PM Learn Depth
Flow is a static analysis tool (static checker) which uses a superset of the language,
allowing you to add type annotations to all of your code and catch an entire class of
bugs at compile time.
PropTypes is a basic type checker (runtime checker) which has been patched onto
React. It can't check anything other than the types of the props being passed to a
given component. If you want more flexible typechecking for your entire project
Flow/TypeScript are appropriate choices.
Install font-awesome:
import "font-awesome/css/font-awesome.min.css";
render() {
return <div><i className={'fa fa-spinner'} /></div>
}
React Developer Tools let you inspect the component hierarchy, including
component props and state. It exists both as a browser extension (for Chrome and
Firefox), and as a standalone app (works with other environments including Safari,
IE, and React Native).
Chrome extension
Firefox extension
Standalone app (Safari, React Native, etc)
https://learndepth.com/InterviewQa/"ReactInt" 81/83
7/24/24, 8:19 PM Learn Depth
If you opened a local HTML file in your browser (file://...) then you must first open
Chrome Extensions and check Allow access to file URLs.
Q196. How to use Polymer in React?
<link
rel="import"
href="../../bower_components/polymer/polymer.html"
/>;
Polymer({
is: "calendar-element",
ready: function () {
this.textContent = "I am a calendar";
},
});
Create the Polymer component HTML tag by importing it in a HTML document, e.g.
import it in the index.html of your React application:
<link
rel="import"
href="./src/polymer-components/calendar-element.html"
/>
https://learndepth.com/InterviewQa/"ReactInt" 82/83
7/24/24, 8:19 PM Learn Depth
Lets create
// Create a <Title> component that renders an <h1> which is centered, red and
sized at 1.5em
const Title = styled.h1'
font-size: 1.5em;
text-align: center;
color: palevioletred;
';
// Create a <Wrapper> component that renders a <section> with some padding and a
papayawhip background
const Wrapper = styled.section'
padding: 4em;
background: papayawhip;
';
These two variables, Title and Wrapper, are now components that you can render
just like any other react component.
<Wrapper>
<Title>{"Lets start first styled component!"}</Title>
</Wrapper>
https://learndepth.com/InterviewQa/"ReactInt" 83/83