Skip to content

Commit 286b5f7

Browse files
committedMay 4, 2024
feat: Add firebase basic setup
1 parent 789d27c commit 286b5f7

File tree

8 files changed

+728
-4
lines changed

8 files changed

+728
-4
lines changed
 

‎.env.example

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
NEXT_PUBLIC_FIREBASE_API_KEY=
2+
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=
3+
NEXT_PUBLIC_FIREBASE_PROJECT_ID=
4+
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=
5+
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=
6+
NEXT_PUBLIC_FIREBASE_APP_ID=
7+
NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID=

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"dependencies": {
1212
"class-variance-authority": "^0.7.0",
1313
"clsx": "^2.1.1",
14+
"firebase": "^10.11.1",
1415
"lucide-react": "^0.378.0",
1516
"next": "14.2.3",
1617
"next-themes": "^0.3.0",

‎src/lib/firebase/auth/signIn.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import firebase_app from "../config";
2+
import { signInWithEmailAndPassword, getAuth } from "firebase/auth";
3+
4+
// Get the authentication instance using the Firebase app
5+
const auth = getAuth(firebase_app);
6+
7+
// Function to sign in with email and password
8+
export default async function signIn(email: string, password: string) {
9+
let result = null, // Variable to store the sign-in result
10+
error = null; // Variable to store any error that occurs
11+
12+
try {
13+
result = await signInWithEmailAndPassword(auth, email, password); // Sign in with email and password
14+
} catch (e) {
15+
error = e; // Catch and store any error that occurs during sign-in
16+
}
17+
18+
return { result, error }; // Return the sign-in result and error (if any)
19+
}

‎src/lib/firebase/auth/signUp.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import firebase_app from "../config";
2+
import { createUserWithEmailAndPassword, getAuth } from "firebase/auth";
3+
4+
// Get the authentication instance using the Firebase app
5+
const auth = getAuth(firebase_app);
6+
7+
// Function to sign up a user with email and password
8+
export default async function signUp(email: string, password: string) {
9+
let result = null, // Variable to store the sign-up result
10+
error = null; // Variable to store any error that occurs
11+
12+
try {
13+
result = await createUserWithEmailAndPassword(auth, email, password); // Create a new user with email and password
14+
} catch (e) {
15+
error = e; // Catch and store any error that occurs during sign-up
16+
}
17+
18+
return { result, error }; // Return the sign-up result and error (if any)
19+
}

‎src/lib/firebase/config.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Import the functions you need from the SDKs you need
2+
import { initializeApp, getApps } from "firebase/app";
3+
// TODO: Add SDKs for Firebase products that you want to use
4+
// https://firebase.google.com/docs/web/setup#available-libraries
5+
6+
// Your web app's Firebase configuration
7+
const firebaseConfig = {
8+
apiKey: process.env.NEXT_PUBLIC_FIREBASE_API_KEY,
9+
authDomain: process.env.NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN,
10+
projectId: process.env.NEXT_PUBLIC_FIREBASE_PROJECT_ID,
11+
storageBucket: process.env.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET,
12+
messagingSenderId: process.env.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID,
13+
appId: process.env.NEXT_PUBLIC_FIREBASE_APP_ID,
14+
};
15+
16+
// Initialize Firebase
17+
let firebase_app = getApps().length === 0 ? initializeApp(firebaseConfig) : getApps()[0];
18+
19+
export default firebase_app;

‎src/lib/firebase/firestore/addData.ts

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import firebase_app from "../config";
2+
import { getFirestore, doc, setDoc } from "firebase/firestore";
3+
4+
// Get the Firestore instance
5+
const db = getFirestore(firebase_app);
6+
7+
// Function to add data to a Firestore collection
8+
export default async function addData(
9+
collection: string,
10+
id: string,
11+
data: any
12+
) {
13+
// Variable to store the result of the operation
14+
let result = null;
15+
// Variable to store any error that occurs during the operation
16+
let error = null;
17+
18+
try {
19+
// Set the document with the provided data in the specified collection and ID
20+
result = await setDoc(doc(db, collection, id), data, {
21+
merge: true, // Merge the new data with existing document data
22+
});
23+
} catch (e) {
24+
// Catch and store any error that occurs during the operation
25+
error = e;
26+
}
27+
28+
// Return the result and error as an object
29+
return { result, error };
30+
}

‎src/lib/firebase/firestore/getData.ts

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import firebase_app from "../config";
2+
import { getFirestore, doc, getDoc } from "firebase/firestore";
3+
4+
// Get the Firestore instance
5+
const db = getFirestore(firebase_app);
6+
7+
// Function to retrieve a document from a Firestore collection
8+
export default async function getDocument(collection: string, id: string) {
9+
// Create a document reference using the provided collection and ID
10+
const docRef = doc(db, collection, id);
11+
// Variable to store the result of the operation
12+
let result = null;
13+
// Variable to store any error that occurs during the operation
14+
let error = null;
15+
16+
try {
17+
// Retrieve the document using the document reference
18+
result = await getDoc(docRef);
19+
} catch (e) {
20+
// Catch and store any error that occurs during the operation
21+
error = e;
22+
}
23+
24+
// Return the result and error as an object
25+
return { result, error };
26+
}

‎yarn.lock

+607-4
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.