1.1.2 • Published 3 years ago

@dragosbln/react-native-flatlist-alphabet v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

PRs Welcome

A simple React Native component that takes an array of data and renders a SectionList with alphabetically sorted data.

Alt text

This package_uses the array of objects data-structure.

const data = [{...}, {...}, {...}, ...]

For react-native-flatlist-alphabet, the data does not need to be pre-formatted and sorted before use. The component handles all this logic internally.

Installation

Using npm:

npm install react-native-flatlist-alphabet

or with yarn:

yard add react-native-flatlist-alphabet

Usage

Import the module

import AlphabetList from "react-native-flatlist-alphabet";

Use the component

<AlphabetList
  data={YourData}
  renderItem={YourRenderItemFunction}
  renderSectionHeader={YourRenderSectionHeaderFunction}
  getItemHeight={YourItemHeight}
  sectionHeaderHeight={YourHeaderHeight}
  indexLetterColor={ColorOfTheIndexSidebarLetters}
/>

YourData should be provided as an Array of objects, with each object item having both a valueand a key.

const YourData = [
  {
     value: string, // determines which alphabet section to place the object in
     key: string // used as the key in the keyExtractor for SectionList
     ... // your other properties
  },
  ...
]

Props

OptionDescriptionDefault
sectionDataThe array of objects data with value and key.-
renderItemRender the alphabet letter header.JSX
renderSectionHeaderRender the alphabet letter header.JSX
indexLetterColorThe alphabet letter font-size.#0B3277
indexLetterSizeThe alphabet letter font-size.16
letterIndexWidthThe alphabet letter index width size.#0B3277
sectionHeaderHeightThe section header defines each alphabet title header size.40
getItemHeightReturns the each item height position size.30
letterItemStyleThe container letter item style.-
containerStyleThe alphabet wrapper container style.-
alphabetContainerThe flatlist alphabet container style.-
styleThe sectionlist container style.-

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update the tests as appropriate.

License

MIT