16 lines
538 B
JavaScript
16 lines
538 B
JavaScript
import { SOPClassHandlerId, SOPClassHandlerId3D } from './id';
|
|
|
|
export default function onModeEnter({ servicesManager }) {
|
|
const { displaySetService } = servicesManager.services;
|
|
const displaySetCache = displaySetService.getDisplaySetCache();
|
|
|
|
const srDisplaySets = [...displaySetCache.values()].filter(
|
|
ds => ds.SOPClassHandlerId === SOPClassHandlerId || ds.SOPClassHandlerId === SOPClassHandlerId3D
|
|
);
|
|
|
|
srDisplaySets.forEach(ds => {
|
|
// New mode route, allow SRs to be hydrated again
|
|
ds.isHydrated = false;
|
|
});
|
|
}
|