2021-02-05 21:32:38 -05:00
|
|
|
import React, { useState, useEffect, useContext } from "react";
|
2021-06-03 01:31:18 -04:00
|
|
|
import { PartyState } from "../components/party/PartyState";
|
|
|
|
import Session from "../network/Session";
|
2020-12-31 01:56:51 -05:00
|
|
|
|
2021-06-03 01:31:18 -04:00
|
|
|
const PartyContext = React.createContext<PartyState | undefined>(undefined);
|
2020-12-31 01:56:51 -05:00
|
|
|
|
2021-06-03 01:31:18 -04:00
|
|
|
export function PartyProvider({ session, children }: { session: Session, children: any}) {
|
2020-12-31 01:56:51 -05:00
|
|
|
const [partyState, setPartyState] = useState({});
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-06-03 01:31:18 -04:00
|
|
|
function handleSocketPartyState(partyState: PartyState) {
|
2020-12-31 01:56:51 -05:00
|
|
|
if (partyState) {
|
|
|
|
const { [session.id]: _, ...otherMembersState } = partyState;
|
|
|
|
setPartyState(otherMembersState);
|
|
|
|
} else {
|
|
|
|
setPartyState({});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 20:44:56 -05:00
|
|
|
session.socket?.on("party_state", handleSocketPartyState);
|
2020-12-31 01:56:51 -05:00
|
|
|
|
|
|
|
return () => {
|
2020-12-31 20:44:56 -05:00
|
|
|
session.socket?.off("party_state", handleSocketPartyState);
|
2020-12-31 01:56:51 -05:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
|
|
|
<PartyContext.Provider value={partyState}>{children}</PartyContext.Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-02-05 21:32:38 -05:00
|
|
|
export function useParty() {
|
|
|
|
const context = useContext(PartyContext);
|
|
|
|
if (context === undefined) {
|
|
|
|
throw new Error("useParty must be used within a PartyProvider");
|
|
|
|
}
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
2020-12-31 01:56:51 -05:00
|
|
|
export default PartyContext;
|