adding data listening, user getching and using more of recoil
This commit is contained in:
@@ -1,105 +0,0 @@
|
||||
import {
|
||||
getAuth,
|
||||
GoogleAuthProvider,
|
||||
onAuthStateChanged,
|
||||
signInWithPopup,
|
||||
signOut,
|
||||
User,
|
||||
} from "firebase/auth";
|
||||
import { useRouter } from "next/router";
|
||||
import React, { useContext, useEffect, useState } from "react";
|
||||
import toast from "react-hot-toast";
|
||||
import Loading from "../components/Loading";
|
||||
import firebase from "../services/firebaseService";
|
||||
import cookie from "js-cookie";
|
||||
|
||||
const AuthContext = React.createContext(null);
|
||||
const googleProvider = new GoogleAuthProvider();
|
||||
|
||||
const auth = getAuth();
|
||||
|
||||
export function AuthProvider({ children }) {
|
||||
const [currUser, setCurrUser] = useState();
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
const router = useRouter();
|
||||
|
||||
useEffect(() => {
|
||||
const unsubscribe = onAuthStateChanged(auth, async (user) => {
|
||||
setLoading(true);
|
||||
|
||||
console.log("change in auth");
|
||||
if (user) {
|
||||
setCurrUser(user);
|
||||
|
||||
// set the token in the cookies for ssr verification
|
||||
const token = await user.getIdToken();
|
||||
// nookies.set(undefined, "token", token, { path: "/" });
|
||||
cookie.set("auth", token);
|
||||
} else {
|
||||
// nookies.set(undefined, "token", "", { path: "/" });
|
||||
cookie.remove("auth");
|
||||
|
||||
setCurrUser(null);
|
||||
}
|
||||
|
||||
setLoading(false);
|
||||
});
|
||||
|
||||
return unsubscribe;
|
||||
}, []);
|
||||
|
||||
const signInGoogle = () => {
|
||||
return signInWithPopup(auth, googleProvider)
|
||||
.then((res) => {
|
||||
// This gives you a Google Access Token. You can use it to access the Google API.
|
||||
const credential = GoogleAuthProvider.credentialFromResult(res);
|
||||
|
||||
const token = credential.accessToken;
|
||||
// The signed-in user info.
|
||||
const user = res.user;
|
||||
|
||||
setCurrUser(user);
|
||||
|
||||
console.log(user);
|
||||
})
|
||||
.catch((error) => {
|
||||
// Handle Errors here.
|
||||
const errorCode = error.code;
|
||||
const errorMessage = error.message;
|
||||
// The email of the user's account used.
|
||||
const email = error.email;
|
||||
// The AuthCredential type that was used.
|
||||
const credential = GoogleAuthProvider.credentialFromError(error);
|
||||
console.log(error);
|
||||
toast.error("something went wrong");
|
||||
});
|
||||
};
|
||||
|
||||
const logOut = async () => {
|
||||
setLoading(true);
|
||||
|
||||
console.log("logging user out");
|
||||
|
||||
Promise.resolve(await signOut(auth));
|
||||
|
||||
router.push("/");
|
||||
};
|
||||
|
||||
const value = {
|
||||
currUser,
|
||||
signInGoogle,
|
||||
logOut,
|
||||
};
|
||||
|
||||
return (
|
||||
<AuthContext.Provider value={value}>
|
||||
{!loading && children}
|
||||
</AuthContext.Provider>
|
||||
);
|
||||
}
|
||||
|
||||
// custom hook to use the authUserContext and access currUser
|
||||
export function useAuth() {
|
||||
return useContext(AuthContext);
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
import {
|
||||
getAuth,
|
||||
GoogleAuthProvider,
|
||||
onAuthStateChanged,
|
||||
User as FirebaseUser,
|
||||
} from "firebase/auth";
|
||||
import { useRouter } from "next/router";
|
||||
import React, { useContext, useEffect, useState } from "react";
|
||||
import firebaseApp from "../services/firebaseService";
|
||||
import cookie from "js-cookie";
|
||||
import { useSetRecoilState } from "recoil";
|
||||
|
||||
interface ContextInterface {
|
||||
currUser: FirebaseUser | null;
|
||||
}
|
||||
|
||||
const AuthContext = React.createContext<ContextInterface>(
|
||||
{} as ContextInterface
|
||||
);
|
||||
const auth = getAuth(firebaseApp);
|
||||
|
||||
export function AuthProvider({ children }) {
|
||||
const [currUser, setCurrUser] = useState<FirebaseUser | null>(null);
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
useEffect(() => {
|
||||
const unsubscribe = onAuthStateChanged(auth, async (user: FirebaseUser) => {
|
||||
setLoading(true);
|
||||
|
||||
console.log("change in auth");
|
||||
|
||||
if (user) {
|
||||
setCurrUser(user);
|
||||
|
||||
// set the token in the cookies for ssr verification
|
||||
const token = await user.getIdToken();
|
||||
// nookies.set(undefined, "token", token, { path: "/" });
|
||||
cookie.set("auth", token);
|
||||
} else {
|
||||
// nookies.set(undefined, "token", "", { path: "/" });
|
||||
cookie.remove("auth");
|
||||
|
||||
setCurrUser(null);
|
||||
}
|
||||
|
||||
setLoading(false);
|
||||
});
|
||||
|
||||
return unsubscribe;
|
||||
}, []);
|
||||
|
||||
const value: ContextInterface = {
|
||||
currUser,
|
||||
};
|
||||
|
||||
return (
|
||||
<AuthContext.Provider value={value}>
|
||||
{!loading && children}
|
||||
</AuthContext.Provider>
|
||||
);
|
||||
}
|
||||
|
||||
export function useAuth() {
|
||||
return useContext(AuthContext);
|
||||
}
|
||||
@@ -1,333 +0,0 @@
|
||||
import {
|
||||
collection,
|
||||
doc,
|
||||
getFirestore,
|
||||
onSnapshot,
|
||||
orderBy,
|
||||
query,
|
||||
Unsubscribe,
|
||||
where,
|
||||
} from "firebase/firestore";
|
||||
import { useRouter } from "next/router";
|
||||
import React, { useContext, useEffect, useState } from "react";
|
||||
import toast from "react-hot-toast";
|
||||
import Loading from "../components/Loading";
|
||||
import { compareStatus } from "../helpers/userHelper";
|
||||
import { Message } from "../models/message";
|
||||
import Room from "../models/room";
|
||||
import { Team } from "../models/team";
|
||||
import { TeamMember, TeamMemberStatus } from "../models/teamMember";
|
||||
import { User } from "../models/user";
|
||||
import { Collections } from "../services/collections";
|
||||
import TeamService from "../services/teamService";
|
||||
import UserService from "../services/userService";
|
||||
import { useAuth } from "./authContext";
|
||||
|
||||
interface TeamDashboardContextInterface {
|
||||
team: Team;
|
||||
teamMembers: TeamMember[];
|
||||
userTeamMember: TeamMember;
|
||||
|
||||
user: User; // REALTIME - 1
|
||||
|
||||
messagesByTeamMate: Map<string, Message[]>; // REALTIME: string of teammate userid and array of messages - 1
|
||||
allMessages: Message[]; // REALTIME: 1
|
||||
|
||||
teamUsers: User[]; // REALTIME teammates - n team members => n listeners
|
||||
teamUsersMap: {}; // map for easier getting teammate data
|
||||
}
|
||||
|
||||
const TeamDashboardContext =
|
||||
React.createContext<TeamDashboardContextInterface | null>(null);
|
||||
|
||||
// date of yesterday to check if messages are after yesterday
|
||||
const yesterday = new Date();
|
||||
yesterday.setDate(yesterday.getDate() - 1);
|
||||
|
||||
const teamService = new TeamService();
|
||||
const userService = new UserService();
|
||||
const db = getFirestore();
|
||||
|
||||
export function TeamDashboardContextProvider({ children }) {
|
||||
const { currUser } = useAuth();
|
||||
|
||||
const router = useRouter();
|
||||
|
||||
const [loading, setLoading] = useState<Boolean>(true);
|
||||
|
||||
const { teamid } = router.query;
|
||||
|
||||
// this context can only be used if it's a specific route: '/teams'
|
||||
if (!teamid) {
|
||||
router.push("/teams");
|
||||
}
|
||||
|
||||
// update this "global" object to send to children
|
||||
const [value, setValue] = useState<TeamDashboardContextInterface>(
|
||||
{} as TeamDashboardContextInterface
|
||||
);
|
||||
|
||||
// all main data
|
||||
useEffect(() => {
|
||||
var userListener: Unsubscribe;
|
||||
var unsubs: Unsubscribe[] = [] as Unsubscribe[];
|
||||
|
||||
(async function () {
|
||||
try {
|
||||
// SECTION: authentication
|
||||
if (!currUser) {
|
||||
console.log(
|
||||
"not authenticated...routing from dashboard to teams home"
|
||||
);
|
||||
router.push("/teams/login");
|
||||
return;
|
||||
}
|
||||
|
||||
// SECTION: get user details : realtime
|
||||
const returnedUser = await userService.getUser(currUser.uid);
|
||||
|
||||
const docRef = doc(db, Collections.users, currUser.uid);
|
||||
|
||||
userListener = onSnapshot(docRef, (doc) => {
|
||||
const updatedUser = doc.data() as User;
|
||||
|
||||
setValue((prevValue) => ({ ...prevValue, user: updatedUser }));
|
||||
});
|
||||
|
||||
setValue((prevValue) => ({ ...prevValue, user: returnedUser }));
|
||||
|
||||
// SECTION: getting team data and team member information
|
||||
if (typeof teamid !== "string") {
|
||||
console.log("not a proper query with teamid");
|
||||
router.push("/teams");
|
||||
return;
|
||||
}
|
||||
|
||||
// check if the team is a valid team and that user is in it
|
||||
const returnedTeam = await teamService.getTeam(teamid);
|
||||
if (!returnedTeam) {
|
||||
console.log("team doesnt exist");
|
||||
router.push("/teams");
|
||||
return;
|
||||
}
|
||||
setValue((prevValue) => ({ ...prevValue, team: returnedTeam }));
|
||||
|
||||
const returnedTeamMember = await teamService.getTeamMemberByUserId(
|
||||
teamid,
|
||||
currUser.uid
|
||||
);
|
||||
|
||||
// if you are not a member of this team, then get out of here
|
||||
// but have to check through email invite and userid
|
||||
if (
|
||||
returnedTeamMember &&
|
||||
returnedTeamMember.status == TeamMemberStatus.deleted
|
||||
) {
|
||||
console.log("user was deleted from team");
|
||||
router.push("/teams");
|
||||
return;
|
||||
}
|
||||
|
||||
// if there is no team member through user id,
|
||||
// give him last chance and see if he was invited
|
||||
if (!returnedTeamMember) {
|
||||
const invitedTeamMember =
|
||||
await teamService.getTeamMemberByEmailInvite(
|
||||
teamid,
|
||||
currUser.email
|
||||
);
|
||||
|
||||
if (!invitedTeamMember) {
|
||||
console.log("not invited to team either");
|
||||
router.push("/teams");
|
||||
return;
|
||||
}
|
||||
|
||||
// if I am new to the team but I was invited, and this is my first time, then activate me into the team
|
||||
// and proceed with showing the dashboard stuff
|
||||
|
||||
invitedTeamMember.status = TeamMemberStatus.activated;
|
||||
invitedTeamMember.userId = currUser.uid;
|
||||
await teamService.updateTeamMember(invitedTeamMember);
|
||||
|
||||
setValue((prevValue) => ({
|
||||
...prevValue,
|
||||
userTeamMember: invitedTeamMember,
|
||||
}));
|
||||
} else {
|
||||
setValue((prevValue) => ({
|
||||
...prevValue,
|
||||
userTeamMember: returnedTeamMember,
|
||||
}));
|
||||
}
|
||||
|
||||
// SECTION: get all teammembers for team, will have listeners in other subcomponents
|
||||
var teamMembers: TeamMember[] =
|
||||
await teamService.getTeamMembersByTeamId(returnedTeam.id);
|
||||
|
||||
teamMembers = teamMembers.filter(
|
||||
(element) => element.userId != currUser.uid
|
||||
);
|
||||
|
||||
// listeners for all teammates' status
|
||||
if (teamMembers) {
|
||||
teamMembers.map((tmember) => {
|
||||
if (tmember.status == TeamMemberStatus.activated) {
|
||||
const docRef = doc(db, Collections.users, tmember.userId);
|
||||
|
||||
const unsub = onSnapshot(docRef, (doc) => {
|
||||
const updatedteamMateUser = doc.data() as User;
|
||||
|
||||
// update map of team member users
|
||||
setTeamUsersMap((prevMap) => ({
|
||||
...prevMap,
|
||||
[updatedteamMateUser.id]: updatedteamMateUser,
|
||||
}));
|
||||
|
||||
// update array of team member users
|
||||
setTeamUsers((prevTeamUsers) => {
|
||||
const newTeamUsers = prevTeamUsers.filter(
|
||||
(tm) => tm.id != updatedteamMateUser.id
|
||||
);
|
||||
newTeamUsers.push(updatedteamMateUser);
|
||||
|
||||
// order users by status
|
||||
setTeamUsers(newTeamUsers.sort(compareStatus));
|
||||
|
||||
return newTeamUsers;
|
||||
});
|
||||
});
|
||||
|
||||
unsubs.push(unsub);
|
||||
}
|
||||
|
||||
return;
|
||||
});
|
||||
}
|
||||
|
||||
setValue((prevValue) => ({ ...prevValue, teamMembers }));
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
router.push("/");
|
||||
}
|
||||
|
||||
setLoading(false);
|
||||
})();
|
||||
|
||||
return () => {
|
||||
if (userListener) {
|
||||
userListener();
|
||||
}
|
||||
|
||||
unsubs.forEach((unsub) => {
|
||||
unsub();
|
||||
});
|
||||
};
|
||||
}, []);
|
||||
|
||||
const [teamUsers, setTeamUsers] = useState<User[]>([]);
|
||||
const [teamUsersMap, setTeamUsersMap] = useState<{}>({});
|
||||
|
||||
const [allMessages, setAllMessages] = useState<Message[]>([]);
|
||||
const [messagesByTeamMate, setMessagesByTeamMate] = useState<
|
||||
Map<string, Message[]>
|
||||
>(new Map());
|
||||
|
||||
// SECTION: REALTIME listener for all incoming messages
|
||||
useEffect(() => {
|
||||
// todo for new messages, change document.title
|
||||
|
||||
if (!currUser) {
|
||||
console.log("not authenticated...routing from dashboard to teams home");
|
||||
router.push("/teams/login");
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* QUERY:
|
||||
* - last 24 hours only
|
||||
* - any message that I have sent or received: relevant messages
|
||||
* - order by: date desc
|
||||
*/
|
||||
const q = query(
|
||||
collection(db, Collections.audioMessages),
|
||||
where("senderReceiver", "array-contains", currUser.uid),
|
||||
where("createdDate", ">", yesterday),
|
||||
orderBy("createdDate", "asc")
|
||||
);
|
||||
|
||||
// return unsubscribe
|
||||
return onSnapshot(q, (snapshot) => {
|
||||
snapshot.docChanges().forEach((change) => {
|
||||
// no need to process results again, just append to arrays instead
|
||||
// messages won't be deleted or updated really
|
||||
if (change.type === "added") {
|
||||
let newMessage = change.doc.data() as Message;
|
||||
|
||||
// update all messages array
|
||||
setAllMessages((prevMessages) => [newMessage, ...prevMessages]);
|
||||
|
||||
// update map of teammate to relevant messages
|
||||
setMessagesByTeamMate((prevMap) => {
|
||||
// if the map contains the teammate userid already, then cool, just unshift to that array
|
||||
var newMap: Map<string, Message[]> = new Map(
|
||||
prevMap.set("dummy", [] as Message[])
|
||||
);
|
||||
if (prevMap.has(newMessage.receiverUserId)) {
|
||||
newMap.set(newMessage.receiverUserId, [
|
||||
newMessage,
|
||||
...prevMap.get(newMessage.receiverUserId),
|
||||
]);
|
||||
} // if this is the first relevant message linked to this receiver,
|
||||
//then create a new array
|
||||
else {
|
||||
newMap.set(newMessage.receiverUserId, [newMessage]);
|
||||
}
|
||||
|
||||
// todo: if I am the receiver, still want to put it in the right conversation
|
||||
if (newMessage.receiverUserId == currUser.uid) {
|
||||
if (prevMap.has(newMessage.senderUserId)) {
|
||||
newMap.set(newMessage.senderUserId, [
|
||||
newMessage,
|
||||
...prevMap.get(newMessage.senderUserId),
|
||||
]);
|
||||
} else {
|
||||
newMap.set(newMessage.senderUserId, [newMessage]);
|
||||
}
|
||||
}
|
||||
|
||||
return newMap;
|
||||
});
|
||||
}
|
||||
if (change.type === "modified") {
|
||||
console.log("Modified message: ", change.doc.data());
|
||||
}
|
||||
if (change.type === "removed") {
|
||||
console.log("Removed message: ", change.doc.data());
|
||||
}
|
||||
});
|
||||
});
|
||||
}, []);
|
||||
|
||||
if (loading) {
|
||||
return <Loading />;
|
||||
}
|
||||
|
||||
const transformedValue = {
|
||||
...value,
|
||||
allMessages,
|
||||
messagesByTeamMate,
|
||||
teamUsers,
|
||||
teamUsersMap,
|
||||
};
|
||||
|
||||
return (
|
||||
<TeamDashboardContext.Provider value={transformedValue}>
|
||||
{children}
|
||||
</TeamDashboardContext.Provider>
|
||||
);
|
||||
}
|
||||
|
||||
export function useTeamDashboardContext() {
|
||||
return useContext(TeamDashboardContext);
|
||||
}
|
||||
Reference in New Issue
Block a user