plane/apps/app/contexts/user.context.tsx
Aaryan Khandelwal 96ad751e11
style: new workspace dashboard design (#454)
* style: workspace dashboard

* feat: activity graph
2023-03-16 01:36:21 +05:30

38 lines
1003 B
TypeScript

import React, { createContext, ReactElement } from "react";
// swr
import useSWR, { KeyedMutator } from "swr";
// services
import userService from "services/user.service";
// constants
import { CURRENT_USER } from "constants/fetch-keys";
// types
import type { IUser } from "types";
interface IUserContextProps {
user?: IUser;
isUserLoading: boolean;
mutateUser: KeyedMutator<IUser>;
}
export const UserContext = createContext<IUserContextProps>({} as IUserContextProps);
export const UserProvider = ({ children }: { children: ReactElement }) => {
// API to fetch user information
const { data, error, mutate } = useSWR<IUser>(CURRENT_USER, () => userService.currentUser(), {
shouldRetryOnError: false,
});
return (
<UserContext.Provider
value={{
user: error ? undefined : data?.user,
isUserLoading: Boolean(data?.user === undefined && error === undefined),
mutateUser: mutate,
}}
>
{children}
</UserContext.Provider>
);
};