Files
overleaf-cep/services/web/frontend/js/services/validateCaptcha.js
T
Miguel Serrano f9871103bf Merge pull request #3949 from overleaf/msm-reenable-eslint-const-rule
Reenable eslint `prefer-const` rule

GitOrigin-RevId: 4f3825be8b8dff381095209085a36eaab76260d5
2021-05-06 02:09:14 +00:00

47 lines
1.1 KiB
JavaScript

/* global grecaptcha */
/* eslint-disable
no-return-assign,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
*/
import App from '../base'
export default App.factory('validateCaptcha', function () {
let _recaptchaCallbacks = []
const onRecaptchaSubmit = function (token) {
for (const cb of _recaptchaCallbacks) {
cb(token)
}
_recaptchaCallbacks = []
}
let recaptchaId = null
const validateCaptcha = (callback, captchaDisabled) => {
if (callback == null) {
callback = function (response) {}
}
if (
typeof grecaptcha === 'undefined' ||
grecaptcha === null ||
captchaDisabled
) {
return callback()
}
const reset = () => grecaptcha.reset()
_recaptchaCallbacks.push(callback)
_recaptchaCallbacks.push(reset)
if (recaptchaId == null) {
const el = $('#recaptcha')[0]
recaptchaId = grecaptcha.render(el, { callback: onRecaptchaSubmit })
}
return grecaptcha.execute(recaptchaId)
}
return validateCaptcha
})