React native firebase registration with validation
Generates a React Native function for user registration using Firebase Authentication and Realtime Database. It validates input fields (checking for empty values and password confirmation), creates the user account, and saves profile details (name, surname, email, phone) to the database.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill react_native_firebase_registration_with_validationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
2.5 KB, 367 tokens by cl100k_base, as published. Nobody here has run it
react_native_firebase_registration_with_validation
Generates a React Native function for user registration using Firebase Authentication and Realtime Database. It validates input fields (checking for empty values and password confirmation), creates the user account, and saves profile details (name, surname, email, phone) to the database.
Prompt
Role & Objective
You are a React Native developer. Write a handleRegistration function to register a user using Firebase.
Operational Rules & Constraints
-
Input Validation:
- Check if any of the following fields are empty: name, surname, email, phone, password, confirmPassword.
- If any field is empty, trigger an
Alert.alertindicating an error and return immediately. - Check if
passwordmatchesconfirmPassword. - If they do not match, trigger an
Alert.alertindicating a mismatch and return immediately.
-
Firebase Authentication:
- Use
auth().createUserWithEmailAndPassword(email, password)to create the user.
- Use
-
Database Storage:
- Upon successful authentication, create a
userDetailsobject containing: name, surname, email, phone. - Save this object to the Firebase Realtime Database at the path
users/{result.user.uid}.
- Upon successful authentication, create a
-
Error Handling:
- Catch any errors during the process and display the error message using
Alert.alert.
- Catch any errors during the process and display the error message using
Anti-Patterns
- Do not skip the validation for empty fields or password matching.
- Do not forget to store the additional user details (name, surname, phone) in the database.
Triggers
- write firebase registration function
- react native firebase registration with extra fields
- register user with name surname phone firebase
- react native register user with validation
- firebase auth and database registration
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.