-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add component for downloading the static report
Signed-off-by: ibolton336 <ibolton@redhat.com>
- Loading branch information
1 parent
5d784c8
commit b50ce0a
Showing
5 changed files
with
167 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
...pp/pages/applications/components/application-detail-drawer/components/download-button.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import React, { useState } from "react"; | ||
import { APPLICATIONS } from "@app/api/rest"; | ||
import { Alert, Button } from "@patternfly/react-core"; | ||
import spacing from "@patternfly/react-styles/css/utilities/Spacing/spacing"; | ||
import { Application } from "@app/api/models"; | ||
import { Spinner } from "@patternfly/react-core"; | ||
import { useDownloadStaticReport } from "@app/queries/download"; | ||
|
||
export enum MimeType { | ||
TAR = "tar", | ||
YAML = "yaml", | ||
} | ||
function DownloadButton({ | ||
application, | ||
mimeType, | ||
}: { | ||
application: Application; | ||
mimeType: MimeType; | ||
}) { | ||
const downloadMutation = useDownloadStaticReport(); | ||
|
||
const handleDownload = async () => { | ||
downloadMutation.mutate({ | ||
applicationId: application.id, | ||
mimeType: mimeType, | ||
}); | ||
}; | ||
|
||
return ( | ||
<> | ||
{downloadMutation.isLoading ? ( | ||
<Spinner size="sm" /> | ||
) : downloadMutation.isError ? ( | ||
<Alert variant="warning" isInline title={"Error downloading report"}> | ||
<p>{"An error has occurred. Try to download again."}</p> | ||
</Alert> | ||
) : ( | ||
<> | ||
<Button | ||
onClick={handleDownload} | ||
id={`download-${mimeType}-button`} | ||
variant="link" | ||
className={spacing.pXs} | ||
> | ||
{mimeType === MimeType.YAML ? "YAML" : "Report"} | ||
</Button> | ||
</> | ||
)} | ||
</> | ||
); | ||
} | ||
|
||
export default DownloadButton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import axios from "axios"; | ||
import { saveAs } from "file-saver"; | ||
import { APPLICATIONS } from "@app/api/rest"; | ||
import { useMutation } from "@tanstack/react-query"; | ||
import { MimeType } from "@app/pages/applications/components/application-detail-drawer/components/download-button"; | ||
|
||
interface DownloadOptions { | ||
applicationId: number; | ||
mimeType: MimeType; | ||
} | ||
|
||
export const downloadStaticReport = async ({ | ||
applicationId, | ||
mimeType, | ||
}: DownloadOptions): Promise<void> => { | ||
let acceptHeader = "application/x-tar"; | ||
|
||
switch (mimeType) { | ||
case MimeType.YAML: | ||
acceptHeader = "application/x-yaml"; | ||
break; | ||
case MimeType.TAR: | ||
default: | ||
acceptHeader = "application/x-tar"; | ||
} | ||
|
||
try { | ||
const response = await axios.get( | ||
`${APPLICATIONS}/${applicationId}/analysis/report`, | ||
{ | ||
responseType: "blob", | ||
headers: { | ||
Accept: acceptHeader, | ||
}, | ||
} | ||
); | ||
|
||
if (response.status !== 200) { | ||
throw new Error("Network response was not ok when downloading file."); | ||
} | ||
|
||
const blob = new Blob([response.data]); | ||
saveAs( | ||
blob, | ||
`analysis-report-app-${applicationId}.${acceptHeader.split("-")[1]}` | ||
); | ||
} catch (error) { | ||
console.error("There was an error downloading the file:", error); | ||
throw error; | ||
} | ||
}; | ||
|
||
export const useDownloadStaticReport = () => { | ||
return useMutation(downloadStaticReport); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters