@@ -371,6 +371,11 @@ const commandsModule = ({
371
371
// originally toggled to one up was the former active viewport.
372
372
const viewportIdToUpdate = toggleOneUpViewportGridStore . activeViewportId ;
373
373
374
+ // We are restoring the previous layout but taking into the account that
375
+ // the current one up viewport might have a new displaySet dragged and dropped on it.
376
+ // updatedViewportsViaHP below contains the viewports applicable to the HP that existed
377
+ // prior to the toggle to one-up - including the updated viewports if a display
378
+ // set swap were to have occurred.
374
379
const updatedViewportsViaHP =
375
380
displaySetInstanceUIDs . length > 1
376
381
? [ ]
@@ -383,39 +388,25 @@ const commandsModule = ({
383
388
)
384
389
. flat ( ) ;
385
390
386
- // This findOrCreateViewport returns either one of the updatedViewports
391
+ // findOrCreateViewport returns either one of the updatedViewportsViaHP
387
392
// returned from the HP service OR if there is not one from the HP service then
388
- // simply returns what was in the previous state.
389
- const findOrCreateViewport = ( position : number ) => {
390
- // get the viewportId in the current state (since we are in the one-up layout)
391
- const currentOneUpViewport = Array . from ( viewports . values ( ) ) [ 0 ] ;
392
-
393
- // we should restore the previous layout but take into the account the fact that
394
- // the current one up viewport might have a new displaySet dragged and dropped on it
395
- // so we should prioritize the current one in the old grid store layout viewports
396
-
397
- const newViewports = Array . from ( toggleOneUpViewportGridStore . viewports . values ( ) ) . map (
398
- viewport => {
399
- if ( viewport . viewportId === currentOneUpViewport . viewportId ) {
400
- return {
401
- ...currentOneUpViewport ,
402
- } ;
403
- }
404
-
405
- return viewport ;
406
- }
393
+ // simply returns what was in the previous state for a given position in the layout.
394
+ const findOrCreateViewport = ( position : number , positionId : string ) => {
395
+ // Find the viewport for the given position prior to the toggle to one-up.
396
+ const preOneUpViewport = Array . from ( toggleOneUpViewportGridStore . viewports . values ( ) ) . find (
397
+ viewport => viewport . positionId === positionId
407
398
) ;
408
399
409
- // However, we also need to take into account that the current one up viewport
410
- // might have been part of a bigger hanging protocol layout, so going back
411
- // from one up we should apply those viewports as well.
412
- return updatedViewportsViaHP . length > 1 && updatedViewportsViaHP [ position ]
413
- ? {
414
- viewportOptions ,
415
- displaySetOptions ,
416
- ...updatedViewportsViaHP [ position ] ,
417
- }
418
- : newViewports [ position ] ;
400
+ // Use the viewport id from before the toggle to one-up to find any updates to the viewport.
401
+ const viewport = updatedViewportsViaHP . find (
402
+ viewport => viewport . viewportId === preOneUpViewport . viewportId
403
+ ) ;
404
+
405
+ return viewport
406
+ ? // Use the applicable viewport from the HP updated viewports
407
+ { viewportOptions , displaySetOptions , ...viewport }
408
+ : // Use the previous viewport for the given position
409
+ preOneUpViewport ;
419
410
} ;
420
411
421
412
const layoutOptions = viewportGridService . getLayoutOptionsFromState (
0 commit comments