-
Notifications
You must be signed in to change notification settings - Fork 8
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
Waste water data submission #448
Conversation
NEXT_PUBLIC_ENVIRONMENTAL_SUBMISSION_API_URL= | ||
NEXT_PUBLIC_ENVIRONMENTAL_SUBMISSION_CATEGORY_ID= |
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.
environment variables to set up Submission service
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.
what's a category id in this context?
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.
Lyric data category ID. Lyric is built to manage data of multiple data-dictionaries and multiple submitting projects, so when submitting we need to identify both which data category (data-dictionary) we are submitting for, and what our project ID is. Not sure if we have a separate env var for the project ID or not...
59b5097
to
b320bb9
Compare
@@ -48,7 +48,7 @@ const DropZone = ({ | |||
isDragActive, | |||
// isFileTooLarge, | |||
} = useDropzone({ | |||
accept: '.fa,.gz,.fasta,.tsv,text/tab-separated-values', | |||
accept: '.csv', |
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.
would it be valid/desirable to also accept tsv
?
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.
Do you mean to convert it to .csv
for them? Or is this expecting that they may submit .tsv
in the future and we should accept that?
6cba35c
to
d050c70
Compare
d050c70
to
ba39caa
Compare
|
||
import NewSubmissions from './NewSubmissions'; | ||
import PreviousSubmissions from './PreviousSubmissions'; | ||
import PageContent from './PageContent'; |
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.
Did we name this component? It is an extremely vague component name.
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.
Great stuff, lots of good work here. No major problems found so I am approving, but I left a handful of comments mostly around type management.
// TODO: Verify if the user's session permissions allow them | ||
// to upload environmental data to this organization. |
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.
We have userHasWriteScopes
flag in the surrounding if statement... is this an additional check for the specific organization the data is submitted for?
case 'INVALID_FILE_EXTENSION': | ||
case 'FILE_READ_ERROR': | ||
case 'UNRECOGNIZED_HEADER': | ||
case 'MISSING_REQUIRED_HEADER': { |
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.
Should we communicate the specific error?
Waste water metadata is submitted as a <span className="code">.csv</span> file .The file | ||
name must match the Study name for the Submission. Multiple files are accepted. |
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.
Good opportunity for an example valid file name?
// TODO: Fetch list of previous submisions | ||
// setPreviousSubmissions(); |
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.
Use tickets not TODOs?
@@ -0,0 +1,81 @@ | |||
/* | |||
* | |||
* Copyright (c) 2021 The Ontario Institute for Cancer Research. All rights reserved |
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.
Copyright date
return parsedStream && JSON.parse(parsedStream); | ||
}) | ||
.catch((error: Error | string) => { | ||
console.log(`Offending stream at ${origin}`, stream); |
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.
This error log message is not very helpful. If I try to upload something and the log says "Offending stream" I will have more questions than answers. At least the text is unique enough that we can find our way back to the source code, but an error message with more context would be better.
const getErrorDetailsMessage = ( | ||
errors: ErrorDetails[], | ||
index: number, | ||
): { status: 'ERROR' | 'PROCESSING' | 'COMPLETE' | 'QUEUED'; message: string } => { |
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.
Return type is a bit weird... This function could be returning { status: 'PROCESSING' } | { status: 'ERROR'; message: string }
. We never return status 'COMPLETE' or 'QUEUED' and we return an empty message sometimes...
If we do intend to have the status return any of the statuses, we should type this like status: UploadStatusType
* @param param0 | ||
* @returns | ||
*/ | ||
const submitData = async ({ body }: { body: FormData }) => { |
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.
This is returning Promise<any>
. Can we clean that typing up at all?
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.
As a general rule, we don't want to use the suffix Type
in our types. Same as we don't call our variables things like messageString
or countInt
. Aim for descriptive names so that when a function says it requires an UploadData
parameter I know to pass the actual object with UploadData and not an UploadDataType
type definition.
export type DataRecordValue = | ||
| string | ||
| string[] | ||
| number | ||
| number[] | ||
| boolean | ||
| boolean[] | ||
| undefined; | ||
export type DataRecord = Record<string, DataRecordValue>; |
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.
Looks like we are replicating some TSV parsing types that are used in lectern/lyric. Might be a sign we want a separate package dedicated to tabular data file work.
Summary
To be able to prepare, validate and submit environmental Data.
Details
environmental
orclinical
submission pages.components/pages/submission/environmental
and Clinical are incomponents/pages/submission/clinical
submission-service
to upload, commit and keep track ofstatus
andsystemIds
of records within the Submissionsubmission-service
to get Historial of previous submissions