Socket
Socket
Sign inDemoInstall

@aashu-dubey/react-native-rating-bar

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @aashu-dubey/react-native-rating-bar

A React Native component for generating and displaying interactive Tap or Swipe enabled Ratings.


Version published
Weekly downloads
128
increased by17.43%
Maintainers
1
Install size
185 kB
Created
Weekly downloads
 

Changelog

Source

v0.2.0 - 29-10-2022

🐛 Bug Fixes

  • gesture handler worklet error: "Some of the callbacks in the gesture are worklets and some are not...". (fef164d).

✨ Improvements

  • Rating glow's visibility (fef164d).
  • Upgraded package to the latest react-native v0.70.4 (dab5b9c).
  • Disabled default scroll bounce on iOS for scrollable RateBarIndicator if within the screen bounds (78d711d).

📱 Example Project

  • Tweaked the coloring in the example app (8dc3881)

Readme

Source

React Native Rating Bar

A React Native component for generating and displaying interactive Tap or Swipe enabled Ratings supporting custom icons from vector icons and images.

🚀 Installation

Install the package using yarn or npm:

yarn add @aashu-dubey/react-native-rating-bar

Or

npm install --save @aashu-dubey/react-native-rating-bar

And you also need to install react-native-gesture-handler, as we're using it for Swipe/Tap gestures:

yarn add react-native-gesture-handler

then wrap your App's entry point with GestureHandlerRootView (see official doc) in order for drag to rate feature to work

export default function App() {
  return (
    <GestureHandlerRootView style={{ flex: 1 }}>
      {/* content */}
    </GestureHandlerRootView>
  );
}

For more info see gesture-handler's official Installation guide

💪🏼 Usage

Props

RatingBar
propdefaulttypedescription
rateStylesundefinedobject (RateStyles)Provide custom styles for View containing whole rating group or single rating item.
itemCount5numberTotal number of Rating items to display.
minRating0numberMinimum rating value allowed. Should be >= 0
maxRatingitemCountnumberMiximum rating value allowed. Should be >= minRating >= 0
layoutDirectiondevice's layout direction'ltr' or 'rtl'Layout Direction to show the ratings on, left-to-right (ltr) or right-to-left (rtl)
unratedColor'rgba(0, 0, 0, 0.38)'string (ColorValue)Color for items that are not rated yet, usually when index >= rating.
allowHalfRatingfalsebooleanIf true, rating will increase/decrease by fraction of 0.5 instead of default 1.
direction'horizontal''horizontal' | 'vertical' | 'vertical-reverse'Direction to show the ratings items in
'horizontal'shows the rating items horizontally. To see them in reverse horizontally set layoutDirection="rtl"
'vertical'Shows the rating items vertically, top to bottom.
'vertical-reverse'Shows the rating itmes vertically, bottom to top.
glowtruebooleanIf true, Rating items will glow when being touched or dragged.

Note:- iOS only
glowColor'#FFC107'string (ColorValue)Defines color for glow
glowRadius2numberDefines the radius of glow
ignoreGesturesfalsebooleanIgnore user gestures to make rating bar view only
Alternatively you can use RatingBarIndicator component.
initialRating0numberDefines the initial rating to be set to the rating bar.
itemPadding0numberThe amount of space by which to inset each rating item.
itemSize40numberDefines width and height of each rating item in the bar.
tapOnlyModefalsebooleanIf true, will disable drag to rate feature and only allow taps to change ratings.
updateOnDragfalsebooleanDefines whether or not the onRatingUpdate updates while dragging.
useSolution11 or 2 (number)There are two implemented solutions for the drag to rate feature, choose whichever works best for you.

You won't usually notice any difference, unless ratings are vertical, see direction props.
onRatingUpdateundefinedfunction(rating: number)Return current rating whenever rating is updated.

updateOnDrag can be used to change the behaviour how the callback reports the update.
By Default it only returns update when the touch ends, either when tapping or dragging.
ratingViewundefinedobject (RatingView)Properties for rating view that updates with current rating.
By default it shows Rating: {rating} / {itemCount}
itemBuilderundefinedfunction(index: number) => JSX.ElementFunction to return your custom components to be used as rating items, usually Image or Icon component from react-native-vector-icons.
You can either pass single component or different components based on index property from param.

index - Provides Rating bar item's index position as param.
ratingElementundefinedobject (RatingElement)Define 3 different states of rating.
empty, half and full.
ratingElement's Object
  • keytypedescription
    emptyJSX.ElementDefines Element to be used as rating bar item when item is unrated.
    halfJSX.ElementDefines Element to be used when as rating bar item when only half portion of item is rated.
    Note:- allowHalfRating needs to be set to true
    fullJSX.ElementDefines Element to be used when as rating bar item when item is completely rated.
rateStyles's Object
  • keytypedescription
    containerobject (ViewStyle)Custom styles for View contaning whole rating group.
    starContainerobject (ViewStyle) | ((index: number) => StyleProp)Custom styles for View contaning Sigle rating item.
ratingView's Object
  • keytypedescription
    showRatingbooleanWhether to show Rating indicator. By default view doesn't show.
    position'top' | 'bottom'Whether to show indicator on top or bottom of Rating bar. By default it shows on top.
    titleTextstringCustom title that shows at the start, before {currentRating} / {itemCount}.
    Default is "Rating: ".
    containerStyleobject (ViewStyle)Style for main view container.
    titleStyleobject (TextStyle)Style for text showing before ratings, at the start.
    ratingStyleobject (TextStyle)Style for text showing current rating.
    totalStyleobject (TextStyle)Style for text showing total allowed rating.
    customReactElementPass custom component replacing the default one, can be emoji, image or text etc.
    Passing this will make above props irrelevent, except showRating and position.

    Note:- You have to handle updates based on rating yourself.

Note:- To make the component work you must pass either of itemBuilder or ratingElement with valid values.

RatingBarIndicator

This is view only alternative to RatingBar with no Tap or Swipe capability and From above props RatingBarIndicator contains layoutDirection, unratedColor, direction, itemCount, itemPadding, itemSize, rating and itemBuilder with same specific uses.

📲 Examples

Using RatingBar Component

There are few different ways to use Rating Bar component

Using ratingElement prop:
image
<RatingBar
  initialRating={3.5}
  direction="horizontal"
  allowHalfRating
  itemCount={5}
  itemPadding={4}
  ratingElement={{
    full: (
      <Image
        style={{ width: 30, height: 30, tintColor: '#54D3C2' }}
        resizeMode="contain"
        source={require('./assets/heart.png')}
      />
    ),
    half: (
      <Image
        style={{ width: 30, height: 30, tintColor: '#54D3C2' }}
        resizeMode="contain"
        source={require('./assets/heart_half.png')}
      />
    ),
    empty: (
      <Image
        style={{ width: 30, height: 30, tintColor: '#54D3C2' }}
        resizeMode="contain"
        source={require('./assets/heart_border.png')}
      />
    ),
  }}
  onRatingUpdate={value => console.log(value)}
/>

Assets are available here.
Or you can use Icon component from react-native-vector-icons:

image
<RatingBar
  initialRating={3.5}
  direction="horizontal"
  allowHalfRating
  itemCount={5}
  itemPadding={4}
  ratingElement={{
    full: <Icon name="star-rate" color="#54D3C2" size={40} />,
    half: <Icon name="star-half" color="#54D3C2" size={40} />,
    empty: <Icon name="star-border" color="#54D3C2" size={40} />,
  }}
  onRatingUpdate={value => console.log(value)}
/>
Using itemBuilder prop:
image
<RatingBar
  initialRating={2.5}
  minRating={1}
  direction="horizontal"
  allowHalfRating
  unratedColor="rgba(255, 193, 7, 0.2)"
  itemCount={5}
  itemPadding={4}
  itemSize={40}
  itemBuilder={() => <Icon name="star" color="#FFC107" size={40} />}
  onRatingUpdate={value => console.log(value)}
/>
Based on itemBuilder prop's index param:

Passing different component in itemBuilder based on index param value:

image
<RatingBar
  initialRating={3}
  itemCount={5}
  itemPadding={4}
  itemBuilder={index => {
    switch (index) {
      case 0:
        return (
          <Icon name="sentiment-very-dissatisfied" color="#F44336" size={40} />
        );
      case 1:
        return <Icon name="sentiment-dissatisfied" color="#FF5252" size={40} />;
      case 2:
        return <Icon name="sentiment-neutral" color="#FFC107" size={40} />;
      case 3:
        return <Icon name="sentiment-satisfied" color="#8BC34A" size={40} />;
      case 4:
        return (
          <Icon name="sentiment-very-satisfied" color="#4CAF50" size={40} />
        );
      default:
        return <View />;
    }
  }}
  onRatingUpdate={value => console.log(value)}
/>
Using RatingBarIndicator Component
image
<RatingBarIndicator
  rating={3.37}
  itemBuilder={() => <Icon name="star" color="#FFC107" />}
  itemCount={5}
  itemSize={50}
  unratedColor="rgba(255, 193, 7, 0.2)"
  direction="horizontal" // Or "vertical", "vertical-reverse"
/>
Vertical Mode
imageimage
verticalvertical-reverse

🚧 Issue

You may notice, especially in Android drag to rate is a little slower, this is a dev only problem, if you run your build on release mode or even debug with JS dev mode disabled it will run way way faster, something related to this. That being said, I'm trying to fix this.

🌻 Motivation

This project was initially started as I needed to implement a rating component for Hotel Booking UI template in my other open source project for learning React-Native-UI-Templates, and failing to find a proper solution that works same as the original Project in Flutter, I decided to replicate the Rating library used in the Flutter project.
So this package is initially inspired from Flutter package flutter_rating_bar (including the demo 😅) with some extra added functionalities.

🙋‍♀️ Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

📜 License

MIT

Keywords

FAQs

Last updated on 28 Oct 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc