-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: add AWS S3 bucket as "Send" destination for staging envs only #2999
Merged
Merged
Changes from all commits
Commits
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 |
---|---|---|
|
@@ -57,6 +57,14 @@ const SendComponent: React.FC<Props> = (props) => { | |
}, | ||
]; | ||
|
||
// Show S3 option on staging only | ||
if (process.env.REACT_APP_ENV !== "production") { | ||
options.push({ | ||
value: Destination.S3, | ||
label: "Upload to AWS S3 bucket", | ||
}); | ||
} | ||
|
||
const changeCheckbox = (value: Destination) => (_checked: any) => { | ||
let newCheckedValues: Destination[]; | ||
|
||
|
@@ -76,7 +84,8 @@ const SendComponent: React.FC<Props> = (props) => { | |
|
||
// Show warnings on selection of BOPS or Uniform for likely unsupported services | ||
// Don't actually restrict selection because flowSlug matching is imperfect for some valid test cases | ||
const flowSlug = window.location.pathname?.split("/")?.[1]; | ||
const teamSlug = window.location.pathname?.split("/")?.[1]; | ||
const flowSlug = window.location.pathname?.split("/")?.[2]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
if ( | ||
value === Destination.BOPS && | ||
newCheckedValues.includes(value) && | ||
|
@@ -94,10 +103,21 @@ const SendComponent: React.FC<Props> = (props) => { | |
if ( | ||
value === Destination.Uniform && | ||
newCheckedValues.includes(value) && | ||
flowSlug !== "apply-for-a-lawful-development-certificate" | ||
flowSlug !== "apply-for-a-lawful-development-certificate" && | ||
!["buckinghamshire", "lambeth", "southwark"].includes(teamSlug) | ||
) { | ||
alert( | ||
"Uniform is only enabled for Bucks, Lambeth and Southwark to accept Lawful Development Certificate submissions. Please do not select if you're building another type of submission service!", | ||
); | ||
} | ||
|
||
if ( | ||
value === Destination.S3 && | ||
newCheckedValues.includes(value) && | ||
teamSlug !== "barnet" | ||
) { | ||
alert( | ||
"Uniform only accepts Lawful Development Certificate submissions. Please do not select if you're building another type of submission service!", | ||
"AWS S3 uploads are currently being prototyped with Barnet only. Please do not select this option for other councils yet.", | ||
); | ||
} | ||
}; | ||
|
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.
Rather than introduce a feature-flag here which we'll then have to communicate to Editors how to use - I figure we can just only display this option on non-prod environments at first? It also throws an alert with warning message if anyone outside of Barnet selects 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.
Yeah this works well I think 👍