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

@youssefprodev/rn-currency-picker

v0.1.3

Published

rn-currency-picker is a versatile component for React Native designed to simplify currency selection in your mobile applications. It is engineered to be easily integrated into your React Native apps, providing a robust and flexible solution for currency s

Downloads

324

Readme

@youssefprodev/rn-currency-picker

A high-performance and customizable React Native Currency Picker built with TypeScript, featuring an enhanced UI and advanced search functionality powered by Fuse.js. This picker supports over 180+ currencies and leverages @shopify/flash-list to optimize performance, especially for large data sets.

Key Features

  • Over 180+ Currencies: Supports a comprehensive list of currencies, ensuring global coverage.
  • Optimized for Performance: Utilizes @shopify/flash-list, a high-performance list component that efficiently renders large lists, reducing lag and improving scroll performance.
  • Built with TypeScript: Ensures robust type safety and a smoother development experience, reducing bugs and improving code quality.
  • Enhanced UI: The picker comes with a clean and intuitive design, offering better user interaction and customization options.
  • Fast and Fuzzy Search: Integrated with Fuse.js for fast and flexible search capabilities, allowing users to quickly find the currency they need, even with partial or misspelled inputs.

Installation

You can install the package using npm or yarn:

npm install @youssefprodev/rn-currency-picker

or

yarn add @youssefprodev/rn-currency-picker

Demo

Check out the live demo of the picker in action:

Usage

Here’s a basic example of how to use the CurrencyPickerComponent:

import React from 'react';
import { Button } from 'react-native';
import { CurrencyPickerComponent } from '@youssefprodev/rn-currency-picker';

export default function App() {
  const currencyPickerRef = React.useRef(null);

  return (
    <>
      <Button
        title="Open picker"
        onPress={() => currencyPickerRef.current?.open()}
      />
      <Button
        title="Close picker"
        onPress={() => currencyPickerRef.current?.close()}
      />
      <CurrencyPickerComponent
        currencyPickerRef={(ref) => (currencyPickerRef.current = ref)}
        enable={true}
        darkMode={false}
        currencyCode="NGN"
        showFlag={true}
        showCurrencyName={true}
        showCurrencyCode={true}
        onSelectCurrency={(data) => console.log('Selected Currency:', data)}
        onOpen={() => console.log('Picker opened')}
        onClose={() => console.log('Picker closed')}
        showNativeSymbol={true}
        showSymbol={false}
        containerStyle={{
          container: {},
          flagWidth: 25,
          currencyCodeStyle: {},
          currencyNameStyle: {},
          symbolStyle: {},
          symbolNativeStyle: {},
        }}
        modalStyle={{
          container: {},
          searchStyle: {},
          tileStyle: {},
          itemStyle: {
            itemContainer: {},
            flagWidth: 25,
            currencyCodeStyle: {},
            currencyNameStyle: {},
            symbolStyle: {},
            symbolNativeStyle: {},
          },
        }}
        title="Select a Currency"
        searchPlaceholder="Search for a currency"
        showCloseButton={true}
        showModalTitle={true}
      />
    </>
  );
}

Performance Optimizations

  • @shopify/flash-list: The integration of FlashList ensures smooth and efficient rendering, especially when dealing with large sets of over 180 currencies. This makes the picker responsive and minimizes potential lag during scrolling.
  • Fuse.js for Search: The picker uses Fuse.js, a lightweight fuzzy-search library, to provide users with fast and flexible search options. Even with incomplete or inaccurate input, Fuse.js can quickly find relevant currencies, improving the overall user experience.

Props

| Prop | Type | Default | Description | | ------------------- | ----------- | ------------ | ----------------------------------------------------------------------------------------- | | enable | boolean | true | Enables or disables the currency picker. | | currencyPickerRef | function | null | Reference to control open() and close() methods of the picker. | | darkMode | boolean | false | Toggles dark mode for the picker modal. | | currencyCode | string | "USD" | Sets the initial currency code displayed. | | onSelectCurrency | function | null | Callback function called when a currency is selected. Returns the selected currency data. | | onOpen | function | null | Callback function triggered when the picker is opened. | | onClose | function | null | Callback function triggered when the picker is closed. | | showNativeSymbol | boolean | true | Displays the native symbol of the currency. | | showSymbol | boolean | false | Displays the currency symbol. | | showFlag | boolean | true | Displays the flag icon of the currency. | | showCurrencyName | boolean | true | Displays the name of the currency. | | showCurrencyCode | boolean | true | Displays the code of the currency. | | title | string | "Currency" | The title displayed in the currency selection modal. | | showCloseButton | boolean | true | Shows a close button in the modal. | | showModalTitle | boolean | true | Displays the title in the currency selection modal. | | containerStyle | object | null | Custom styling for the picker container. | | modalStyle | object | null | Custom styling for the currency selection modal. | | renderChildren | ReactNode | null | Allows rendering custom child components inside the picker. |

containerStyle

| Prop | Type | Default | Description | | ------------------- | -------- | ------- | ---------------------------------------- | | container | object | null | Custom style for the picker container. | | flagWidth | number | 25 | Width of the currency flag icon. | | currencyCodeStyle | object | null | Custom style for the currency code text. | | currencyNameStyle | object | null | Custom style for the currency name text. | | symbolStyle | object | null | Custom style for the currency symbol. | | symbolNativeStyle | object | null | Custom style for the native symbol. |

modalStyle

| Prop | Type | Default | Description | | ------------- | -------- | ------- | ----------------------------------------------- | | container | object | null | Custom style for the modal container. | | searchStyle | object | null | Custom style for the search input in the modal. | | tileStyle | object | null | Custom style for the modal title. | | itemStyle | object | null | Custom style for currency item components. |

itemStyle

| Prop | Type | Default | Description | | ------------------- | -------- | ------- | ----------------------------------------- | | itemContainer | object | null | Custom style for currency item container. | | flagWidth | number | 25 | Width of the currency flag icon. | | currencyCodeStyle | object | null | Custom style for the currency code text. | | currencyNameStyle | object | null | Custom style for the currency name text. | | symbolStyle | object | null | Custom style for the currency symbol. | | symbolNativeStyle | object | null | Custom style for the native symbol. |

Currency Data Type

The onSelectCurrency function returns the following data:

export type CurrencyData = {
  symbol: string;
  name: string;
  symbol_native: string;
  decimal_digits: number;
  rounding: number;
  code: string;
  name_plural: string;
  flag_emoji: string;
};

Contributing

If you’d like to contribute, please see the contributing guide.

Credits

This library was inspired by rn-currency-picker.

License

MIT License. See the LICENSE file for details.


Creato con create-react-native-library.


Questa versione mette