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

@techhoruser/react-value-rating-component

v0.1.2

Published

<h1 align="center"> <⚡⚛️> Vite React Library Template </h1>

Downloads

14

Readme

ValueRating Component

The ValueRating component is a React component that displays a rating indicator based on a numeric value. It visually represents the value as either 'bad', 'good' or 'neutral' depending on the provided value and optional thresholds.

Props

The component accepts the following props:

  • value (number, required): The numeric value to be rated.
  • endBad (number, optional, default: 0): The threshold value below which the rating is considered 'bad.'
  • startGood (number, optional, default: 0): The threshold value above which the rating is considered 'good.'

Usage

To use the ValueRating component, import it into your React application and include it in your JSX code. You can provide the value, endBad, and startGood props as needed to customize the rating display.

import React from "react";
import { ValueRating } from "./ValueRating";

function App() {
  return (
    <div className="App">
      <ValueRating value={42} endBad={10} startGood={80} />
    </div>
  );
}

export default App;

This example will display the ValueRating component with a value of 42, where values below 10 are considered 'bad,' values above 80 are considered 'good,' and values in between are 'neutral.'

Demo

Style

The ValueRating component allows for customization of its appearance through the use of CSS variables. You can define and override the following CSS variables to customize the visual aspects of the rating indicator:

  • --good-color (default: #1a92b6): Defines the color for the 'good' rating status.
  • --bad-color (default: #c04324): Defines the color for the 'bad' rating status.
  • --neutral-color (default: #5c4f4d): Defines the color for the 'neutral' rating status.
  • --icon-height (default: 4rem): Specifies the height of the rating icon.
  • --icon-deep (default: 0.6rem): Determines the depth or thickness of the rating icon.
  • --icon-width (default: calc(var(--icon-height) / 0.75)): Sets the width of the rating icon, maintaining a 3:4 aspect ratio.

You can customize these variables in your CSS stylesheet to achieve the desired look for the ValueRating component. For example, to change the color of the 'good' rating status to green, you can define the --good-color variable like this:

:root {
  --good-color: #00ff00; /* Green color for 'good' rating */
}

Feel free to customize the component's appearance by adding CSS classes or styles as needed.

🔀 Related information

This application was generated using the <⚡⚛️> TypeScript React Library Template. Feel free to check it out and star the repo! 🌟😊🙌

More Info