Skip to content
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

Merged
merged 11 commits into from
Jan 13, 2025
Merged

Conversation

leoraba
Copy link
Contributor

@leoraba leoraba commented Dec 5, 2024

Summary

To be able to prepare, validate and submit environmental Data.

Details

  • Updated Next.js dynamic routes to load environmental or clinical submission pages.
  • Created 3 new environment variables to configure Environmental Submission Service.
  • Environmental submission React components are in a folder components/pages/submission/environmental and Clinical are in components/pages/submission/clinical
  • Using available endpoints from submission-service to upload, commit and keep track of status and systemIds of records within the Submission
  • Using available endpoint from submission-service to get Historial of previous submissions

Comment on lines +32 to +33
NEXT_PUBLIC_ENVIRONMENTAL_SUBMISSION_API_URL=
NEXT_PUBLIC_ENVIRONMENTAL_SUBMISSION_CATEGORY_ID=
Copy link
Contributor Author

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

Copy link
Contributor

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?

Copy link

@joneubank joneubank Jan 3, 2025

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...

@leoraba leoraba force-pushed the feat/environmental-submission branch from 59b5097 to b320bb9 Compare December 5, 2024 21:28
@@ -48,7 +48,7 @@ const DropZone = ({
isDragActive,
// isFileTooLarge,
} = useDropzone({
accept: '.fa,.gz,.fasta,.tsv,text/tab-separated-values',
accept: '.csv',
Copy link
Contributor

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?

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?

@leoraba leoraba force-pushed the feat/environmental-submission branch from 6cba35c to d050c70 Compare December 11, 2024 21:34
@leoraba leoraba force-pushed the feat/environmental-submission branch from d050c70 to ba39caa Compare December 11, 2024 21:39

import NewSubmissions from './NewSubmissions';
import PreviousSubmissions from './PreviousSubmissions';
import PageContent from './PageContent';

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.

Copy link

@joneubank joneubank left a 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.

Comment on lines 59 to 60
// TODO: Verify if the user's session permissions allow them
// to upload environmental data to this organization.

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?

Comment on lines 71 to 74
case 'INVALID_FILE_EXTENSION':
case 'FILE_READ_ERROR':
case 'UNRECOGNIZED_HEADER':
case 'MISSING_REQUIRED_HEADER': {

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?

Comment on lines 151 to 152
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.

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?

Comment on lines 46 to 47
// TODO: Fetch list of previous submisions
// setPreviousSubmissions();

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

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);

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.

Comment on lines 224 to 227
const getErrorDetailsMessage = (
errors: ErrorDetails[],
index: number,
): { status: 'ERROR' | 'PROCESSING' | 'COMPLETE' | 'QUEUED'; message: string } => {

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 }) => {

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?

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.

Comment on lines +39 to +47
export type DataRecordValue =
| string
| string[]
| number
| number[]
| boolean
| boolean[]
| undefined;
export type DataRecord = Record<string, DataRecordValue>;

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.

@leoraba leoraba linked an issue Jan 13, 2025 that may be closed by this pull request
@leoraba leoraba merged commit 96a7e80 into wastewater Jan 13, 2025
2 checks passed
@leoraba leoraba deleted the feat/environmental-submission branch January 13, 2025 14:17
@leoraba leoraba linked an issue Jan 13, 2025 that may be closed by this pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

WW - Submission Summary Page WW - Built authentication on lyric WW - Build Submission Dashboard UI
3 participants