0.6.3 • Published 4 years ago

@gerwim/react-native-walkthrough-tooltip v0.6.3

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago
:warning: WARNING
This is a forked repository based on the 0.6.1 tag and is not under active development.

React Native Walkthrough Tooltip

Much credit belongs to @jeanregisser and the react-native-popover library. Most of the animations and geometry computation belong to his library. Please check it out! It was an invaluable resource.

Tooltip

React Native Walkthrough Tooltip is a fullscreen modal that highlights whichever element it wraps.\ When not visible, the wrapped element is displayed normally.

Installation

yarn add react-native-walkthrough-tooltip

Example Usage

import Tooltip from 'react-native-walkthrough-tooltip';

<Tooltip
  animated
  isVisible={this.state.toolTipVisible}
  content={<Text>Check this out!</Text>}
  placement="top"
  onClose={() => this.setState({ toolTipVisible: false })}
>
  <TouchableHighlight style={styles.touchable}>
    <Text>Press me</Text>
  </TouchableHighlight>
</Tooltip>

How it works

The tooltip wraps an element in place in your React Native rendering. When it initially renders, it measures the location of the element in the window, utilizing React Native's measureInWindow. When the tooltip is displayed, it renders a copy of the wrapped element positioned absolutely on the screen at the coordinates returned after measuring. This allows you to touch the element in the tooltip modal rendered above your current screen.

Optionally, you can provide the props onChildPress or onChildLongPress to override the functionality of the current element, should you find that useful. More information on this can be found below.

Props

Prop nameTypeDefault valueDescription
animatedboolfalseWhen true, tooltip will animate in/out when showing/hiding
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
contentfunction/Element<View />This is the view displayed in the tooltip popover bubble
displayAreaRectfullscreen Rect with 24px of paddingScreen area where the tooltip may be displayed
isVisibleboolfalseWhen true, tooltip is displayed
onChildLongPressfunctionnullCallback when user long presses on wrapped child. Overrides any touches in wrapped child element. See below for more info
onChildPressfunctionnullCallback when user long presses on wrapped child. Overrides any touches in wrapped child element. See below for more info
onClosefunctionnullCallback fired when the user taps the tooltip background overlay
placementstring'auto'Where to position the tooltip - options: top, bottom, left, right, auto. When auto is specified, the library will determine the ideal placement so that the popover is fully visible within displayArea.
childlessPlacementPaddingnumber or percentage string24When the tooltip is rendered without a child element, this prop will determine the distance in pixels from the specified placement, i.e. a value of '25%' with placement 'bottom' would render the tooltip 25% of the device height above the bottom of the screen (prop ignored if tooltip is rendered with a child element)

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
contentStyleStyles the content wrapper that surrounds the content element
tooltipStyleStyles the tooltip that wraps the arrow and content elements

Class definitions for props

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

onChildPress and onChildLongPress

When providing either of these functions, React Native Walkthrough Tooltip will wrap your entire child element in a touchable like so:

<TouchableWithoutFeedback onPress={onChildPress} onLongPress={onChildLongPress}>
  {childElement}
</TouchableWithoutFeedback>

NOTE: This will disable and override any touch events on your child element

One possible use case for these functions would be a scenerio where you are highlighting new functionality and want to restrict a user to ONLY do a certain action when they press on an element. While perhaps uncommon, this use case was relevant for another library I am working on, so it may be useful for you. When these props are NOT provided, all touch events on children occur as expected.

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>