Socket
Socket
Sign inDemoInstall

react-native-tooltip-2

Package Overview
Dependencies
1
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-tooltip-2

Customizable, easy to use tooltip for React Native


Version published
Weekly downloads
2.4K
increased by27.49%
Maintainers
1
Install size
170 kB
Created
Weekly downloads
 

Readme

Source
React Native Tooltip 2

Battle Tested ✅

React Native Tooltip 2

npm version npm Platform - Android and iOS License: MIT styled with prettier

React Native Tooltip 2 React Native Tooltip 2

Installation

Add the dependency:

npm i react-native-tooltip-2

Usage

Import

import Tooltip from "react-native-tooltip-2";

Fundamental Usage

 <Tooltip
    isVisible={toolTipVisible}
    content={<Text>Check this out!</Text>}
    placement={Placement.TOP}
    onClose={() => setToolTipVisible(false)}>
    <Pressable
        style={styles.button}
        onPress={() => setToolTipVisible(true)}>
        <Text>Press me</Text>
    </Pressable>
</Tooltip>

Example Project 😍

You can checkout the example project 🥰

Simply run

  • npm i && npx pod-install
  • react-native run-ios/android

should work of the example project.

How it works

The tooltip wraps an element in place in your React Native rendering. When it renders, it measures the location of the element, using React Native's measure. When the tooltip is displayed, it renders a copy of the wrapped element positioned absolutely on the screen at the coordinates returned after measuring (see TooltipChildrenContext below if you need to tell the difference between the copy and the original element). This allows you to touch the element in the tooltip modal rendered above your current screen.

Props

Prop nameTypeDefault valueDescription
accessiblebooltrueSet this to false if you do not want the root touchable element to be accessible. See docs on accessible here
allowChildInteractionbooltrueBy default, the user can touch and interact with the child element. When this prop is false, the user cannot interact with the child element while the tooltip is visible.
arrowSizeSize{ width: 16, height: 8 }The dimensions of the arrow on the bubble pointing to the highlighted element
backgroundColorstring'rgba(0,0,0,0.5)'Color of the fullscreen background beneath the tooltip. Overrides the backgroundStyle prop
childContentSpacingnumber4The distance between the tooltip-rendered child and the arrow pointing to it
closeOnChildInteractionbooltrueWhen child interaction is allowed, this prop determines if onClose should be called when the user interacts with the child element. Default is true (usually means the tooltip will dismiss once the user touches the element highlighted)
closeOnContentInteractionbooltruethis prop determines if onClose should be called when the user interacts with the content element. Default is true (usually means the tooltip will dismiss once the user touches the content element)
contentfunction/Element<View />This is the view displayed in the tooltip popover bubble
displayInsetsobject{ top: 24, bottom: 24, left: 24, right: 24 }The number of pixels to inset the tooltip on the screen (think of it like padding). The tooltip bubble should never render outside of these insets, so you may need to adjust your content accordingly
disableShadowboolfalseWhen true, tooltips will not appear elevated. Disabling shadows will remove the warning: RCTView has a shadow set but cannot calculate shadow efficiently on IOS devices.
isVisibleboolfalseWhen true, tooltip is displayed
onClosefunctionnullCallback fired when the user taps the tooltip background overlay
placementstring"top" | "center"Where to position the tooltip - options: top, bottom, left, right, center. Default is top for tooltips rendered with children Default is center for tooltips rendered without children.

NOTE: center is only available with a childless placement, and the content will be centered within the bounds defined by the displayInsets.
showChildInTooltipbooltrueSet this to false if you do NOT want to display the child alongside the tooltip when the tooltip is visible
supportedOrientationsarray["portrait", "landscape"]This prop allows you to control the supported orientations the tooltip modal can be displayed. It correlates directly with the prop for React Native's Modal component (has no effect if useReactNativeModal is false)
topAdjustmentnumber0Value which provides additional vertical offest for the child element displayed in a tooltip. Commonly set to: Platform.OS === 'android' ? -StatusBar.currentHeight : 0 due to an issue with React Native's measure function on Android
horizontalAdjustmentnumber0Value which provides additional horizontal offest for the child element displayed in a tooltip. This is useful for adjusting the horizontal positioning of a highlighted child element if needed
useInteractionManagerboolfalseSet this to true if you want the tooltip to wait to become visible until the callback for InteractionManager.runAfterInteractions is executed. Can be useful if you need to wait for navigation transitions to complete, etc. See docs on InteractionManager here
useReactNativeModalbooltrueBy default, this library uses a <Modal> component from React Native. If you need to disable this, and simply render an absolutely positioned full-screen view, set useReactNativeModal={false}. This is especially useful if you desire to render a Tooltip while you have a different Modal rendered.

Style Props

The tooltip styles should work out-of-the-box for most use cases, however should you need you can customize the styles of the tooltip using these props.

Prop nameEffect
arrowStyleStyles the triangle that points to the called out element
backgroundStyleStyles the overlay view that sits behind the tooltip, but over the current view
childrenWrapperStyleStyles the view that wraps cloned children
contentStyleStyles the content wrapper that surrounds the content element
tooltipStyleStyles the tooltip that wraps the arrow and content elements

Class definitions for props

  • Size is an object with properties: { width: number, height: number }

TooltipChildrenContext

React Context that can be used to distinguish "real" children rendered inside parent's layout from their copies rendered inside tooltip's modal. The duplicate child rendered in the tooltip modal is wrapped in a Context.Provider which provides object with prop tooltipDuplicate set to true, so informed decisions may be made, if necessary, based on where the child rendered.

import Tooltip, { TooltipChildrenContext } from 'react-native-walkthrough-tooltip';
...
<Tooltip>
  <ComponentA />
  <ComponentB>
    <TooltipChildrenContext.Consumer>
      {({ tooltipDuplicate }) => (
        // Will only assign a ref to the original component
        <FlatList {...(!tooltipDuplicate && { ref: this.listRef })} />
      )}
    </TooltipChildrenContext.Consumer>
  </ComponentB>
</Tooltip>

Credits

This library is a fork of react-native-walkthrough-tooltip

  • Full typescript re-written
  • Much better types and props
  • Better customizability

Future Plans

  • LICENSE
  • Code separation rely on separation of concern(SoC)
  • Code cleanup and refactoring
  • Better README and documentation
  • Write an article about the lib on Medium

Author

FreakyCoder, kurayogun@gmail.com

License

React Native Tooltip 2 is available under the MIT license. See the LICENSE file for more info.

Keywords

FAQs

Last updated on 09 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc