merlyn/frontend/src/hooks/useCommunityHubAuth.js
Sean Hatfield 96b532a0f4
Publish system prompts to hub (#3976)
* implement ui for publish system prompt to hub

* rework ui + add backend to upload to hub

* add success modal view + publish menu item + translations

* normalize translations

* refactor PublishEntityModal + add hook
for hub auth

* normalize translations

* fix ui for success screen

* refactor, auth checks, UI/UX, and naming conventions to be more clear

* move components to CommunityHub folder + small ui tweak

---------

Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
2025-06-16 09:59:38 -07:00

31 lines
987 B
JavaScript

import { useState, useEffect } from "react";
import CommunityHub from "@/models/communityHub";
/**
* Hook to check if the user is authenticated with the community hub by checking
* the user defined connection key in the settings.
* @returns {{isAuthenticated: boolean, loading: boolean}} An object containing the authentication status and loading state.
*/
export function useCommunityHubAuth() {
const [isAuthenticated, setIsAuthenticated] = useState(false);
const [loading, setLoading] = useState(true);
useEffect(() => {
async function checkCommunityHubAuth() {
setLoading(true);
try {
const { connectionKey } = await CommunityHub.getSettings();
setIsAuthenticated(!!connectionKey);
} catch (error) {
console.error("Error checking hub auth:", error);
setIsAuthenticated(false);
} finally {
setLoading(false);
}
}
checkCommunityHubAuth();
}, []);
return { isAuthenticated, loading };
}