New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-pacman-progress

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-pacman-progress

Simple react.js component for a fun prgress indicator

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

react-pacman-progress

Simple React component for a fun progress indicator.

Demo

Demo

Install

npm install react-pacman-progress --save

or

bower install react-pacman-progress --save

Example

Controlled usage:

var PacmanProgress = require('react-pacman-progress');

var App = React.createClass({
  getInitialState() {
    return {currentIndex: 0};
  },
  render() {
    var slides = [
      {color: '#c0ffee'},
      {color: '#deface'},
      {color: '#0ff1ce'}
    ]
    return (
      <div className="container" onCLick={this.handleClick}>
        {
          slides.map(function(slide, i) {
            return <Slide index={i} currentIndex={this.state.currentIndex} color={slide.color} />;
          }.bind(this))
        }
        <PacmanProgress items={slides.length} currentIndex={this.state.currentIndex} />
      </div>
    );
  },

  handleClick: function() {
    this.setState({currentIndex: this.state.currentIndex + 1});
  }
});

API

Props

classNamespace

Namespace for CSS classes, optional, default is `` i.e CSS classes are '' + 'pacman'.

items

Number of dots for pacman to eat. required

currentIndex

Position of the pacman. Start at 0. required

onClick

Function to call when clicking on a dot. optional, it takes 3 arguments:

  • index of the dot clicked
  • whether it was pacman which was clicked or not
  • the event
handleClickPacman(index, isPacman, e) {
  e.preventDefault();
  this.setState({currentIndex: index});
}

Styles

Look at react-pacman-progress.css for an idea on how to style this component.

MIT Licensed

Keywords

react

FAQs

Package last updated on 20 Jul 2017

Did you know?

Socket

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