plane/apps/app/contexts/user.context.tsx
Aaryan Khandelwal 725c9375ea
fix: onboarding loop (#775)
* fix: dashboard workspace activity mutation

* fix: onboarding loop
2023-04-11 12:25:21 +05:30

42 lines
1.2 KiB
TypeScript

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