fleet/frontend/pages/ManageControlsPage/Scripts/components/ScriptUploader/ScriptUploader.tsx

67 lines
1.9 KiB
TypeScript
Raw Normal View History

2023-10-10 22:00:45 +00:00
import React, { useContext, useState } from "react";
import { AxiosResponse } from "axios";
import { IApiError } from "interfaces/errors";
import { NotificationContext } from "context/notification";
import scriptAPI from "services/entities/scripts";
import FileUploader from "components/FileUploader";
2023-10-10 22:00:45 +00:00
import { getErrorMessage } from "./helpers";
const baseClass = "script-uploader";
interface IScriptPackageUploaderProps {
currentTeamId: number;
onUpload: () => void;
}
const ScriptPackageUploader = ({
currentTeamId,
onUpload,
}: IScriptPackageUploaderProps) => {
const { renderFlash } = useContext(NotificationContext);
const [showLoading, setShowLoading] = useState(false);
const onUploadFile = async (files: FileList | null) => {
if (!files || files.length === 0) {
return;
}
const file = files[0];
setShowLoading(true);
try {
await scriptAPI.uploadScript(file, currentTeamId);
renderFlash("success", "Successfully uploaded!");
onUpload();
} catch (e) {
const error = e as AxiosResponse<IApiError>;
const apiErrMessage = getErrorMessage(error);
const renderErrMessage = apiErrMessage.includes(
"File type not supported. Only .sh and .ps1 file type is allowed."
)
? // per https://github.com/fleetdm/fleet/issues/14752#issuecomment-1809927441
"The file should be .sh or .ps1 file."
: apiErrMessage;
renderFlash("error", `Couldn't upload. ${renderErrMessage}`);
2023-10-10 22:00:45 +00:00
} finally {
setShowLoading(false);
}
};
return (
<FileUploader
className={baseClass}
graphicName={["file-sh", "file-ps1"]}
message="Shell (.sh) for macOS or PowerShell (.ps1) for Windows"
additionalInfo="Script will run with “#!/bin/sh”on macOS."
accept=".sh,.ps1"
2023-10-10 22:00:45 +00:00
onFileUpload={onUploadFile}
isLoading={showLoading}
/>
);
};
export default ScriptPackageUploader;