npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@paraboly/react-native-report-modal

v0.0.12

Published

Fully customizable Report Modal for React Native.

Downloads

13

Readme

Custimazble Report Modal via Paraboly for React Native.

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

Installation

Add the dependency:

npm i @paraboly/react-native-report-modal

Peer Dependencies

IMPORTANT! You need install them.
"react": ">= 16.x",
"react-native": ">= 0.55.x",
"react-native-vector-icons": ">= 6.x.x",
"@paraboly/react-native-modal-box": ">= x.x.x"

Basic Usage

<ReportModal />

Advanced Usage

<ReportModal
  title="Sorun Bildiriniz"
  buttonText="Gönder"
  iconConfig={IcomoonConfig}
  menuOptions={this.menuOptions}
  onPress={selectedItems => {
    this.onPress(selectedItems);
  }}
/>

Configuration - Props

| Property | Type | Default | Description | | --------------------- | :---------: | :---------------------: | ------------------------------------------------------------------------- | | isOpen | boolean | false | use this to open modal directly | | backdrop | boolean | false | use this to add a backdrop for the modal | | title | string | Report Problem | change the title of the modal | | buttonText | string | Report | change the button text of the modal | | menuOptions | array | check the usage section | set your own data array for the generation of multiple selection bar | | refName | string | reportmodal | use this to set the ref of the modal | | onPress | function | null | use this to handle the onPress of the right bottom button aka send button | | iconConfig | json | icomoon | use this to set your own icomoon sets for the icons | | modalWidth | number | width * 0.75 | change the modal's width | | modalHeight | number | 350 | change the modal's height | | dividerWidth | number | width * 0.62 | change the divider's width | | titleStyle | style | check the code | set your own style for button | | buttonStyle | style | check the code | set your own style for button | | buttonTextColor | color | check the code | change the button's text color | | buttonFontFamily | font family | default | set your own font family for the button text | | buttonRippleColor | color | check the code | change the button's ripple color | | buttonShadowColor | color | check the code | change the button's shadow color | | buttonBackgroundColor | color | check the code | change the button's background color | | optionFontFamily | font family | default | set your own font family for the each option's font family | | backgroundColor | color | #a092d6 | use this to set background color for the header part of the modal | | customIconComponent | component | null | use this to set your own custom icon component for the generated buttons | | onOpened | function | null | use this to set your own onOpened function | | onClosed | function | null | use this to set your own onClosed function |

Generated Menu Options Usage

Okey, Report Modal is able to automatically generate each report menu options to do that we must follow this format. "menuOptions" prop accepts an array and it must be like this : (You can check the example)

menuOptions = [
    {
      id: 0,
      iconSize: 40,
      isSelect: false,
      color: "#b2b6c4",
      text: "Işık Hatası",
      iconName: "feedback_junction_alt1"
    },
    {
      id: 1,
      iconSize: 40,
      isSelect: false,
      color: "#b2b6c4",
      text: "Trafik Kazası",
      iconName: "feedback_accident_alt1"
    },
    {
      id: 2,
      iconSize: 40,
      isSelect: false,
      color: "#b2b6c4",
      text: "Kavşak Arızası",
      iconName: "feedback_light_alt1"
    },
    {
      id: 3,
      iconSize: 40,
      isSelect: false,
      color: "#b2b6c4",
      text: "Yaya Butonu Arızası",
      iconName: "feedback_pedestrian_alt1"
    }
  ];

Author

FreakyCoder, [email protected] || [email protected]

License

React Native Report Modal Library is available under the MIT license. See the LICENSE file for more info.