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

react-leaf-polls-copy

v1.1.17

Published

Customizable set of poll components for react.

Downloads

35

Readme

react-leaf-polls is a set of multiple reusable and customizable poll types.

JavaScript Style Guide ts License: MIT

Install

NPM

npm i --save react-leaf-polls

Yarn

yarn add react-leaf-polls

Usage

import { LeafPoll, Result } from 'react-leaf-polls'
import 'react-leaf-polls/dist/index.css'

// Persistent data array (typically fetched from the server)
const resData = [
  { id: 0, text: 'Answer 1', votes: 0 },
  { id: 1, text: 'Answer 2', votes: 0 },
  { id: 2, text: 'Answer 3', votes: 0 }
]

// Object keys may vary on the poll type (see the 'Theme options' table below)
const customTheme = {
  textColor: 'black',
  mainColor: '#00B87B',
  backgroundColor: 'rgb(255,255,255)',
  alignment: 'center'
}

function vote(item: Result, results: Result[]) {
  // Here you probably want to manage
  // and return the modified data to the server.
}

const App = () => {
  return (
    <LeafPoll
      type='multiple'
      question='What you wanna ask?'
      results={resData}
      theme={customTheme}
      onVote={vote}
      isVoted={false}
    />
  )
}

Component Props

| Prop | Type/Options | Required | Default | Description | | -------- | :--------------------------------------------: | :------: | :---------------------: | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | type | "multiple" or "binary" | ✔ | binary | Determines rendered poll type. Binary is recommended for yes-no questions where multiple is "one from many". | | question | String | ✖ | | Question visible on top of the poll. Invisible if not set. | | results | Array of objects with keys "text" and "votes". | ✔ | | Results data is visible to the user after the vote. Should be stored permanently! Usually red and wrote to the persistent storage source. Array is modified every time user votes by incrementing the "votes" value and adding "percentage" element. | | theme | Object More in the table below | ✖ | More in the table below | Theme allows you to customize the look and feel of given poll. Depending on poll type there are different options. | | isVoted | Boolean | ✖ | false | When set to true, poll will show the results by default on mount and user won't be able to vote. Might be helpful when we want to keep showing results on every rerender after user has voted. | | *isVotedId | Number | ✖ | | When an id is set, poll will indicate with the main theme color the result which the user has already voted on. To be used in conjunction with isVoted. *Only enabled for multiple. | | onVote | Function | ✖ | | Callback function running when user picks the answer. Returns the clicked item's and whole results modified object as arguments. |

Theme options

Theme is an object where no value is mandatory. Colors can get any type of color notations.

| Option | Default | Poll type | Description | | --------------- | :-----: | :-------: | ------------------------------------------------------------------------------------------ | | mainColor | #00B87B | multiple | Marks the picked answer after the vote. | | textColor | #19181f | both | Color of question's and answer's text. | | leftColor | | binary | Color of left cell's text in the binary poll. | | rightColor | | binary | Color of right cell's text in the binary poll. | | backgroundColor | #ffffff | both | Background of answer's pane. | | alignment | center | both | Changes container's align-items property. "start", "center" or "end" is only allowed. |

License

MIT © WojciechSala