Skip to content

Commit 86f54d0

Browse files
authored
fix(toggleOneUp): fixed one up for main tmtv layout (OHIF#3677)
1 parent 485cf03 commit 86f54d0

File tree

1 file changed

+21
-30
lines changed

1 file changed

+21
-30
lines changed

extensions/default/src/commandsModule.ts

+21-30
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,11 @@ const commandsModule = ({
371371
// originally toggled to one up was the former active viewport.
372372
const viewportIdToUpdate = toggleOneUpViewportGridStore.activeViewportId;
373373

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.
374379
const updatedViewportsViaHP =
375380
displaySetInstanceUIDs.length > 1
376381
? []
@@ -383,39 +388,25 @@ const commandsModule = ({
383388
)
384389
.flat();
385390

386-
// This findOrCreateViewport returns either one of the updatedViewports
391+
// findOrCreateViewport returns either one of the updatedViewportsViaHP
387392
// 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
407398
);
408399

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;
419410
};
420411

421412
const layoutOptions = viewportGridService.getLayoutOptionsFromState(

0 commit comments

Comments
 (0)