-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AB#263: Prepare a user interface for archiving reports
- Loading branch information
1 parent
0994cca
commit 2bce40f
Showing
4 changed files
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import Messages from "components/Messages" | ||
import { exportResults } from "exportUtils" | ||
import React, { useState } from "react" | ||
import { Button } from "react-bootstrap" | ||
|
||
const ArchiveCenter = () => { | ||
const searchQueryParams = { status: "ACTIVE" } | ||
const queryTypes = ["REPORTS"] | ||
|
||
const [error, setError] = useState(null) | ||
|
||
return ( | ||
<React.Fragment> | ||
<Messages error={error} /> | ||
<Button | ||
variant="outline-secondary" | ||
onClick={() => { | ||
exportResults(searchQueryParams, queryTypes, "pdf", setError) | ||
}} | ||
> | ||
Download Reports | ||
</Button> | ||
</React.Fragment> | ||
) | ||
} | ||
|
||
export default ArchiveCenter |
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
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