An open API service indexing awesome lists of open source software.

https://github.com/teddarific/react-simple-user-feedback

The library that makes gathering user feedback simple
https://github.com/teddarific/react-simple-user-feedback

metrics react simple user-feedback

Last synced: about 1 month ago
JSON representation

The library that makes gathering user feedback simple

Awesome Lists containing this project

README

          

# React Simple User Feedback

##### The library that makes gathering user feedback simple

![NPM Version](https://img.shields.io/npm/v/react-simple-user-feedback.svg)
![MIT License](https://img.shields.io/npm/l/react-simple-user-feedback.svg)

## Resources

* [Github](https://github.com/Teddarific/react-simple-user-feedback)
* [Full Documentation and Examples](http://teddyni.com/react-simple-user-feedback)
* [NPM Page](https://www.npmjs.com/package/react-simple-user-feedback)

## Installation

To add to your React app,

```
npm install react-simple-user-feedback
```

or with Yarn,

```
yarn add react-simple-user-feedback
```

## Usage

See the following example live [here](http://teddyni.com/react-simple-user-feedback)

````js
import React, { Component } from 'react';
import { BinaryFeedback } from 'react-simple-user-feedback';

class Example extends Component {
constructor(props){
this.state = {
positiveCount: 0,
negativeCount: 0
}
}

onPositiveClick = () => {
this.setState(prevState => {
return { positiveCount: prevState.positiveCount + 1 }
});
}

onNegativeClick = () => {
this.setState(prevState => {
return { negativeCount: prevState.negativeCount + 1 }
});
}

render(){
return (




);
}
}

````

## API

### Binary Feedback

The Binary Feedback component is used to gather feedback in which there are two options. Default look is the "thumbs up" and "thumbs down" format.

This component takes the following props:

| Name | Type | Default | Description |
| ------------ | ------- | ------- | ----------- |
| onPositiveClick | Function | Required | Callback function called when positive button is clicked |
| onNegativeClick | Function | Required | Callback function called when negative button is clicked |
| singleSelect | Boolean | `false` | When the user selects a response, disable the other button to disable potentially multiple responses. |
| positiveContent | String, JSX | Thumbs Up SVG | Content that goes on the positive button |
| negativeContent | String, JSX | Thumbs Down SVG | Content that goes on the negative button |
| positive | boolean | false | Set the selected state to positive |
| negative | boolean | false | Set the selected state to negative |

## Contributors

Built from [react-library-starter](https://github.com/Teddarific/react-library-starter). Check it out for an easy way to turn a React component into a NPM package!

##### Authors:
* Teddy Ni

## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.