forked from HHS/Head-Start-TTADP
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display reports #150
Merged
Merged
Display reports #150
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
cedfeb0
Landing page checkpoint commit
kryswisnaskas a716599
Added sorting
kryswisnaskas a2bd6c0
Merge branch 'main' of https://github.com/adhocteam/Head-Start-TTADP …
kryswisnaskas 69ccf13
Merge branch 'main' of https://github.com/adhocteam/Head-Start-TTADP …
kryswisnaskas 75f7639
Added tests, empty report
kryswisnaskas 6431825
Correct merge error
kryswisnaskas 6de8f8e
Fix merge issue
kryswisnaskas 67566d3
Fix lint errors
kryswisnaskas 4b6a542
Remove unused module
kryswisnaskas 7d9805f
Merge branch 'main' of https://github.com/adhocteam/Head-Start-TTADP …
kryswisnaskas 95b3a38
Fix merge conflict
kryswisnaskas 04bba1c
Fix lint errors
kryswisnaskas e4dae31
Added more tests
kryswisnaskas 158b2cd
Fix lint errors
kryswisnaskas a99fe60
Merge branch 'main' into kw-display-reports
kryswisnaskas 664b52f
Merge branch 'js-282-fix-cucumber-tests' of https://github.com/adhoct…
kryswisnaskas 0561da4
Merge branch 'kw-display-reports' of https://github.com/adhocteam/Hea…
kryswisnaskas a21b9d2
Modified cucumber test
kryswisnaskas f106cc2
Modified cucumber test
kryswisnaskas 55c78db
Fix cucumber test
kryswisnaskas 809a57b
Update open api doc
kryswisnaskas 4b8a95d
Add role acronyms to display
kryswisnaskas e4e51ec
Fix new eslint errors
kryswisnaskas 23cf654
Fix new eslint errors
kryswisnaskas 253e568
Combine values from multiples
kryswisnaskas 4af7bd8
Remove whitespace to satisfy eslint
kryswisnaskas c3b37b4
Adjust test
kryswisnaskas 1da28b0
Merge branch 'main' of https://github.com/adhocteam/Head-Start-TTADP …
kryswisnaskas ff3b8b5
Remove sorting
kryswisnaskas 6c5e287
Remove blank lines
kryswisnaskas 3d4b1ac
Merge branch 'main' of https://github.com/adhocteam/Head-Start-TTADP …
kryswisnaskas 3d8382b
Fix merge issue
kryswisnaskas 8751dcf
Merge branch 'main' into kw-display-reports
kryswisnaskas 1b1ce8c
Added scrollbars; removed test; modified styles
kryswisnaskas cdc95f1
Merge branch 'kw-display-reports' of https://github.com/adhocteam/Hea…
kryswisnaskas 112ccd6
Update yarn.lock
kryswisnaskas f3881d1
Fix lint errors
kryswisnaskas c1f7ba4
Merge branch 'main' into kw-display-reports
kryswisnaskas 9189f61
Merge branch 'main' into kw-display-reports
rahearn c0394f1
Merge branch 'main' into kw-display-reports
kryswisnaskas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Feature: TTA Smarthub Activity Report | ||
Scenario: Report can be filled out | ||
Given I am logged in | ||
And I am on the activity reports page | ||
And I am on the landing page | ||
Then I see "New activity report for Region 14" message | ||
When I select "Non-Grantee" | ||
Then I see "QRIS System" as an option in the "Non-grantee name(s)" multiselect |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { Grid } from '@trussworks/react-uswds'; | ||
|
||
function LandingLayout({ children }) { | ||
return ( | ||
<Grid row> | ||
<Grid tablet={{ col: true }} className="smart-hub--fit-content">{children}</Grid> | ||
</Grid> | ||
); | ||
} | ||
|
||
LandingLayout.propTypes = { | ||
children: PropTypes.node.isRequired, | ||
}; | ||
|
||
export default LandingLayout; |
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,17 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { GridContainer } from '@trussworks/react-uswds'; | ||
|
||
function MainLayout({ children }) { | ||
return ( | ||
<GridContainer> | ||
{children} | ||
</GridContainer> | ||
); | ||
} | ||
|
||
MainLayout.propTypes = { | ||
children: PropTypes.node.isRequired, | ||
}; | ||
|
||
export default MainLayout; |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this need a
GridContainer
around it?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea was to get away from the
GridContainer
due to layout constraints.