scrimba
Learn React Router
Suspense
Final loose ends
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Final loose ends
Expand for more info
api.js
run
preview
console
import { initializeApp } from "firebase/app";
import {
getFirestore,
collection,
doc,
getDocs,
getDoc,
query,
where
} from "firebase/firestore/lite"

const firebaseConfig = {
apiKey: "AIzaSyD_k3v3HK3tKEqhlqFHPkwogW7PqEqhGhk",
authDomain: "vanlife-a1af5.firebaseapp.com",
projectId: "vanlife-a1af5",
storageBucket: "vanlife-a1af5.appspot.com",
messagingSenderId: "803007000356",
appId: "1:803007000356:web:446cd3a1ca406839258db1"
};

const app = initializeApp(firebaseConfig);
const db = getFirestore(app)

const vansCollectionRef = collection(db, "vans")

export async function getVans() {
const querySnapshot = await getDocs(vansCollectionRef)
const dataArr = querySnapshot.docs.map(doc => ({
...doc.data(),
id: doc.id
}))
return dataArr
}

export async function getVan(id) {
const docRef = doc(db, "vans", id)
const vanSnapshot = await getDoc(docRef)
return {
...vanSnapshot.data(),
id: vanSnapshot.id
}
}

export async function getHostVans() {
const q = query(vansCollectionRef, where("hostId", "==", "123"))
const querySnapshot = await getDocs(q)
const dataArr = querySnapshot.docs.map(doc => ({
...doc.data(),
id: doc.id
}))
return dataArr
}

export async function loginUser(creds) {
const res = await fetch("/api/login",
{ method: "post", body: JSON.stringify(creds) }
)
const data = await res.json()

if (!res.ok) {
throw {
message: data.message,
statusText: res.statusText,
status: res.status
}
}

return data
}
Console
/host/vans
-2:08