ReactJS ReactStrap Tooltip Component
Last Updated :
25 Jul, 2024
Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The Tooltip component helps in displaying informative text when users hover over, focus on, or tap an element. We can use the following approach in ReactJS to use the ReactJS Reactstrap Tooltip Component.
Tooltip Props:
- children: It is used to pass the children element to this component.
- trigger: It is used to denote a space-separated list of triggers.
- boundariesElement: It is used to denote the boundaries for a popper.
- isOpen: It is used to indicate whether to open tooltip or not.
- hideArrow: It is used to indicate whether to hide an arrow or not.
- toggle: It is a callback function for toggling isOpen in the controlling component.
- target: It is used to denote the target element or element ID.
- container: It is used to indicate where to inject the popper DOM node.
- delay: It is used to denote the delay value.
- className: It is used to denote the class name for styling.
- popperClassName: It is used to apply a class to the popper component.
- innerClassName: It is used to apply a class to the inner-tooltip.
- arrowClassName: It is used to apply a class to the arrow-tooltip.
- autohide: It is used to indicate whether to hide tooltip when hovering over tooltip content or not.
- placement: It is used for the placement of the tooltip.
- modifiers: It is used to denote a custom modifier that are passed to Popper.js
- positionFixed: It is used to indicate whether the tooltip pointing element has position: fixed styling or not.
- offset: It is used to denote offset element.
- innerRef: It is used to denote the inner reference element.
- fade: It is used to indicate whether to show/hide the tooltip with a fade effect.
- flip: It is used to indicate whether to flip the direction of the tooltip if too close to the container edge.
Creating React Application And Installing Module:
Project Structure: It will look like the following.
Project StructureExample 1: Now write down the following code in the App.js file. Here, we have shown a tooltip at the right position without delay props.
App.js
import React from 'react'
import 'bootstrap/dist/css/bootstrap.min.css';
import { Tooltip, Button } from "reactstrap"
function App() {
// Tooltip Open state
const [tooltipOpen, setTooltipOpen] = React.useState(false);
return (
<div style={{
display: 'block', width: 900, padding: 30
}}>
<h4>ReactJS Reactstrap Tooltip Component</h4>
<Button id="TooltipExample">Hover me to see Tooltip</Button>
<Tooltip
isOpen={tooltipOpen}
placement="right"
target="TooltipExample"
toggle={() => { setTooltipOpen(!tooltipOpen) }}>
Sample Tooltip Text...
</Tooltip>
</div >
);
}
export default App;
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: Now write down the following code in the App.js file. Here, we have shown a tooltip at the bottom position without delay props set to show tooltip after 1 second and hide it after 2 seconds.
App.js
import React from 'react'
import 'bootstrap/dist/css/bootstrap.min.css';
import { Tooltip } from "reactstrap"
function App() {
// Tooltip Open state
const [tooltipOpen, setTooltipOpen] = React.useState(false);
return (
<div style={{
display: 'block', width: 900, padding: 30
}}>
<h4>ReactJS Reactstrap Tooltip Component</h4>
<span id="testID">Hover Me to see Tooltip!!</span>
<Tooltip isOpen={tooltipOpen}
delay={{ show:1000, hide: 2000 }}
target="testID"
placement="bottom"
toggle={() => setTooltipOpen(!tooltipOpen)}>
Sample ToolTip Information...
</Tooltip>
</div >
);
}
export default App;
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:
Similar Reads
ReactJS Reactstrap Form Component Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The Form component is used when the user needs to create an instance or collect information. We can use the following approach in ReactJS
5 min read
ReactJS Reactstrap Card Component Reactstrap: Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The Card components allow the user to display content. We can use the following approach in ReactJS to use the ReactJS Reactst
5 min read
ReactJS Reactstrap List Component Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The List component allows the user to display a list. We can use the following approach in ReactJS to use the ReactJS Reactstrap List Comp
3 min read
React Suite Tooltip Component React Suite is a popular front-end library with a set of React components that are designed for the middle platform and back-end products. Tooltip component allows the user to display informative text when users hover over, focus on, or tap an element. We can use the following approach in ReactJS to
3 min read
ReactJS Reactstrap Alert Component Reactstrap: Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The alert Component is used for urgent interruptions, requiring acknowledgment that informs the user about a situation. We can
2 min read
ReactJS Reactstrap Modal Component Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The Modal component provides a solid foundation for creating dialogs, lightboxes, popovers, etc. We can use the following approach in Reac
4 min read
ReactJS Reactstrap Badges Component Reactstrap is a bootstrap-based react UI library that is used to make good-looking webpages with its seamless and easy-to-use component. In this article we will know how to use Badges Component in Reactstrap. Badges are used for creating labels. Badges scale to match the size of the immediate parent
2 min read
ReactJS Reactstrap Popover Component Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The Popover component is a container-type element that hovers over the parent window. We can use the following approach in ReactJS to use
4 min read
ReactJS Evergreen Tooltip Component React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. Tooltip component allows the user to display informative text when users hover over, focus on, or tap an element. We can us
2 min read
ReactJS Reactstrap Jumbotron Component Reactstrap is a bootstrap-based react UI library that is used to make good looking webpages with its seamless and easy-to-use component. A jumbotron is a big grey box used to indicate some text which requires extra attention. Any text that seems to be important can be written inside a jumbotron to m
3 min read