pashto-grammar/src/user-context.tsx

52 lines
1.3 KiB
TypeScript
Raw Normal View History

2021-09-18 13:11:08 +00:00
import React, { useState, createContext, useEffect } from "react"
import { AT, getUser } from "@lingdocs/lingdocs-main";
2021-09-18 13:19:44 +00:00
import { CronJob } from "cron";
2021-09-18 04:43:00 +00:00
const UserContext = createContext<
2021-09-18 13:11:08 +00:00
{
user: AT.LingdocsUser | undefined,
setUser: React.Dispatch<React.SetStateAction<AT.LingdocsUser | undefined>>,
pullUser: () => void,
}
2021-09-18 04:43:00 +00:00
| undefined
>(undefined);
2021-09-18 13:19:44 +00:00
// TODO: persisting user in local state
2021-09-18 04:43:00 +00:00
function UserProvider({ children }: any) {
const [user, setUser] = useState<AT.LingdocsUser | undefined>(undefined);
2021-09-18 13:11:08 +00:00
function pullUser() {
2021-09-18 13:19:44 +00:00
console.log("pulling user...");
2021-09-18 13:11:08 +00:00
getUser().then((user) => {
setUser(user === "offline" ? undefined : user);
}).catch(console.error);
}
2021-09-18 13:19:44 +00:00
const checkUserCronJob = new CronJob("1/30 * * * * *", () => {
pullUser();
});
2021-09-18 13:11:08 +00:00
useEffect(() => {
pullUser();
2021-09-18 13:19:44 +00:00
checkUserCronJob.start();
return () => {
checkUserCronJob.stop();
}
// eslint-disable-next-line
2021-09-18 13:11:08 +00:00
}, []);
return <UserContext.Provider value={{ user, setUser, pullUser }}>
2021-09-18 04:43:00 +00:00
{children}
</UserContext.Provider>;
}
function useUser() {
const context = React.useContext(UserContext)
if (context === undefined) {
throw new Error('useCount must be used within a CountProvider')
}
return context;
}
export { UserProvider, useUser };