aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/components/IfLoggedIn/IfLoggedIn.tsx
blob: 965135d90698fe8bfba721d0337b1e7681aee9cf (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                               
 
                                                                                
 
                                                 




                                                                       
                           


                          
import * as React from 'react';

import { useCurrentIdentityQuery } from '../Identity/CurrentIdentity.generated';

type Props = { children: () => React.ReactNode };
const IfLoggedIn = ({ children }: Props) => {
  const { loading, error, data } = useCurrentIdentityQuery();

  if (error || loading || !data?.repository?.userIdentity) return null;

  return <>{children()}</>;
};

export default IfLoggedIn;