Socket
Socket
Sign inDemoInstall

ember-g-recaptcha

Package Overview
Dependencies
1
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-g-recaptcha


Version published
Maintainers
1
Created

Readme

Source

ember-g-recaptcha

Easily integrate Google's reCaptcha in your app as an Ember Component.

Install

Run the following command from inside your ember-cli project:

ember install ember-g-recaptcha

Configure

You need to generate a valid Site Key / Secret Key pair on Google's reCaptcha admin console. Then, you need to set your Site Key in the ENV var on your config/environment.js file, like this:

  var ENV = {
    // ...

    gReCaptcha: {
      siteKey: 'your-recaptcha-site-key'
    }

    // ...
  }

Usage

Add the component to your template like this:

{{g-recaptcha onSuccess=(action "onCaptchaResolved")}}

then in your component or controller 's actions:

  actions: {
    onCaptchaResolved(reCaptchaResponse) {
      this.get('model').set('reCaptchaResponse', reCaptchaResponse);
      // You should then save your model and the server would validate reCaptchaResponse
      // ...
    },
  }

You can pass g-recaptcha the following properties:

  • theme
  • type
  • size
  • tabIndex

Their meaning is described on this official doc. Also have a look at the dummy app's example templates.

You know, after some time the reCaptcha response expires; g-recaptcha 's default behavior is to invoke the reset method. But, if you want to perform custom behavior instead (e.g. transitioning to another route) you can pass your custom action via the onExpired property, like this:

{{g-recaptcha onSuccess=(action "onCaptchaResolved")
              onExpired=(action "onCaptchaExpired") }}

then in your component or controller 's actions:

  actions: {
    onCaptchaExpired() {
      // your custom logic here
    },
  }

License

ember-g-recaptcha is released under the MIT License.

Keywords

FAQs

Last updated on 09 Jun 2016

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc