-
Notifications
You must be signed in to change notification settings - Fork 374
/
Copy pathconfig.ts
117 lines (103 loc) · 2.65 KB
/
config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import { initializeApp } from "firebase/app";
import { getAuth, signInWithEmailAndPassword } from "firebase/auth";
import {
addDoc,
collection,
getFirestore,
getDocs,
getDoc as getOneDoc,
query,
where,
doc,
deleteDoc,
updateDoc,
WhereFilterOp,
} from "firebase/firestore";
// Web app's Firebase configuration
const firebaseConfig = {
apiKey: process.env.API_KEY,
authDomain: process.env.AUTH_DOMAIN,
projectId: process.env.PROJECT_ID,
storageBucket: process.env.STORAGE_BUCKET,
messagingSenderId: process.env.MG_SENDER_ID,
appId: process.env.APP_ID,
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const db = getFirestore(app);
const auth = getAuth(app);
const signInMethod = signInWithEmailAndPassword;
// Add new doc
const insertDoc = async (doc: object, collectionName: string) => {
const dbInstance = collection(db, collectionName);
return addDoc(dbInstance, doc);
};
// Get docs
const fetchDocs = (collectionName: string) => {
const dbRef = collection(db, collectionName);
return getDocs(dbRef);
};
// Get docs
const useQuery = (
collectionName: string,
q: {
fieldPath: string;
opStr: WhereFilterOp;
value: number | string | boolean;
}
) => {
const dbRef = query(
collection(db, collectionName),
where(q.fieldPath, q.opStr, q.value)
);
return getDocs(dbRef);
};
// Delete doc
const deleteDocument = (id: string, collectionName: string) => {
const dbRef = query(collection(db, collectionName), where("id", "==", id));
return getDocs(dbRef).then((querySnapshot) => {
if (!querySnapshot.empty) {
const id = querySnapshot.docs[0].id;
const docRef = doc(db, collectionName, id);
return deleteDoc(docRef);
}
});
};
// Get component
const getDoc = (value: string, collectionName: string, fieldPath?: string) => {
const dbRef = fieldPath
? query(collection(db, collectionName), where(fieldPath, "==", value))
: query(collection(db, collectionName), where("id", "==", value));
return getDocs(dbRef);
};
// Edit doc
const editDoc = (
value: string,
collectionName: string,
data: any,
fieldPath?: string
) => {
const dbRef = fieldPath
? query(collection(db, collectionName), where(fieldPath, "==", value))
: query(collection(db, collectionName), where("id", "==", value));
return getDocs(dbRef).then((querySnapshot) => {
if (!querySnapshot.empty) {
const docId = querySnapshot.docs[0].id;
const docRef = doc(db, collectionName, docId);
return updateDoc(docRef, data);
}
});
};
export {
auth,
signInMethod,
insertDoc,
fetchDocs,
deleteDocument,
getDoc,
getOneDoc,
editDoc,
useQuery,
db,
doc,
};