1.1.6 • Published 2 years ago

react-leaf-polls v1.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

npm.io

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

JavaScript Style Guide ts License: MIT

npm.io npm.io

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

PropType/OptionsRequiredDefaultDescription
type"multiple" or "binary"binaryDetermines rendered poll type. Binary is recommended for yes-no questions where multiple is "one from many".
questionStringQuestion visible on top of the poll. Invisible if not set.
resultsArray 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.
themeObject More in the table belowMore in the table belowTheme allows you to customize the look and feel of given poll. Depending on poll type there are different options.
isVotedBooleanfalseWhen 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.
*isVotedIdNumberWhen 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.
onVoteFunctionCallback 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.

OptionDefaultPoll typeDescription
mainColor#00B87BmultipleMarks the picked answer after the vote.
textColor#19181fbothColor of question's and answer's text.
leftColorbinaryColor of left cell's text in the binary poll.
rightColorbinaryColor of right cell's text in the binary poll.
backgroundColor#ffffffbothBackground of answer's pane.
alignmentcenterbothChanges container's align-items property. "start", "center" or "end" is only allowed.

License

MIT © salalo

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.1.2

2 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago