aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/IfLoggedIn
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-02-08 09:35:45 +0100
committerGitHub <noreply@github.com>2021-02-08 09:35:45 +0100
commitef7a0f1b11c8e44a44f1ec23a68cab2adefad36c (patch)
treee6f345e4968f59c8f521d27f1caebff076a40143 /webui/src/components/IfLoggedIn
parent0eb4a5907118f5cad6e4dea64a6ca87aad0247ee (diff)
parent29ea8df4259921f1789e0e6d584767fc5f54b284 (diff)
downloadgit-bug-ef7a0f1b11c8e44a44f1ec23a68cab2adefad36c.tar.gz
Merge pull request #555 from claudioantonio/master
Commit for #541
Diffstat (limited to 'webui/src/components/IfLoggedIn')
-rw-r--r--webui/src/components/IfLoggedIn/IfLoggedIn.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/webui/src/components/IfLoggedIn/IfLoggedIn.tsx b/webui/src/components/IfLoggedIn/IfLoggedIn.tsx
new file mode 100644
index 00000000..2476aad8
--- /dev/null
+++ b/webui/src/components/IfLoggedIn/IfLoggedIn.tsx
@@ -0,0 +1,14 @@
+import React from 'react';
+
+import { useCurrentIdentityQuery } from '../CurrentIdentity/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;