Skip to content

Mayank233444/TechTeam_Expansion_Task_2024

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task: Explore Firestore and firebase

Description

We want you all to get an intro to firebase and similar backend technology so We are attaching a sample Task but If you think you can do something more creative and cooler than this task or you have built a project where you have utilized firebase or firestore database or anyother database like Mongodb,postgresql etc, then you can submit that as well just make sure to attach a "projectdescription.md" file in the Pull-request and explain about it .

Sample Task

The task involves creating a form with specific fields and submitting the form. On submission, the data should be stored in a Firestore database. Yor are also required to create a collection with your first name and branch, following a specific naming convention (mentioned below). I can add some good resources for firebase and form but I want to test your Googling skills. But wherever you fill confused, feel free to ask in WhatsApp group.

Task Requirements

  1. Create a form with the following fields:

    • Name: A field for participants to enter their full name.
    • Branch: A field for participants to enter their branch of study.
    • Email: A field for participants to enter their email address.
    • PhoneNumber: A field for participants to enter their phone number.
  2. All fields mentioned above are required, meaning participants must provide information for each field before submitting the form.

  3. Implement form validation to ensure that participants provide valid data. For example, validate that the email address follows the proper format, and ensure the phone number is in a valid format as well.

  4. Design and implement a user interface (UI) for the form. Participants are free to choose any framework they prefer for building the UI.

  5. Configure Firebase Firestore to store the form data. We have provided you with the Firebase configuration file that you will need to integrate into your solution,however you are free to use your own configuration in that case attach the screenshot of the collection in firebase dashboard with the pull request.

  6. Participants should create a collection in Firestore with the following naming convention:

    • Collection Name: FirstNameBranch
    • For example, if a participant's name is "Shivanshu Ranjan" and their branch is "Chemical Engineering" the collection name would be "ShivanshuChemical".
  7. Once participants complete the task,host the form on services like (netlify or vercel) and raise a pull request on this repository with the link of your hosted site in description.

Bonus Task

Can you create a functionality to upload an image also to the firebase storage bucket along with form submission, Keep the folder name in the same format i.e "FirstNameBranch" ?

Hint: You can use input type as file like "" and then you can get the image object from const file = document.getElementById("fileInput").files[0] .After that you can upload this file to storagebucket by creating a reference to storage bucket just like you are doing for form submission.

Suggestion/Warning

Take help from chatgpt/gemini whenever required . They will make your work a lot easy but don't go on just blindly copy pasting the code from chatgpt as We will be discussing your project in details in the interview if shortlisted .

Deadline

The deadline for completing this task is the end of the day (EOD) on June 6th.(Negotiable if requested)

Additional Notes

  • You are free to use any framework of their choice for building the form and UI. You can select from popular options such as React,NextJS, Angular, Vue.js, or any other framework they are comfortable with. Also don't get scared if you aren't familiar with these now, you can go on with html/css JS as well .

  • We encourage you to write clean and well-documented code. This will make reviewing your submissions easier and allow for better evaluation of your skills.

  • Its optional but if you use react hook form, it would make form handling and validation lot simpler.

Happy Coding

Firestore config file

// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
  apiKey: "AIzaSyCdKthmN5V1tKXJ5vlMxbqc1L4o4clEKj4",
  authDomain: "techteamtask2024.firebaseapp.com",
  projectId: "techteamtask2024",
  storageBucket: "techteamtask2024.appspot.com",
  messagingSenderId: "1067539417498",
  appId: "1:1067539417498:web:cb7f4bf39e824524ce1223",
  measurementId: "G-76JGN8JWVE"
};

or if you want to use CDN or basically VanillaJS here is the script

<script type="module">
  // Import the functions you need from the SDKs you need
  import { initializeApp } from "https://www.gstatic.com/firebasejs/10.0.0/firebase-app.js";
  import { getAnalytics } from "https://www.gstatic.com/firebasejs/10.0.0/firebase-analytics.js";
  // TODO: Add SDKs for Firebase products that you want to use
  // https://firebase.google.com/docs/web/setup#available-libraries

  // Your web app's Firebase configuration
  // For Firebase JS SDK v7.20.0 and later, measurementId is optional
  const firebaseConfig = {
  apiKey: "AIzaSyCdKthmN5V1tKXJ5vlMxbqc1L4o4clEKj4",
  authDomain: "techteamtask2024.firebaseapp.com",
  projectId: "techteamtask2024",
  storageBucket: "techteamtask2024.appspot.com",
  messagingSenderId: "1067539417498",
  appId: "1:1067539417498:web:cb7f4bf39e824524ce1223",
  measurementId: "G-76JGN8JWVE"
};

  // Initialize Firebase
  const app = initializeApp(firebaseConfig);
  const analytics = getAnalytics(app);
</script>

FAQ

Q: How would you know wheather you have succesfully connected to database or not?
A: When we add document to firestore, in response we get a document id, so if you're getting this id that means you have succesfully connected to database.

About

Name:Mayank

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 58.3%
  • CSS 37.4%
  • JavaScript 4.3%