Thursday, July 4, 2024
HomeLanguagesReactHow to use Popper Component in ReactJS ?

How to use Popper Component in ReactJS ?

A Popper is used to show the part of the content on top of another. It’s an alternative feature for react-popper. Material UI for React has this component available for us, and it is simple and very easy to integrate. For perfect positioning, it uses 3rd party library which is Popper.js. We can use the Popper Component in ReactJS using the following approach.

Creating React Application And Installing Module:

Step 1: Create a React application using the following command.

npx create-react-app foldername

Step 2: After creating your project folder i.e. foldername, move to it using the following command.

cd foldername

Step 3: After creating the ReactJS application, Install the material-ui modules using the following command.

npm install @mui/material

Project Structure: 

Project Structure

Example 1: In this example, we will create a simple Popper component that gets displayed at the click of a button. Please update your App.js file like below:

Filename: App.js

Javascript




import { Popper } from '@mui/material';
import React from 'react';
 
export default function App() {
 
    const [anchorEl, setAnchorEl] = React.useState(null);
    const open = Boolean(anchorEl);
 
    return (
        <div style={{ display: 'block', padding: 30 }}>
            <h1 style={{ color: 'green' }}>neveropen</h1>
            <h4>How to use Popper Component in ReactJS?</h4>
            <button type="button" onClick={(event) => {
                setAnchorEl(anchorEl ? null : event.currentTarget);
            }}>
                Click Me to Toggle Popper
            </button>
            <Popper
                id={open ? 'simple-popper' : undefined}
                open={open}
                anchorEl={anchorEl}>
                <div style={{
                    padding: 2,
                    border: '1px solid',
                    backgroundColor: 'gray',
                }}>Greetings from neveropen</div>
            </Popper>
        </div>
    );
}


Step to Run Application: Run the application using the following command from the root directory of the project.

npm start

Output: Now open your browser and go to http://localhost:3000/, you will see the following output.

 

Example 2: In this example, we will create 2 Popper components that get displayed in different directions, one at the top and the other at the bottom in orientation. Please update your App.js file like the below:

Filename: App.js

Javascript




import { Popper } from '@mui/material';
import React from 'react';
 
export default function App() {
    const [anchorElA, setAnchorElA] = React.useState(null);
    const [anchorElB, setAnchorElB] = React.useState(null);
    const openA = Boolean(anchorElA);
    const openB = Boolean(anchorElB);
 
    return (
        <div style={{ display: 'block', padding: 30 }}>
            <h1 style={{ color: 'green' }}>neveropen</h1>
            <h4>How to use Popper Component in ReactJS?</h4>
            <div style={{ display: 'flex', gap: '10px' }}>
                <button type="button" onClick={(event) => {
                    setAnchorElA(anchorElA ? null : event.currentTarget);
                }}>
                    Popper on top
                </button>
                <button type="button" onClick={(event) => {
                    setAnchorElB(anchorElB ? null : event.currentTarget);
                }}>
                    Popper on bottom
                </button>
            </div>
            <Popper
                id={openA ? 'simple-popper' : undefined}
                placement='top'
                open={openA}
                anchorEl={anchorElA}>
                <div style={{
                    padding: 2,
                    border: '1px solid',
                    backgroundColor: 'gray',
                }}>Greetings from neveropen</div>
            </Popper>
            <Popper
                id={openB ? 'simple-popper' : undefined}
                placement='bottom'
                open={openB}
                anchorEl={anchorElB}>
                <div style={{
                    padding: 2,
                    border: '1px solid',
                    backgroundColor: 'gray',
                }}>Greetings from neveropen</div>
            </Popper>
        </div>
    );
}


Steps to run the application:

npm start

Output:

 

Reference: https://mui.com/material-ui/react-popper/#main-content

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Dominic Rubhabha Wardslaus
Dominic Rubhabha Wardslaushttps://neveropen.dev
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments