I have tried creating custom hooks to call the DataProvider getOne() method to fetch the permissions based on the username I get from the authProvider after login, but the constant requirement of calling the hook from the body of the function throws an error because I call it from a method.
Where is the permissions coming from? How is 'ra-core' calling this getPermissions()? Why is there an error called .then() not a function in getPermissions()?
There needs to be better documentation on this aspect of the AuthProvider to help even experienced react-admin folks. Just saying.
Hook to fetch permissions:
const useFetchPermissions = ({ emailId }) => {
  const dataProvider = useDataProvider();
  const [loading, setLoading] = useState(true);
  const [error, setError] = useState();
  console.log("fetching permissions");
  const [permissions, setPermissions] = useState();
  useEffect(() => {
    dataProvider
      .getOne("users/permissions", { id: emailId })
      .then(({ data }) => {
        setPermissions(data);
        setLoading(false);
      })
      .catch((error) => {
        setError(error);
        setLoading(false);
      });
  }, []);
  if (loading) return <Loading />;
  if (error) return <Error />;
  if (!permissions) return null;
  return permissions;
};
AuthPRovider login method:
login: () => {
    /* ... */
    console.log("Logging in..");
    //localStorage.setItem("permissions", "CREATE_ITEM");
    return tfsAuthProvider.login();
AuthProvider getPermissions method:
getPermissions: () => {
    const role = localStorage.getItem("permissions");
    console.log(role);
    //useFetchPermissions(authProvider.getAccount().userName); throw error
    return role === null ? Promise.resolve() : role;
  },
App.js dataProvider(url,useHttpClient) calls this:
const useHttpClient = (url, options = {}) => {
  if (!options.headers) {
    options.headers = new Headers({ Accept: "application/json" });
  }
  // add your own headers here
  //options.headers.set("Access-Control-Allow-Origin", "true");
  //const token = localStorage.getItem("token");
  //const userName = authProvider.getAccount().userName;
  //const [permissions, setPermissions] = useState();
  //const permissions = useFetchPermissions(userName);  throws error
  //localStorage.setItem("permissions", permissions);
  options.headers.set(
    "Authorization",
    `Bearer ${authProvider.getAccount().userName}`
  );
  return fetchUtils.fetchJson(url, options);
};
				
                        
Thanks to @KiaKaha 's answer I was able to implement something that worked for me that's a workaround the exceptions of react-hooks.
EDIT: Here's an improved solution
dataProvider.getOne()method is a react-hook and hence I was not able to call it. So usedfetch(). Used environment variable to fetch the URL that dataProvider uses. (This still stays true).<-- Everything after this is unnecessary , may be helpful to solve other problems.-->
The
responsecould not be converted to string directly so I used theresponse.body.getReader()and UTF8 decoder to decode the result ofread().Hope this helps anyone coming through this rabbit hole.
More on Readable Stream Objects - https://developer.mozilla.org/en-US/docs/Web/API/Streams_API/Using_readable_streams
More on the login implementation - https://marmelab.com/react-admin/Authorization.html