npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-google-recaptcha

v0.2.2

Published

Google reCaptcha v2 Ember JS addon

Downloads

17

Readme

ember-google-recaptcha

Utilize Google reCAPTCHA v2 as an Ember js component that handles both the standard and invisible versions.

npm Build Status dependencies Status devDependencies Status Ember Observer Score

Resources

Install

From command line, run the following command

npm install ember-google-recaptcha

Configuration

Prerequisite: Setup and generate the proper API keys from the reCAPTCHA Admin Console

In your app's config/environment.js's ENV variable, add the following properties

var ENV = {
    ...
    
    googleRecaptcha: {
      siteKey: 'google_recaptcha_site_key',
    },
    
    ...
};

Utilization

Standard Usage

For the traditional use of reCATPCHA, add the following to your template

{{google-recpatcha onSuccess=(action "onCaptchaResolved")}}

In the corresponding controller/component, have the following action

actions: {
    onCaptchaResolved(reCaptchaResponse) {
        // Pass reCaptchaResponse to the server to be validated
    },
},

Documentation: Standard reCAPTCHA

Invisible Usage

For the reCaptcha invisible to be used, add the following to your template

{{google-recaptcha 
    onSuccess=(action "onCaptchaResolved") 
    ref=(mut iGoogleRecaptcha) 
    size="invisible"
}}
// An element (or some piece of code) is required to instantiate the check, we'll use the following button.
<button {{action "onClickExecuteInvisible" click}}>Click me</button>

In the corresponding controller/component, have the following actions

actions: {
    onCaptchaResolved(reCaptchaResponse) {
        // Pass reCaptchaResponse to the server to be validated
    },
    onClickExecuteInvisible() {
        // Do any treatment and then instantiate the test (if Google deems neccessary)
        Ember.get(this, 'iGoogleRecaptcha').execute();
    },
},

Documentation: Invisible reCAPTCHA

Advanced Usage

Handling Expiration (Standard Only)

If you would like to have custom code enacted if the reCAPTCHA expires (default: reset), you may pass a custom action using the onExpired property.

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

In the corresponding controller/component, have the following actions

actions: {
    onCaptchaExpired() {
        // Custom logic here
    },
},

Reference: expiration

Triggering Reset

If you would like to reset the reCAPTCHA widget, you may do so by doing the following

{{google-recaptcha
    onSuccess=(action "onCaptchaResolved")
    ref=(mut googleRecaptcha)
}}

In the corresponding controller/component, have the following code

Ember.get(this, 'googleRecaptcha').resetReCaptcha();

Reference (Standard): reset

Reference (Invisible): reset

Executing the widget (Invisible Only)

If you are using invisible reCAPTCHA, you will want to trigger the challenge at whatever moment you'd like.

{{google-recaptcha
    onSuccess=(action "onCaptchaResolved")
    ref=(mut iGoogleRecaptcha)
    size="invisible"
}}
// An element (or some piece of code) is required to instantiate the check, we'll use the following button.
<button {{action "onClickExecuteInvisible" click}}>Click me</button>

In the corresponding controller/component, have the following action

actions: {
    onClickExecuteInvisible() {
        // Do any treatment and then instantiate the test (if Google deems neccessary)
        Ember.get(this, 'iGoogleRecaptcha').execute();
    },
},

Documentation: execute()

Passable Properties

The following properties may be passed to the component

  • badge <bottomright:default|bottomleft|inline> (invisible only)
  • siteKey (using config/environment.js is recommended)
  • size
  • theme <dark|light:default> (standard only)
  • type <audio|image:default>
  • tabindex

Credit

Based off the code of ember-g-recpatcha by algonauti

Change Log

v0.2.2

  • Added to dummy app and made it more sophisticated
  • Upgraded dev dependencies
  • Added badges to Readme.md
  • Minor Fixes

v0.2.1

  • Updated Documentation
  • Updated contributed code

v0.2.0

  • Shortened component name to google-recaptcha
  • Added badge parameter able to be set on component (for reCaptcha invisible)
  • Upgraded Ember version to 2.16.* and fixed deprecations
  • Updated dummy app