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

raty-js

v4.3.0

Published

Raty - A Star Rating Plugin

Downloads

24,411

Readme

Raty - A Star Rating Plugin.

Tests NPM Version Maintainability Sponsor

Rating for Rails?

It's Rating: https://github.com/wbotelhos/rating :star:

Help

  • Check the Tutorial to learn about all available features.
  • If you're migrating from v3 to v4 check the Upgrade document.

Usage with Image

  • raty.js
  • star-off.png
  • star-on.png
<script src="raty.js"></script>

<div data-raty></div>
const raty = new Raty(document.querySelector('[data-raty]'));

raty.init();

Usage with Font

  • raty.css
  • raty.[eot|svg|ttf|woff]
  • raty.js
<link rel="stylesheet" href="raty.css">

<script src="raty.js"></script>

<div data-raty></div>
new Raty(document.querySelector('[data-raty]'), { starType: 'i' });

Options

| Property | Default |Description | |---------------|------------------------------------------------|-----------------------------------------------------------------| |cancelButton |false |Creates a cancel button to cancel the rating. | |cancelClass |'raty-cancel' |Name of cancel's class. | |cancelHint |'Cancel this rating!' |The cancel's button hint. | |cancelOff |'cancel-off.png' |Icon used on active cancel. | |cancelOn |'cancel-on.png' |Icon used inactive cancel. | |cancelPlace |'left' |Cancel's button position. | |click |undefined |Callback executed on rating click. | |half |false |Enables half star selection. | |halfShow |true |Enables half star display. | |hints |['bad', 'poor', 'regular', 'good', 'gorgeous']|Hints used on each star. | |iconRange |undefined |Object list with position and icon on and off to do a mixed icons| |iconRangeSame|false |All icons prior to selection will be the same as the selection. | |mouseout |undefined |Callback executed on mouseout. | |mouseover |undefined |Callback executed on mouseover. | |noRatedMsg |'Not rated yet!' |Hint for non rated elements when it's readOnly. | |number |5 |The number of stars that will be presented. | |numberMax |20 |Max number of stars star the option number will create. | |path |undefined |A global path where the icon will be found. | |precision |false |Enables the selection of a precise score. | |readOnly |false |Turns the rating read-only. | |round |{ down: .25, full: .6, up: .76 } |Includes value attributes to do the score rounding math. | |score |undefined |Initial rating. | |scoreName |'score' |Name of the hidden field that holds the score value. | |single |false |Enables single star selection. | |space |true |Puts space between the icons. | |starHalf |'star-half.png' |The name of the half star image. | |starOff |'star-off.png' |Name of the star image off. | |starOn |'star-on.png' |Name of the star image on. | |target |undefined |Element selector where the score will be displayed. | |targetFormat |'{score}' |Template to interpolate the score in. | |targetKeep |false |If the last rating value will be kept on mouseout. | |targetScore |undefined |Score field target avoiding hidden field creation | |targetText |'' |Default text in a target. | |targetType |'hint' |Choose if target will receive a hint or the score number | |starType |'img' |Element used to represent a star. |

Functions

To call some function, first, save the Raty instance on a variable and then call the functions:

var raty = new Raty(document.querySelector('[data-raty]'));

| Function | Description | |------------------------|-----------------------------------------------------------| |raty.score() |Get the current score. | |raty.score(number) |Set a score. | |raty.click(number) |Click on a star. | |raty.readOnly(boolean)|Change the read-only state. | |raty.cancel(boolean) |Cancel the rating. The last param force the click callback.| |raty.move(number) |Move the mouse to the given score point position. |

Build

gulp 'amd'
gulp 'umd'
gulp 'commonjs'
gulp 'systemjs'
gulp 'es6'
gulp 'es5'
gulp 'es5-test'