Answers for "check if a user already exists firebase realtime database react native"

0

check if a user already exists firebase realtime database react native

const { email, username, password } = this.state;

let rootRef = firebase.database().ref();

rootRef
  .child('users')
  .orderByChild('username')
  .equalTo(username)
  .once('value')
  .then(snapshot => {
    if (snapshot.exists()) {
      let userData = snapshot.val();
      console.log(userData);
      Alert.alert('username is taken');
      return userData;
    } else {
      console.log('not found');
      firebase
        .auth()
        .createUserWithEmailAndPassword(email, password)
        .then(async user => {
          console.log('Data created', user);
        });
    }
});
Posted by: Guest on April-26-2021

Code answers related to "check if a user already exists firebase realtime database react native"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language