Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | 35x | const RESPONSE = { NO_NEVER: -1, CANCEL: 0, CREATE_REPORT: 1, ADD_SERIES: 2, SET_STUDY_AND_SERIES: 3, NO_NOT_FOR_SERIES: 4, }; function promptHasDirtyAnnotations({ servicesManager }: withAppTypes, ctx, evt) { const { viewportId, displaySetInstanceUID } = evt.data || evt; return new Promise(async function (resolve, reject) { const { uiViewportDialogService, customizationService } = servicesManager.services; const promptResult = await _askSaveDiscardOrCancel( uiViewportDialogService, customizationService, viewportId ); resolve({ displaySetInstanceUID, userResponse: promptResult, viewportId, isBackupSave: false, }); }); } function _askSaveDiscardOrCancel( UIViewportDialogService: AppTypes.UIViewportDialogService, customizationService: AppTypes.CustomizationService, viewportId ) { return new Promise(function (resolve, reject) { const message = customizationService.getCustomization( 'viewportNotification.discardDirtyMessage' ); const actions = [ { id: 'cancel', type: 'cancel', text: 'Cancel', value: RESPONSE.CANCEL }, { id: 'discard-existing', type: 'secondary', text: 'No, discard existing', value: RESPONSE.SET_STUDY_AND_SERIES, }, { id: 'save-existing', type: 'primary', text: 'Yes', value: RESPONSE.CREATE_REPORT, }, ]; const onSubmit = result => { UIViewportDialogService.hide(); resolve(result); }; UIViewportDialogService.show({ viewportId, id: 'measurement-tracking-prompt-dirty-measurement', type: 'info', message, actions, onSubmit, onOutsideClick: () => { UIViewportDialogService.hide(); resolve(RESPONSE.CANCEL); }, onKeyPress: event => { Iif (event.key === 'Enter') { const action = actions.find(action => action.id === 'save-existing'); onSubmit(action.value); } }, }); }); } export default promptHasDirtyAnnotations; |