-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathview.js
39 lines (37 loc) · 1.07 KB
/
view.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* WordPress Dependencies
*/
import { store, getContext, getElement } from '@wordpress/interactivity';
store('prc-block/form-captcha', {
callbacks: {
onDisplayCaptcha: () => {
const context = getContext();
const { targetNamespace } = context;
const targetContext = getContext(targetNamespace);
const isHidden = targetContext.captchaHidden;
// When we reach the point of the form where the captcha should be displayed, render it.
if (true === isHidden) {
// We need a way to "unmount" the captcha when the form is submitted.
return;
}
const { ref } = getElement();
const target = ref.querySelector(
'.wp-block-prc-block-form-captcha__captcha'
);
if (!target) {
return;
}
// eslint-disable-next-line no-undef
const { turnstile, PRC_PLATFORM_TURNSTILE_SITE_KEY } = window;
turnstile.ready(() => {
turnstile.render(target, {
sitekey: PRC_PLATFORM_TURNSTILE_SITE_KEY,
callback: (token) => {
console.log(`Challenge Success ${token}`);
targetContext.captchaToken = token;
},
});
});
},
},
});