recaptcha
This commit is contained in:
parent
604cc8e9d5
commit
37ae4e9646
|
@ -46,7 +46,8 @@
|
||||||
"rxjs": "^5.5.8",
|
"rxjs": "^5.5.8",
|
||||||
"rxjs-fetch": "^2.1.6",
|
"rxjs-fetch": "^2.1.6",
|
||||||
"web-animations-js": "^2.3.1",
|
"web-animations-js": "^2.3.1",
|
||||||
"zone.js": "^0.8.25"
|
"zone.js": "^0.8.25",
|
||||||
|
"angular-google-recaptcha": "^1.0.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular/cli": "1.6.5",
|
"@angular/cli": "1.6.5",
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
<title>overFlow</title>
|
<title>overFlow</title>
|
||||||
<base href="/">
|
<base href="/">
|
||||||
|
|
||||||
|
<!--<script src="https://www.google.com/recaptcha/api.js?render=explicit&onload=initRecaptcha" async defer></script>-->
|
||||||
|
<!--<script src='https://www.google.com/recaptcha/api.js?render=6Ldld1gUAAAAAKBn115dpJcFpsI4G0ZTCcmP29iA'></script>-->
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
|
||||||
|
|
|
@ -81,7 +81,16 @@
|
||||||
|
|
|
|
||||||
<a href="javascript:void(0)" (click)="policyDisplayOpen()">Privacy Policy</a>
|
<a href="javascript:void(0)" (click)="policyDisplayOpen()">Privacy Policy</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="content-section implementation">
|
||||||
|
<!--<p-growl [value]="msgs" sticky="sticky"></p-growl>-->
|
||||||
|
|
||||||
|
<!--<p-captcha siteKey="6Ldld1gUAAAAAKBn115dpJcFpsI4G0ZTCcmP29iA" (onResponse)="showResponse($event)" initCallback="initRecaptcha" ></p-captcha>-->
|
||||||
|
<recaptcha
|
||||||
|
[formControl]="myRecaptcha"
|
||||||
|
(scriptLoad)="onScriptLoad()"
|
||||||
|
(scriptError)="onScriptError()"
|
||||||
|
></recaptcha>
|
||||||
|
</div>
|
||||||
<div class="ui-g-12 ui-g-padding-15">
|
<div class="ui-g-12 ui-g-padding-15">
|
||||||
<button type="submit" [disabled]="!signupForm.valid" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-left">
|
<button type="submit" [disabled]="!signupForm.valid" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-left">
|
||||||
<span class="ui-button-icon-left ui-c fa fa-fw ui-icon-person"></span>
|
<span class="ui-button-icon-left ui-c fa fa-fw ui-icon-person"></span>
|
||||||
|
|
|
@ -1,15 +1,28 @@
|
||||||
import { Component, OnInit } from '@angular/core';
|
import {
|
||||||
|
AfterContentInit,
|
||||||
|
AfterViewInit,
|
||||||
|
Component,
|
||||||
|
ElementRef,
|
||||||
|
EventEmitter,
|
||||||
|
Input,
|
||||||
|
NgZone,
|
||||||
|
OnDestroy,
|
||||||
|
OnInit,
|
||||||
|
Output
|
||||||
|
} from '@angular/core';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
import { FormGroup, FormBuilder, Validators, AbstractControl, FormControl } from '@angular/forms';
|
import { FormGroup, FormBuilder, Validators, AbstractControl, FormControl } from '@angular/forms';
|
||||||
import { Member } from '@overflow/commons-typescript/model/member';
|
import { Member } from '@overflow/commons-typescript/model/member';
|
||||||
import * as AuthStore from '../../store/signup';
|
import * as AuthStore from '../../store/signup';
|
||||||
import {Store} from '@ngrx/store';
|
import {Store} from '@ngrx/store';
|
||||||
|
import { Message } from 'primeng/api';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'of-member-signup',
|
selector: 'of-member-signup',
|
||||||
templateUrl: './signup.component.html',
|
templateUrl: './signup.component.html',
|
||||||
})
|
})
|
||||||
export class SignupComponent implements OnInit {
|
export class SignupComponent implements OnInit, AfterViewInit, AfterContentInit, OnDestroy {
|
||||||
|
myRecaptcha = new FormControl(false);
|
||||||
|
|
||||||
signupForm: FormGroup;
|
signupForm: FormGroup;
|
||||||
email: AbstractControl;
|
email: AbstractControl;
|
||||||
|
@ -20,17 +33,79 @@ export class SignupComponent implements OnInit {
|
||||||
company: AbstractControl;
|
company: AbstractControl;
|
||||||
termsDisplay = false;
|
termsDisplay = false;
|
||||||
policyDisplay = false;
|
policyDisplay = false;
|
||||||
|
msgs: Message[] = [];
|
||||||
|
|
||||||
|
// private _instance: any = null;
|
||||||
|
|
||||||
|
// @Input() initCallback = 'initRecaptcha';
|
||||||
|
// @Input() siteKey = '6Ldld1gUAAAAAKBn115dpJcFpsI4G0ZTCcmP29iA';
|
||||||
|
// @Input() theme = 'light';
|
||||||
|
// @Input() type = 'image';
|
||||||
|
// @Input() size = 'normal';
|
||||||
|
// @Input() tabindex = 0;
|
||||||
|
// @Input() language: string = null;
|
||||||
|
|
||||||
|
// @Output() onResponse: EventEmitter<any> = new EventEmitter();
|
||||||
|
// @Output() onExpire: EventEmitter<any> = new EventEmitter();
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private router: Router,
|
private router: Router,
|
||||||
private formBuilder: FormBuilder,
|
private formBuilder: FormBuilder,
|
||||||
private store: Store<AuthStore.State>,
|
private store: Store<AuthStore.State>,
|
||||||
|
public el: ElementRef,
|
||||||
|
public _zone: NgZone,
|
||||||
) { }
|
) { }
|
||||||
|
|
||||||
|
ngAfterViewInit() {
|
||||||
|
// console.log('ddddd');
|
||||||
|
}
|
||||||
|
|
||||||
|
ngAfterContentInit() {
|
||||||
|
// if ((<any>window).grecaptcha) {
|
||||||
|
// console.log((<any>window).grecaptcha);
|
||||||
|
// this.init();
|
||||||
|
// } else {
|
||||||
|
// (<any>window)[this.initCallback] = () => {
|
||||||
|
// this.init();
|
||||||
|
// };
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
init() {
|
||||||
|
// console.log(this.el.nativeElement.children[2]);
|
||||||
|
// console.log((<any>window).grecaptcha.render());
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// this._instance = (<any>window).grecaptcha.render(this.el.nativeElement.children[2], {
|
||||||
|
// 'sitekey': this.siteKey,
|
||||||
|
// 'theme': this.theme,
|
||||||
|
// 'type': this.type,
|
||||||
|
// 'size': this.size,
|
||||||
|
// 'tabindex': this.tabindex,
|
||||||
|
// 'hl': this.language,
|
||||||
|
// 'callback': (response: string) => {this._zone.run(() => this.recaptchaCallback(response)); },
|
||||||
|
// 'expired-callback': () => {this._zone.run(() => this.recaptchaExpiredCallback()); },
|
||||||
|
// });
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.initForm();
|
this.initForm();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ngOnDestroy() {
|
||||||
|
// if (this._instance != null) {
|
||||||
|
// (<any>window).grecaptcha.reset(this._instance);
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
reset() {
|
||||||
|
// if (this._instance === null)
|
||||||
|
// return;
|
||||||
|
//
|
||||||
|
// (<any>window).grecaptcha.reset(this._instance);
|
||||||
|
}
|
||||||
|
|
||||||
initForm() {
|
initForm() {
|
||||||
this.signupForm = this.formBuilder.group({
|
this.signupForm = this.formBuilder.group({
|
||||||
'email': [
|
'email': [
|
||||||
|
@ -121,4 +196,26 @@ export class SignupComponent implements OnInit {
|
||||||
onPolicyDisplayClose() {
|
onPolicyDisplayClose() {
|
||||||
this.policyDisplay = false;
|
this.policyDisplay = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// showResponse(event) {
|
||||||
|
// this.msgs = [];
|
||||||
|
// this.msgs.push({severity: 'info', summary: 'Succees', detail: 'User Responded'});
|
||||||
|
// }
|
||||||
|
|
||||||
|
recaptchaCallback(response: string) {
|
||||||
|
// this.onResponse.emit({
|
||||||
|
// response: response
|
||||||
|
// });
|
||||||
|
}
|
||||||
|
|
||||||
|
recaptchaExpiredCallback() {
|
||||||
|
// this.onExpire.emit();
|
||||||
|
}
|
||||||
|
onScriptLoad() {
|
||||||
|
console.log('Google reCAPTCHA loaded and is ready for use!');
|
||||||
|
}
|
||||||
|
|
||||||
|
onScriptError() {
|
||||||
|
console.log('Something went long when loading the Google reCAPTCHA');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,8 @@ import { COMPONENTS } from './component';
|
||||||
import { SERVICES } from './service';
|
import { SERVICES } from './service';
|
||||||
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
|
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
|
||||||
import { QRCodeModule } from 'angularx-qrcode';
|
import { QRCodeModule } from 'angularx-qrcode';
|
||||||
|
import { CaptchaModule } from 'primeng/captcha';
|
||||||
|
import { RecaptchaModule } from 'angular-google-recaptcha';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
|
@ -20,6 +22,9 @@ import { QRCodeModule } from 'angularx-qrcode';
|
||||||
MemberRESTModule,
|
MemberRESTModule,
|
||||||
PrimeNGModules,
|
PrimeNGModules,
|
||||||
QRCodeModule,
|
QRCodeModule,
|
||||||
|
RecaptchaModule.forRoot({
|
||||||
|
siteKey: '6Ldld1gUAAAAAKBn115dpJcFpsI4G0ZTCcmP29iA',
|
||||||
|
}),
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
COMPONENTS,
|
COMPONENTS,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user