Reputation: 8114
I am trying Phone number authentication using Ionic2/typescript and initialising the recaptcha verifier like this:
.ts file
import firebase from 'firebase';
@IonicPage()
@Component({
selector: 'page-login',
templateUrl: 'login.html',
})
export class LoginPage {
public recaptchaVerifier:firebase.auth.RecaptchaVerifier;
constructor(afAuth: AngularFireAuth, public authData: AuthProvider, public alertController: AlertController, formBuilder: FormBuilder, public navCtrl: NavController, public navParams: NavParams) {
this.loginForm = formBuilder.group({
phone: ['', Validators.compose([Validators.required,
Validator.isValidPhone])]
});
try {
this.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('recaptcha-container');
}catch(e){
console.log("There was a problem in initializing the recapctha verifier: " + e);
}
this.authData.recaptchaVerifier = this.recaptchaVerifier;
}
}
.html file
<ion-content padding>
<div id="recaptcha-container"></div>
<form [formGroup]="loginForm" (submit)="loginUser()" novalidate>
<ion-item>
<ion-label stacked>Phone Number</ion-label>
<ion-input #phone formControlName="phone" type="phone" placeholder="10 digit mobile number"
[class.invalid]="!loginForm.controls.phone.valid &&
loginForm.controls.phone.dirty"></ion-input>
</ion-item>
<ion-item class="error-message" *ngIf="!loginForm.controls.phone.valid &&
loginForm.controls.phone.dirty">
<p>Please enter a valid 10 digit mobile number.</p>
</ion-item>
<button ion-button block type="submit">
Next
</button>
</form>
</ion-content>
However when I run the code I get:
Error: reCAPTCHA container is either not found or already contains inner elements
Exploring the world of ionic and firebase for the first time, I find it difficult to understand the problem. Anyone encountered and solved this problem before? Any insight will be helpful.
Upvotes: 7
Views: 20664
Reputation: 1
Had the same issue in svelte but loading on ReCAPTCHA onMount saved the day
Upvotes: 0
Reputation: 1
This approach helped me:
Upvotes: 0
Reputation: 2862
using hooks
useEffect(() => {
recaptchaVerifierRef.current = new Firebase.auth.RecaptchaVerifier(
'recaptcha-container',
{
size: 'invisible',
callback: function (response) {
console.log('success', response);
},
'expired-callback': function () {
console.log('expired-callback');
},
},
).verify();
}, []);
Upvotes: 0
Reputation: 301
In the constructor, the page has not been loaded yet therefore the DOM element does not exist.
Therefore You have to place it in either
ng on init (fastest)
ngOnInit(){
}
or ion view will enter (optimal)
ionViewWillEnter(){
}
or ion view did enter (safest)
ionViewDidEnter(){
}
or you could use a timer in your constructor problem is estimating the duration when all the pages take different durations
var duration = 3000;
//in milliseconds. therefore 3 seconds.
//which may either late or early
setTimeout(()=>{
}, duration)
Check out the ionic life cycle for a better understanding
Upvotes: 0
Reputation: 11
Well, the problem is, you have written the recaptcha verifying code before html rendition, either in constructor or oninit if using ionic4. Write it inside ionViewDidEnter. Html is rendered by then and that node can be found with given id in the html document by then.
Upvotes: 1
Reputation: 8166
You can also add a delay to load the captcha. It did the trick for me.
JS :
var defaultApp = firebase.initializeApp(config);
setTimeout(function() {
window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('recaptcha-container', {
'size': 'normal',
'callback': function(response) {
console.log("success", response);
},
'expired-callback': function() {
console.log("expired-callback");
}
});
recaptchaVerifier.render().then(function(widgetId) {
window.recaptchaWidgetId = widgetId;
});
},2000);
HTML :
<div id="recaptcha-container"></div>
Upvotes: 6
Reputation: 300
you should call it after view init "ionViewDidEnter"
this.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('recaptcha-container');
Upvotes: 10
Reputation: 8075
I think that the problem is that
<div id="recaptcha-container"></div>
has not been added to the DOM yet (in the constructor of your class). You have to wait for it to do this.
One thing is that Angular 2 expect you to not access/manipulate the DOM directly. You should do this 'the Angular way', either with ElementRef (here is an example, you have to wait for the ngAfterContentInit lifecycle event) or ViewChild.
Upvotes: 8