ya332/react-feedback-popup

View on GitHub
README.md

Summary

Maintainability
Test Coverage
[![MIT](https://img.shields.io/npm/l/react-feedback-popup.svg?style=flat-square)](https://github.com/ya332/react-feedback-popup/blob/master/LICENSE.md)
[![NPM Version](https://img.shields.io/npm/v/react-feedback-popup?style=flat-square)](https://www.npmjs.com/package/react-feedback-popup)
[![npm downloads](https://img.shields.io/npm/dm/react-feedback-popup.svg?style=flat-square)](https://www.npmjs.com/package/react-feedback-popup)
[![build status](https://travis-ci.org/ya332/react-feedback-popup.svg?branch=master)](https://travis-ci.org/ya332/react-feedback-popup)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
<a href="https://codeclimate.com/github/ya332/react-feedback-popup/maintainability"><img src="https://api.codeclimate.com/v1/badges/7e7b23995232a5224e2e/maintainability" /></a>
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg)](https://github.com/ya332/react-feedback-popup/blob/master/CONTRIBUTING.md)

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) and [this React Feedback Component](https://www.npmjs.com/package/react-feedback)

# React-Feedback-Popup

React-Feedback-Popup is a blazingly fast and highly customizable component to get user feedback.

Collapsed Feedback Popup:

<img src="./assets/collapsed_tag.png" alt="Demo tag">

Expanded Feedback Popup:

<img src="./assets/expanded_tag.png" alt="Demo tag">

# Live Demo

[Live Demo at StackBlitz](https://stackblitz.com/edit/react-feedback-popup)

### Features

- Gets user name, email, rating.
- User can determine the position (left or right)
- User can determine the header, body, and button text as well as the number of star ratings.
- Form validation (name, email, feedback and rating are required)

### Why

I needed a "feedback component" for my [projects](http://ya332.github.io#projects). Since I was unable to find one which met my requirements (and the fact that I generally enjoy re-inventing the wheel) this is what I came up with.

### Demo

![](./assets/demo.gif)


### Installation

The preferred way of using the component is via NPM

```
npm install --save react-feedback-popup
```

### Usage

Here's a sample implementation that creates a custom popup on a dummy Create-React-App page.

```javascript
import React from 'react';
import logo from './logo.svg';
import FeedBack from 'react-feedback-popup';
import './App.css';
var axios = require('axios');

function App() {
    return (
        <div className="App">
            <header className="App-header">
                <img src={logo} className="App-logo" alt="logo" />
                <p>
                    Edit <code>src/App.js</code> and save to reload.
        </p>
                <a
                    className="App-link"
                    href="https://reactjs.org"
                    target="_blank"
                    rel="noopener noreferrer"
                >
                    Learn React
        </a>
            </header>
            <FeedBack
                style={{zIndex:'2', marginLeft:'20px', position:'fixed'}}
                position="left"
                numberOfStars={5}
                headerText="Hello"
                bodyText="Custom Body test"
                buttonText="This is also custom"
                handleClose={() => console.log("handleclose")}
                handleSubmit={(data) => 
                    fetch('https://teamgogoemail.herokuapp.com/receiver_email@gmail.com', {
                        headers: {
                            Accept: 'application/json',
                            'Content-Type': 'application/json'
                        },
                        method: 'POST', // or 'PUT'
                        body: JSON.stringify(data),
                    }).then((response) => { 
                        if (!response.ok) {
                            return Promise.reject('Our servers are having issues! We couldn\'t send your feedback!');
                        }
                        response.json()
                    }).then(() => {
                        alert('Success!');
                    }).catch((error) => {
                        alert('Our servers are having issues! We couldn\'t send your feedback!', error);
                    })
                }
                handleButtonClick={() => console.log("handleButtonClick")}
            />
        </div>
    );
}

export default App;

```

As you can see, the fetch address is `https://teamgogoemail.herokuapp.com/receiver_email@gmail.com`. Here, you can provide use a service called https://teamgogoemail.herokuapp.com to forward the form submission to your email. There are also other 3rd party tools like formspree.io, email.js, mailchimp, Amazon Lambda functions etc to send emails once you get the user data via this React Popup Form.


<a name="Options"></a>

### Options

| Option                                |  Type    | Default                 | Description                                                         |
| ------------------------------------- | -------- | ----------------------- | --------------------------------------------------------------      |
| [`position`](#tagsOption)             | `String` | `right` | Position of the feedback pop. Possible options are `right` and `left`                                             |
| [`numberOfStars`](#suggestionsOption) | `Integer` | `5`                    | Number of rating stars to be displayed.                     | 
| [`headerText`](#delimiters)             | `String` | `"Have Feedback? 📝?"`                    | Text to be displayed on header when pop is expanded.          |
| [`bodyText`](#delimiters)               | `String` | `"Need help? Have feedback? I'm a human so please be nice and I'll fix it!"`                  | Text to be displayed on on the body when pop is expanded                        |
| [`buttonText`](#delimiters)             | `String` | `"Feedback? ☝️"`                  | Text to be displayed on header when pop is no expanded                     |
| [`handleClose`](#delimiters)            | `Function` | `This function collapses the popup`                  | Called when `close button` is clicked.                       |
| [`handleSubmit`](#delimiters)           | `Function` | `alert('Success!') or alert('Error')`                  | Called when `submit button` is clicked.                        |
| [`handleButtonClick`](#delimiters)      | `Function` | `()`                  | Called when user clicks on Feedback button to expand the popup.                       |

Sample Usage:

```js
<FeedBack
    style={{zIndex:'2', marginLeft:'20px', position:'fixed'}}
    position="left"
    numberOfStars={5}
    headerText="Hello"
    bodyText="Custom Body test"
    buttonText="This is also custom"
    handleClose={() => console.log("handleclose")}
    handleSubmit={(data) => 
        fetch('https://teamgogoemail.herokuapp.com/receiver_email@gmail.com', {
            headers: {
                Accept: 'application/json',
                'Content-Type': 'application/json'
            },
            method: 'POST', // or 'PUT'
            body: JSON.stringify(data),
        }).then((response) => { 
            if (!response.ok) {
                return Promise.reject('Our servers are having issues! We couldn\'t send your feedback!');
            }
            response.json()
        }).then(() => {
            alert('Success!');
        }).catch((error) => {
            alert('Our servers are having issues! We couldn\'t send your feedback!', error);
        })
    }
    handleButtonClick={() => console.log("handleButtonClick")}

/>
```
### Styling
style is a props to the Form component. You can overwrite the default values via passing CSS attributes.
For example,
```js
style={{zIndex:'2', marginLeft:'20px', position:'fixed'}}
```

### Dev

The component is written in ES6 and uses [Webpack](http://webpack.github.io/) as its build tool.

#### Set up instructions

```
git clone git@github.com:ya332/react-feedback-popup.git
cd react-feedback-popup
npm install
npm run start
```
open [http://localhost:3000](http://localhost:3000)


### Contributing

Got ideas on how to make this better? Open an issue [here!](https://github.com/ya332/react-feedback-popup/issues/new)
Issues, Pull Requests and all Comments are welcome!

[default-suggestions-filter-logic]: https://github.com/ya332/react-feedback-popup/blob/v4.0.1/lib/MadeBy.js#L83
[includes-polyfill]: https://github.com/mathiasbynens/String.prototype.includes