From 2334ba6db52e07958a46f69c5d57eda01aef16fb Mon Sep 17 00:00:00 2001 From: Laetitia Fesselier Date: Mon, 10 Jun 2024 09:03:18 -0400 Subject: [PATCH] [EEG Uploader] User messaging and Documentation update (#9296) Documentation patch to resolve #9293. Let users and admins know that they will encounter a known issue (#9191), not a bug with their setup: This does this by: - Adding text visible to Users at the top of the module - Adding README message - Adding Help text note for users This does not resolve #9191, but it clarifies the state for LORIS users. --- modules/electrophysiology_uploader/README.md | 12 ++++++- .../jsx/ElectrophysiologyUploader.js | 35 ++++++++++++------- 2 files changed, 33 insertions(+), 14 deletions(-) diff --git a/modules/electrophysiology_uploader/README.md b/modules/electrophysiology_uploader/README.md index 4dd9db07a52..9acba1cb6b1 100644 --- a/modules/electrophysiology_uploader/README.md +++ b/modules/electrophysiology_uploader/README.md @@ -2,7 +2,13 @@ ## Purpose -The electrophysiology uploader is intended to allow users to upload and browse electrophysiology files. +The electrophysiology uploader is intended to allow users to upload electrophysiology files. + +**LORIS 26 Beta Note:** Files uploaded in this module will not be viewable +in +the Electrophysiology Browser module. +This feature is under construction for the next release. Please get in +touch with the LORIS team to configure this for your project. ## Intended Users @@ -26,6 +32,7 @@ EEG recordings can be re-uploaded multiple times. Previous upload attempts will Permission `electrophysiology_browser_view_allsites` or `electrophysiology_browser_view_site` is necessary to have access to the module and gives the user the ability to upload and browse all recordings uploaded to the database. +Permission `monitor_eeg_uploads` is necessary to receive EEG upload notifications. #### Filesystem Permission @@ -49,3 +56,6 @@ EEGUploadIncomingPath - This setting determines where on the filesystem the `EEGUploadIncomingPath` following a successful archival and insertion through the LORIS-MRI pipeline. +### Caveat + +Archive extraction and EEG insertion have to be performed manually at the moment. \ No newline at end of file diff --git a/modules/electrophysiology_uploader/jsx/ElectrophysiologyUploader.js b/modules/electrophysiology_uploader/jsx/ElectrophysiologyUploader.js index 544b4cb743c..2dd53c040ec 100644 --- a/modules/electrophysiology_uploader/jsx/ElectrophysiologyUploader.js +++ b/modules/electrophysiology_uploader/jsx/ElectrophysiologyUploader.js @@ -56,19 +56,28 @@ export default function ElectrophysiologyUploader(props) { ]; return ( - - - - - - - - + <> +
+ LORIS 26 Beta Note: Files uploaded in this module + will not be viewable in the Electrophysiology Browser + module. This feature is under construction for the next release. + Please get in touch with the LORIS team to configure this for your + project. +
+ + + + + + + + + ); }