Skip to content

Bump lodash from 4.17.15 to 4.17.19 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/node_modules
/.pnp
.pnp.js
/demo

# testing
/coverage
Expand Down
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
src
webpack.config.js
.babelrc
.eslintrc.js
.eslintrc.js
demo
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@

# Feeder: feeder-react-feedback

Embeddable Feedback React component hooked up to an [admin dashboard](http://feeder-admin-client.now.sh/). The fastest way to start collecting feedback across your React projects! ⚡
![Feeder Banner](https://i.imgur.com/e56rlxF.png)

Embeddable Feedback React component hooked up to an [admin dashboard](http://feeder.sh/). The fastest way to start collecting feedback across your React projects! ⚡

## Quick Links

### External

- [Component Demo/Playground](http://feeder-xi.now.sh/)
- [Admin Dashboard](http://feeder-admin-client.now.sh/)
- [Admin Dashboard](http://feeder.sh/)

### Documentation

Expand Down Expand Up @@ -54,7 +56,7 @@ class App extends Component {
}
```

After importing the component, create an Account/Project on the [admin dashboard](http://feeder-admin-client.now.sh/) and pass in your project's `projectId` as a prop to the `Feedback` component.
After importing the component, create an Account/Project on the [admin dashboard](http://feeder.sh/) and pass in your project's `projectId` as a prop to the `Feedback` component.

## Props

Expand All @@ -78,7 +80,7 @@ After importing the component, create an Account/Project on the [admin dashboard

### What is the Admin Dashboard?

The [admin dashboard](http://feeder-admin-client.now.sh/) is where all the feedback for each project is collected. Each project has a unique id that is passed as a prop to the `<Feedback/>` component.
The [admin dashboard](http://feeder.sh/) is where all the feedback for each project is collected. Each project has a unique id that is passed as a prop to the `<Feedback/>` component.

You can add collaborators to each project as well, which will give them the ability to view all the feedback for a given project. The admin dashboard also allows users to export all project-specific data to CSV.

Expand Down
4 changes: 2 additions & 2 deletions dist/Feedback.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/feeder-react-feedback.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"name": "feeder-react-feedback",
"version": "0.0.3",
"version": "0.0.6",
"description": "Embeddable Feedback React component hooked up to an admin dashboard. The fastest way to start collecting feedback across your React projects! ⚡",
"main": "dist/Feedback.js",
"license": "MIT",
"author": "rishipr",
"author": "Rishi Prasad <rishipr@umich.edu>",
"keywords": [
"react-feedback",
"feedback"
"feedback",
"feeder",
"feedback-form"
],
"homepage": "https://feeder-admin-client.now.sh",
"homepage": "https://feeder.sh",
"repository": {
"type": "git",
"url": "https://github.com/rishipr/feeder-react-feedback"
Expand Down
17 changes: 17 additions & 0 deletions src/Modal-Styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,23 @@ textarea {
}
}

.frf-water {
text-align: center;
margin-top: 24px;
color: $lightGray;
font-size: 12px;
font-weight: 500;

a {
color: $black;
text-decoration: none;

&:hover {
color: $primaryBlue;
}
}
}

@media (max-width: 300px) {
.frf-modal-feedback-types {
flex-wrap: wrap;
Expand Down
13 changes: 12 additions & 1 deletion src/Modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ class Modal extends Component {
feedbackType,
feedbackMsg,
subProject,
feedbackSrc:
typeof window !== "undefined" ? window.location.pathname : null,
};

axios
Expand Down Expand Up @@ -258,14 +260,23 @@ class Modal extends Component {
borderTop: `2.133px solid ${props.textColor}`,
}}
className="frf-modal-button-loader"
frf-
></div>
) : submitted ? (
<span>{props.postSubmitButtonMsg}</span>
) : (
<span>{props.submitButtonMsg}</span>
)}
</button>
<div className="frf-water">
Feedback Powered by{" "}
<a
href="http://feeder.sh/"
rel="noopener noreferrer"
target="_blank"
>
Feeder.sh
</a>
</div>
</div>
</form>
</StyleRoot>
Expand Down