-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
209 lines (197 loc) · 6.3 KB
/
App.js
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
import React, { useEffect, useState } from "react";
import { useStateValue } from "./StateProvider";
import {
BrowserRouter as Router,
Switch,
Route,
Redirect,
} from "react-router-dom";
//importing firebase
import db from "./firebase";
import { auth, firebase } from "./firebase";
//importing actions
import { setUser } from "./actions/userAction";
//importing components
import Login from "./Login";
import Sidebar from "../src/Sidebar/Sidebar";
import Chat from "../src/Chat/Chat";
import { ToastContainer } from "react-toastify";
import { toastInfo } from "./shared/toastInfo";
//importing material-ui
import Hidden from "@material-ui/core/Hidden";
import CircularProgress from "@material-ui/core/CircularProgress";
import LinearProgress from "@material-ui/core/LinearProgress";
//importing styles
import "react-toastify/dist/ReactToastify.css";
import "./App.css";
function App() {
const [{ user }, dispatch] = useStateValue();
const [rooms, setRooms] = useState([]);
const [isRoomExist, setIsRoomExist] = useState("");
const [loading, setLoading] = useState(false);
useEffect(() => {
const unsubscribe = auth.onAuthStateChanged((authUser) => {
if (authUser) {
dispatch(setUser(authUser));
setLoading(true);
db.collection("rooms")
.orderBy("timestamp", "desc")
.onSnapshot((snapshot) =>
setRooms(
snapshot.docs.map((doc) => ({
id: doc.id,
data: doc.data(),
}))
)
);
if (authUser.isAnonymous === true && authUser.displayName === null) {
var anonymousName =
"Anonymous" + " " + Math.floor(Math.random() * 1000000);
auth.currentUser.updateProfile({
displayName: anonymousName,
photoURL: "",
});
db.collection("users")
.doc(authUser.uid)
.set({
name: anonymousName,
about: "Hey there! I am using WhatsApp.",
photoURL: "",
role: "anonymous",
dateJoined: firebase.firestore.FieldValue.serverTimestamp(),
})
.then(function () {
console.log("Document successfully updated!");
})
.catch(function (error) {
// The document probably doesn't exist.
console.error("Error updating document: ", error);
});
}
if (
authUser.uid &&
authUser.isAnonymous === false &&
authUser.photoURL !== null
) {
const errorAbout = "errorAbout";
db.collection("users")
.doc(authUser.uid)
.get()
.then(function (doc) {
if (doc.exists) {
// console.log("USER EXIST");
} else {
db.collection("users").doc(authUser.uid).set({
name: authUser.displayName,
about: "Hey there! I am using WhatsApp.",
photoURL: user.photoURL,
role: "regular",
dateJoined: firebase.firestore.FieldValue.serverTimestamp(),
});
}
})
.catch(function (error) {
toastInfo(`${error}`, errorAbout, "top-center");
});
} else if (
authUser.uid &&
authUser.isAnonymous === false &&
authUser.photoURL === null
) {
const errorAbout = "errorAbout";
db.collection("users")
.doc(authUser.uid)
.get()
.then(function (doc) {
if (doc.exists) {
console.log("USER EXIST");
} else {
db.collection("users").doc(authUser.uid).set({
name: authUser.displayName,
about: "Hey there! I am using WhatsApp.",
photoURL: "",
role: "regular",
dateJoined: firebase.firestore.FieldValue.serverTimestamp(),
});
}
})
.catch(function (error) {
toastInfo(`${error}`, errorAbout, "top-center");
});
}
} else {
dispatch(setUser(null));
setLoading(true);
}
});
return () => {
unsubscribe();
};
}, [dispatch, user]);
return (
<div className={`app ${loading === false && "app-no-bg"}`}>
{loading ? (
<>
<ToastContainer
position="top-center"
autoClose={5000}
newestOnTop={false}
closeOnClick
rtl={false}
pauseOnFocusLoss
draggable
/>
{!user ? (
<Login />
) : (
<div className="app__body">
<Router>
<Switch>
<Route exact path="/">
<Sidebar
rooms={rooms}
setIsRoomExist={setIsRoomExist}
isRoomExist={isRoomExist}
/>
<Hidden only={["xs"]}>
{" "}
{/* Chat component will be hidden in mobile view */}
<Chat isRoomExist={isRoomExist} />
</Hidden>
</Route>
<Route exact path="/rooms/:roomId">
<Hidden only={["xs"]}>
{" "}
{/* Sidebar component will be hidden in mobile view */}
<Sidebar
rooms={rooms}
setIsRoomExist={setIsRoomExist}
isRoomExist={isRoomExist}
/>
</Hidden>
<Chat isRoomExist={isRoomExist} />
</Route>
<Route path="*">
<Redirect to="/" />
</Route>
</Switch>
</Router>
</div>
)}
</>
) : (
<div className="app__loading">
<div>
<div className="app__loading_circular">
<CircularProgress />
</div>
<div className="app__loading_linear">
<LinearProgress />
</div>
</div>
</div>
)}
</div>
);
}
export default App;