mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import React from "react";
|
|
import { isAxiosError } from "axios";
|
|
|
|
import { getErrorReason } from "interfaces/errors";
|
|
import { LEARN_MORE_ABOUT_BASE_LINK } from "utilities/constants";
|
|
|
|
import CustomLink from "components/CustomLink";
|
|
|
|
import { generateSecretErrMsg } from "pages/SoftwarePage/helpers";
|
|
|
|
const DEFAULT_ERROR_MESSAGE = "Couldn't add. Please try again.";
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
export const getErrorMessage = (err: unknown) => {
|
|
const isTimeout =
|
|
isAxiosError(err) &&
|
|
(err.response?.status === 504 || err.response?.status === 408);
|
|
const reason = getErrorReason(err);
|
|
|
|
if (isTimeout) {
|
|
return "Couldn't add. Request timeout. Please make sure your server and load balancer timeout is long enough.";
|
|
} else if (reason.includes("Secret variable")) {
|
|
return generateSecretErrMsg(err);
|
|
} else if (reason.includes("Unable to extract necessary metadata")) {
|
|
return (
|
|
<>
|
|
Couldn't add. Unable to extract necessary metadata.{" "}
|
|
<CustomLink
|
|
url={`${LEARN_MORE_ABOUT_BASE_LINK}/package-metadata-extraction`}
|
|
text="Learn more"
|
|
newTab
|
|
variant="flash-message-link"
|
|
/>
|
|
</>
|
|
);
|
|
} else if (reason.includes("not a valid .tar.gz archive")) {
|
|
return (
|
|
<>
|
|
This is not a valid .tar.gz archive.{" "}
|
|
<CustomLink
|
|
url={`${LEARN_MORE_ABOUT_BASE_LINK}/tarball-archives`}
|
|
text="Learn more"
|
|
newTab
|
|
variant="flash-message-link"
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
return reason || DEFAULT_ERROR_MESSAGE;
|
|
};
|