Socket
Book a DemoInstallSign in
Socket

@nhsuk/user-feedback-form

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nhsuk/user-feedback-form

A form for collecting user feedback

2.2.4
latest
npmnpm
Version published
Weekly downloads
119
-59.66%
Maintainers
2
Weekly downloads
 
Created
Source

User Feedback Form

A javascript plugin to add a user feedback form to your website.

You will also need a backend data store. See user-feedback-store.

Quickstart

npm

Install from npm

npm install @nhsuk/user-feedback-form

Use script in your javascript build

import userFeedbackForm from '@nhsuk/user-feedback-form';

userFeedbackForm({
    cssSelector: "#my-div-id",
    formEndpoint: "https://example.com/my-api-endpoint/",
    enableTextResponse: false,
});

script

If you do not have a node-based javascript frontend build, you can use the minified javascript distribution.

The latest javascript file can be found in github releases https://github.com/nhsuk/user-feedback-form/releases

<!-- in the html <head> -->
<script src="./user-feedback-form.min.js" defer></script>

...

<!-- where you want the form to appear -->
<div id="nhsuk-user-feedback-form" data-form-endpoint="https://example.com/endpoint/"></div>

Attributes

data-form-endpoint - (required) An HTTP data store endpoint to POST data to. Include the trailing slash data-enable-text-response - (optional) Include to enable text responses on the feedback form.

API

  • userFeedbackForm(settings)

Adds the user feedback form inside a <div> element. settings.cssSelector will be used to select the div from the DOM.

settings should be an object containing:

  • formEndpoint - (required) An HTTP data store endpoint to POST data to.
  • cssSelector - (optional) HTML selector insert the form into. '#nhsuk-user-feedback-form' by default.

Events

An onFeedback event is emitted when the user gives satisfied or unsatisfied feedback by clicking on the yes or no buttons.

You can listen to this event to trigger custom javascript code.

// Listen to the event on the container div
document.querySelector("#nhsuk-user-feedback-form").addEventListener('onFeedback', (event) => {
  // custom code using the boolean `isSatisfied` value.
  console.log(event.detail.isSatisfied)
});

Contributing

Development

Run npm install followed by npm start to start a development server. A test site will be available at http://localhost:8080/tests/example/

Style

For now, this app is very simple, so we don't use any libraries like Vue or React. The App class in src/index.js represents the app as a whole. Each screen has it's own class which can be instantiated and rendered with the render method when the screen should be displayed. The screen classes are responsible for screen-level interactions such as rendering, attaching event listeners and input validation.

Run npm run lint to run eslint code linting.

Tests

Run npm test to run all tests.

FAQs

Package last updated on 27 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.