3.0.0 β€’ Published 2 years ago

react-native-ios-popover v3.0.0

Weekly downloads
8
License
MIT
Repository
github
Last release
2 years ago

react-native-ios-popover

A react native wrapper component to use the native iOS popover by wrapping a react native view inside a UIViewController and presenting it.

PopoverView Left: Example 1, Example 2, and Right: Example 3, Example 4 Popover View Example 1, 2, 3 and 4

PopoverView Left: Example 5, Example 6, and Right: Example 7, Example 8 Popover View Example 1, 2, 3 and 4


🚧⚠️ Documentation WIP 🚧⚠️

Re-write in progress (see TODO for updates). See README-old.md for the old version of the documentation.

1. Installation

# 1 install via npm...
npm install react-native-ios-popover

# 1.2 ...or install via yarn 
yarn add react-native-ios-popover

# 2.1 install dependency via npm...
npm install react-native-ios-utilities

# 2.2 ...or install dependency via yarn
# Note: See "Installation: Dependencies" section for more details
yarn install react-native-ios-utilities

# 3. then run pod install (uses auto-linking)
cd ios && pod install

1.1 Installation Notes

If you encounter any errors/bugs while using this library, or want a particular feature implemented, please see the troubleshooting section, or create an issue!

Installation: Dependencies

This library depends on react-native-ios-utilities for some of the native functionality (i.e. it uses it as a peer dependency).

If you want to install and use a specific version of this library, please see the Installation: Versions and Compatibility section for more details.

If you are using any other library that uses react-native-ios-utilities (e.g. react-native-ios-context-menu, etc)., then please refer to the version compatibility guide.

Installation: Versions and Compatibility

The library's peer dependency requirements are enforced using semver (i.e. major.minor.patch). If you wish to use a specific version of this library, then please install the corresponding version of react-native-ios-utilities.πŸ“ Note: As a general rule, the major version should be the same between the library and the dependency. For example, if you're using react-native-ios-popover@2.3.12, then you should install react-native-ios-popover@2.x.x, etc.

Library Version react-native-ios-popoverDependency Version react-native-ios-utilities
0.x.xN/A (No External Dependencies)
1.x.x0.x.x
2.0.x2.0.x
3.0.x3.0.x

1.2 Troubleshooting

Troubleshooting: Xcode Build Error (Swift)

This library is written in Swift. If you are having trouble building your app after installing this library, try adding an empty swift file: 1. Open up your ios/project.xcworkspace project 2. On the project navigator panel (located on the right side of Xcode), right click on your project group (or another folder/group i.e the blue or yellow icons) and select the "New File..." option 3. In the popup sheet, select "Swift" as the template and then click the "Next" button 4. A "Save As" popup sheet should appear and then click "Create" (you can rename the file first if you want to) 5. If Xcode asks you to create a "Objective-C Bridging Header" choose "Create Objective-C Bridging Header"

Troubleshooting: Cocoapods Static Libraries Error

If you encounter the following error when running pod install:

[!] The following Swift pods cannot yet be integrated as static libraries:

The Swift pod `react-native-ios-popover` depends upon `React-Core`, which does not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set `use_modular_headers!` globally in your Podfile, or specify `:modular_headers => true` for particular dependencies.

Then try following these steps: 1. Open up your project's ios/podfile configuration 2. Under target 'ProjectName' do block, find the 'React-Core' pod, and append the following snippet to the end of the line: , :modular_headers => true 3. It should now look something similar to this: pod 'React-Core', :path => '../node_modules/react-native/', :modular_headers => true 4. Try running pod install again.

2. Usage

Please check out the examples section or the examples directory for more on how to use it.

import { PopoverView } from "react-native-ios-popover";

function PopoverViewExample() {
  const popoverRef = useRef();

  return (
    <PopoverView
      ref={popoverRef}
      renderPopoverContent={() => (
        <View style={{padding: 20}}>
          <Text>
            {'Popover Content'}
          </Text>
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        popoverRef.current.toggleVisibility();
      }}>
        <Text>
          {'Toggle Popover Visibility'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

3. Documentation

3.1 Modules/Components

PopoverView Component

PopoverView Component: Props
Prop NameDescription
πŸ”€ Required: renderPopoverContentβš›οΈ () => React.ReactElementThe elements to show in the popover. This prop accepts a function that returns an element. The element returned from this function will be shown in the popover.See example 1 section.
πŸ”€ popoverSizeβš›οΈ PopoverSizeConfig✳️ Default: { type: 'INHERIT'Β }Controls the size the of the popover.This prop accepts a PopoverSizeConfig object.If you want to set a custom size for the popover, provide a PopoverSizeConfig with the type property set to CUSTOM, along with the desired height and width (e.g. {type: 'CUSTOM', width: 100, height: 100}).See example 3 section.
πŸ”€ popoverBackgroundColorβš›οΈ string✳️ Default: transparentSets the background color of the popover.See example 4 section.
πŸ”€ permittedArrowDirectionsβš›οΈ Array<PopoverArrowDirections>Sets the arrow directions that you allow for the popover. Accept an array of 0 or more string values, i.e. an array of ArrowDirections enum items (e.g. up, down, etc.)Note If you pass in an empty array, then there will be no arrow shown.See example 2 section.
πŸ”€ lazyPopoverβš›οΈ boolean✳️ Default: trueControls whether or not the popover content is always mounted. If set to true the popover content will only be mounted while the popover is visible.Set this to false to prevent the popover from closing.
πŸ”€ popoverShouldDismissβš›οΈ boolean✳️ Default: trueControls whether or not a tap outside the popover will dismiss it.See example 7 section.
πŸ”€ popoverCanOverlapSourceViewRectβš›οΈ boolean✳️ Default: falseControls whether the popover can overlap its source view. If set to false the popover will avoid covering up the source view.See example 3 section.
PopoverView Component: Events
Event NameDescription
πŸ”€ onPopoverDidShowβš›οΈ OnPopoverDidShowEventEvent that gets called after the popover is shown, i.e. this event is invoked after the popover entrance animation is finished.
πŸ”€ onPopoverDidHideβš›οΈ OnPopoverDidHideEventEvent that gets called after the popover is hidden, i.e. this event is invoked after the popover exit animation is finished.
πŸ”€ onPopoverWillShowβš›οΈ OnPopoverWillShowEventEvent that gets called before the popover is shown, i.e. this event is immediently invoked when the popover is about to become visible.
πŸ”€ onPopoverWillHideβš›οΈ OnPopoverWillHideEventEvent that gets called before the popover is hidden, i.e. this event is immediently invoked when the popover is about to become hidden.
πŸ”€ onPopoverDidHideViaTapβš›οΈ OnPopoverDidHideViaTapEventEvent that gets called before the popover is hidden due to a tap outside the popover's content, i.e. this event is immediently invoked when the popover is about to become hidden.
πŸ”€ onPopoverWillHideViaTapβš›οΈ OnPopoverWillHideViaTapEventEvent that gets called after the popover is hidden due to a tap outside the popover's content, i.e. this event is invoked after the popover exit animation is finished.
πŸ”€ onPopoverDidAttemptToDismissβš›οΈ OnPopoverDidAttemptToDismissEventThis event is invoked when the popoverShouldDismiss prop is set to false, and a tap outside the popover's content is initiated to dismiss the popover.
PopoverView Component: Functions
Function NameDescription
πŸ”€ setVisibility(visibility: boolean)βš›οΈ Promise<void>A function that you can call to set whether or not the popover is shown or hidden.This function returns a promise that gets resolved when the popover is successfully shown or hidden. This function throws an error if the popover is already hidden or shown.See Example 1 section
πŸ”€ toggleVisibilityβš›οΈ Promise<void>A function that you can call to toggle the popover's visibility.This function returns a promise that gets resolved when the popover is successfully shown or hidden.
πŸ”€ getVisibilityβš›οΈ Promise<boolean>A function to query whether or not the popover is visible. Returrns a promise that resolves to a boolean value.

3.2 Objects and Types

πŸ“„ PopoverRelatedTypes.ts

String Union: PopoverSize

This type is used in the PopoverView component's popoverSize prop. Use this type to control the size of the popover.

ValueDescription
INHERITThe default value. Specifies that the popover's size should match the view you return from PopoverView.renderPopoverContent prop. It will automatically resize/scale the popover to fit the screen.
STRETCHSpecifies that we want the popover to be as big as possible, i.e. the popover should to stretch and fill up the screen.
CUSTOMSpecifies that a custom size is to be use for popover via the popoverSize object.
String Union: ArrowDirections

This type is used to for the PopoverView component's permittedArrowDirections prop. This type corresponds to the UIPopoverArrowDirection swift struct, check out the apple docs for more info.

ValueDescription
upAn arrow that points upward. The popover will appear at the bottom with the arrow pointing up.
downAn arrow that points downward. The popover will appear at the top with the arrow pointing down.
leftAn arrow that points toward the left. The popover will appear at the right with the arrow pointing left.
rightAn arrow that points toward the right. The popover will appear at the left with the arrow pointing right.
anyAn arrow that points in any direction.
unknownThe status of the arrow is currently unknown.

4 Examples

Check out the examples directory. The example app contains a bunch of demos that showcases the different PopoverView configurations, props and events you can use. The assets directory contains gifs and screenshots for every example/test shown in the example app.

  • Note: the section title on each example contains a link to the corresponding example code.
  1. Clone the repository: git clone https://github.com/dominicstop/react-native-ios-popover.git
  2. cd react-native-ios-popover && yarn bootstrap
  3. Go to the react-native-ios-context-popover/example directory and run yarn ios to build/launch the example app in the iOS simulator.

4.1 PopoverView Examples

PopoverView Example 01

A bare minimum example showing how to present a popover via the setVisibility function.

πŸ”— Full Example

function PopoverViewExample01() {
  const popoverRef = useRef();

  return (
    <PopoverView
      // get/store a ref to the popover component
      ref={popoverRef}
      // a function that returns the content to show
      // inside the popover
      renderPopoverContent={() => (
        <View style={{padding: 20}}>
          <Text>
            {'Popover Content'}
          </Text>
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        // show the popover when the button is pressed
        // (note: `setVisibility` will throw an error if attempting to 
        // show a popover that's already visible)
        // alt. you can call `toggleVisibility` to show/hide the popover
        popoverRef.current.setVisibility(true);
      }}>
        <Text>
          {'Show Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

PopoverView Example 02

A example PopoverView for the permittedArrowDirections prop.

  • This prop accepts an array of ArrowDirections string values (e.g: 'up', 'down', etc). You can also pass in an empty array or null to specify that the popover should not have an arrow.
  • The popover position and sizing will automatically adapt based on the permittedArrowDirections.

πŸ”— Full Example

function PopoverViewExample02() {
  const popoverRef = useRef();
  
  return(
    <PopoverView
      ref={popoverRef}
      // the allowed direction of the popover arrow.
      // accepts an array of `ArrowDirections` values,
      // e.g. "up", "down", etc.
      permittedArrowDirections={["left"]}
      renderPopoverContent={() => (
        <View style={{padding: 20}}>
          <Text>
            {'Left Arrow'}
          </Text>
        </View>
      )}
      >
      <TouchableOpacity onPress={() => {
        popoverRef.current.setVisibility(true);
      }}>
        <Text>
          {'Show Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

PopoverView Example 03

A example PopoverView with the popoverSize prop set to STRETCH.

  • By default, the popoverSize prop is set to INHERIT which means the size of the popover is determined by the size of the popover content.
  • However, if you set the prop to STRETCH, the popover will be sized to be as big as possible based on the permittedArrowDirections prop, its position on screen, etc.

πŸ”— Full Example

function PopoverViewExample03() {
  const popoverRef = useRef();

  return(
    <PopoverView
      ref={popoverRef}
      // set the `popoverSize` prop to `STRETCH` to make the
      // popover as big as possible.
      popoverSize={{type: 'STRETCH'}}
      // You also have to set `popoverCanOverlapSourceViewRect`
      // prop to false to prevent the popover from covering up
      // the popover source view.
      popoverCanOverlapSourceViewRect={false}
      permittedArrowDirections={["up", "down"]}
      // the style of the root popover content view must be set
      // to `{flex: 1}` so that it'll stretch to the size of the
      // popover.
      renderPopoverContent={() => (
        <View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}>
          <Text>
            {'Popover Content'}
          </Text>
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        popoverRef.current.setVisibility(true);
      }}>
        <Text>
          {'Show Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

PopoverView Example 04

A example PopoverView with the popoverBackgroundColor prop set to "pink". By default, the PopoverView has a transparent background with a blur effect.

πŸ”— Full Example

function PopoverViewExample04(props) {
  const popoverRef = useRef();

  return (
    <PopoverView
      ref={popoverRef}
      // pass in a valid color value
      popoverBackgroundColor={'pink'}
      renderPopoverContent={() => (
        <View style={{padding: 20}}>
          <Text>
            {'Popover Content'}
          </Text>
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        popoverRef.current.setVisibility(true);
      }}>
        <Text>
          {'Show Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

PopoverView Example 05

A example PopoverView for programmatically hiding the popover via the setVisibility function.

  • The setVisibility(bool) function will throw an error if it's already visible or hidden.

πŸ”— Full Example

function PopoverViewExample05(props) {
  const popoverRef = useRef();

  return (
    <PopoverView
      ref={popoverRef}
      onPopoverDidHideViaTap={() => alert('onPopoverDidHideViaTap')}
      renderPopoverContent={() => (
        <View style={{padding: 20}}>
          <TouchableOpacity onPress={() => {
            // hide the popover
            popoverRef.current.setVisibility(false);
          }}>
            <Text>
              {'Dismiss Popover'}
            </Text>
          </TouchableOpacity>
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        // toggle popover visibility
        popoverRef.current.toggleVisibility();
      }}>
        <Text>
          {'Toggle Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

PopoverView Example 06

A simple PopoverView example for the popover did show/hide events.

πŸ”— Full Example

function PopoverViewExample06(props) {
  const popoverRef = useRef();

  return(
    <PopoverView
      ref={popoverRef}
      // popover events
      onPopoverDidHide={() => alert('onPopoverDidHide')}
      onPopoverDidShow={() => alert('onPopoverDidShow')}
      renderPopoverContent={() => (
        <View style={{padding: 20}}>
          <Text style={styles.popoverText}>
            {'Popover Content'}
          </Text>
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        popoverRef.current.setVisibility();
      }}>
        <Text>
          {'Toggle Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

4.1.7 PopoverView Example 07

A example PopoverView that has a switch that toggles the popoverShouldDismiss prop.

  • The onPopoverDidAttemptToDismiss prop is set to true by default. This prop controls whether or not the popover should dismiss when there's a tap gesture outside the popover.
  • So setting the onPopoverDidAttemptToDismiss to false will prevent the popover from dismissing via a tap outside the popover.

πŸ”— Full Example

function PopoverViewExample07(props) {
  const popoverRef = useRef();
  
  const [isEnabled, setIsEnabled] = useState(false);
  // toggle `popoverShouldDismiss`
  const toggleSwitch = () => setIsEnabled(previousState => !previousState);

  return(
    <PopoverView
      ref={popoverRef}
      // set the `popoverShouldDismiss` prop
      popoverShouldDismiss={isEnabled}
      onPopoverDidAttemptToDismiss={() => alert('onPopoverDidAttemptToDismiss')}
      renderPopoverContent={() => (
        <View>
          <Text>
            {'popoverShouldDismiss'}
          </Text>
          <Switch
            onValueChange={toggleSwitch}
            value={isEnabled}
          />
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        popoverRef.current.setVisibility(true);
      }}>
        <Text>
          {'Show Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

PopoverView Example 08

A example PopoverView for the toggleVisibility function.

πŸ”— Full Example

function PopoverViewExample08(props) {
  const popoverRef = useRef();

  return(
    <PopoverView
      ref={popoverRef}
      popoverShouldDismiss={false}
      renderPopoverContent={() => (
        <View style={{padding: 20}}>
          <Text>
            {'Popover Content'}
          </Text>
        </View>
      )}
    >
      <TouchableOpacity onPress={() => {
        // toggle the popover visibility
        popoverRef.current.toggleVisibility();
      }}>
        <Text>
          {'Toggle Popover'}
        </Text>
      </TouchableOpacity>
    </PopoverView>
  );
};

PopoverViewExample01

License

MIT

Links