@@ -44,6 +44,7 @@ import BrukerTiffSinglePlaneConverterSchema from "../inputs/interface_schemas/Br
4444import BrukerTiffMultiPlaneConverterSchema from "../inputs/interface_schemas/BrukerTiffMultiPlaneConverter.json" ;
4545import MiniscopeConverterSchema from "../inputs/interface_schemas/MiniscopeConverter.json" ;
4646import CellExplorerRecordingInterfaceSchema from "../inputs/interface_schemas/CellExplorerRecordingInterface.json" ;
47+ import Plexon2RecordingInterfaceSchema from "../inputs/interface_schemas/Plexon2RecordingInterface.json" ;
4748
4849export default {
4950 title : "Pages/Guided Mode/Source Data" ,
@@ -142,6 +143,8 @@ globalStateCopy.schema.source_data.properties.MiniscopeConverter =
142143 MiniscopeConverterSchema . properties . MiniscopeConverter ;
143144globalStateCopy . schema . source_data . properties . CellExplorerRecordingInterface =
144145 CellExplorerRecordingInterfaceSchema . properties . CellExplorerRecordingInterface ;
146+ globalStateCopy . schema . source_data . properties . Plexon2RecordingInterface =
147+ Plexon2RecordingInterfaceSchema . properties . Plexon2RecordingInterface ;
145148
146149const results = globalStateCopy . results ;
147150for ( let sub in results ) {
@@ -424,3 +427,9 @@ const CellExplorerRecordingInterfaceGlobalCopy = JSON.parse(JSON.stringify(globa
424427CellExplorerRecordingInterfaceGlobalCopy . interfaces . interface = CellExplorerRecordingInterface ;
425428CellExplorerRecordingInterfaceGlobalCopy . schema . source_data = CellExplorerRecordingInterfaceSchema ;
426429CellExplorerRecordingInterface . args = { activePage, globalState : CellExplorerRecordingInterfaceGlobalCopy } ;
430+
431+ export const Plexon2RecordingInterface = PageTemplate . bind ( { } ) ;
432+ const Plexon2RecordingInterfaceGlobalCopy = JSON . parse ( JSON . stringify ( globalState ) ) ;
433+ Plexon2RecordingInterfaceGlobalCopy . interfaces . interface = Plexon2RecordingInterface ;
434+ Plexon2RecordingInterfaceGlobalCopy . schema . source_data = Plexon2RecordingInterfaceSchema ;
435+ Plexon2RecordingInterface . args = { activePage, globalState : Plexon2RecordingInterfaceGlobalCopy } ;
0 commit comments