misc: moved get project secrets error handling to hook

This commit is contained in:
Sheen Capadngan
2024-07-31 16:48:48 +08:00
parent e6b6de5e8e
commit 1866ce4240
2 changed files with 11 additions and 18 deletions

View File

@@ -108,6 +108,16 @@ export const useGetProjectSecrets = ({
enabled: Boolean(workspaceId && environment) && (options?.enabled ?? true),
queryKey: secretKeys.getProjectSecret({ workspaceId, environment, secretPath }),
queryFn: async () => fetchProjectSecrets({ workspaceId, environment, secretPath }),
onError: (error) => {
if (axios.isAxiosError(error)) {
const serverResponse = error.response?.data as { message: string };
createNotification({
title: "Error fetching secrets",
type: "error",
text: serverResponse.message
});
}
},
select: ({ secrets }) => mergePersonalSecrets(secrets)
});

View File

@@ -4,7 +4,6 @@ import { useRouter } from "next/router";
import { subject } from "@casl/ability";
import { faArrowDown, faArrowUp } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import axios from "axios";
import NavHeader from "@app/components/navigation/NavHeader";
import { createNotification } from "@app/components/notifications";
@@ -94,12 +93,7 @@ export const SecretMainPage = () => {
}, [isWorkspaceLoading, currentWorkspace, environment, router.isReady]);
// fetch secrets
const {
data: secrets,
isLoading: isSecretsLoading,
isError: isErrorFetchingSecrets,
error: fetchSecretsError
} = useGetProjectSecrets({
const { data: secrets, isLoading: isSecretsLoading } = useGetProjectSecrets({
environment,
workspaceId,
secretPath,
@@ -108,17 +102,6 @@ export const SecretMainPage = () => {
}
});
if (isErrorFetchingSecrets) {
if (axios.isAxiosError(fetchSecretsError)) {
const serverResponse = fetchSecretsError.response?.data as { message: string };
createNotification({
title: "Error fetching secrets",
type: "error",
text: serverResponse.message
});
}
}
// fetch folders
const { data: folders, isLoading: isFoldersLoading } = useGetProjectFolders({
projectId: workspaceId,