JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q33251F
  • License Apache-2.0

Create customise progress bar

Package Exports

  • react-progressive-bar
  • react-progressive-bar/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-progressive-bar) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-progressive-bar

A simple and customizable progress bar component for React. This package provides both a <ProgressBar /> component and a custom hook useProgressBar to manage progress state.

react-progressive-bar

Installation

To install the package, use npm or yarn: npm install react-progressive-bar or yarn add react-progressive-bar

Components

ProgressBar

A customizable progress bar component that can display both determinate and indeterminate states.

Props

  • progress (number): The progress percentage (0-100) for the progress bar. Defaults to 0.
  • height (number): Height of the progress bar in pixels. Defaults to 20.
  • color (string): Color of the progress bar. Defaults to 'blue'.
  • indeterminate (boolean): If true, the progress bar shows an indeterminate loading animation. Defaults to false.
  • animationDuration (string): Duration of the progress bar animation. Defaults to '0.5s'.
  • animationTimingFunction (boolean): If true, displays the progress percentage inside the progress bar. Defaults to false.
  • showPercentage (string): Duration of the progress bar animation. Defaults to '0.5s'.
  • percentageColor (string): Color of the percentage text inside the progress bar. Defaults to black.

useProgressBar

A custom hook to manage the progress state of the progress bar.

Props

  • initialValue (number): The initial value of the progress. Defaults to 0.
  • step (number): The amount by which the progress increases in each interval. Defaults to 10.
  • interval (number): The time interval (in milliseconds) at which the progress is updated. Defaults to 1000.

returns

  • progress (number): The current progress value.
  • setProgress (Function): A function to manually set the progress value.

Example Usage

import React from 'react';
import { ProgressBar, useProgressBar } from 'react-progressive-bar';

const MyComponent = () => {
  const { progress, setProgress } = useProgressBar(0, 10, 1000);

  return (
    <div className="flex flex-col gap-4 p-4">
      <h1>Testing Progress Bar</h1>
      <ProgressBar
        progress={progress}
        color="#4CAF50"
        height={24}
        showPercentage={true}
        indeterminate={false}
        percentageColor="black"
      />
      <button onClick={() => setProgress(0)}>Reset Progress</button>
    </div>
  );
};

export default MyComponent;

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Contributing

Feel free to open issues and pull requests to contribute to this project. Please ensure that your code follows the existing style and includes relevant tests.

Changelog

1.0.0

  • Initial release with ProgressBar component and useProgressBar hook.

1.1.0

  • Bug fixes in Initial release with ProgressBar component and useProgressBar hook.

1.2.0

  • Percentage and custom features added for ProgressBar and updated useProgressBar default values.