From 3633fb382f072e762559da7842f7bd04a3dab4ca Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 12 Nov 2024 16:21:10 -0800 Subject: [PATCH] Enhancement: save & next / close shortcut key (#8243) --- .../document-detail/document-detail.component.spec.ts | 8 ++++++++ .../document-detail/document-detail.component.ts | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts index efd7e8191..41a576f01 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts @@ -1221,6 +1221,14 @@ describe('DocumentDetailComponent', () => { ) expect(saveSpy).toHaveBeenCalled() + jest.spyOn(openDocumentsService, 'isDirty').mockReturnValue(true) + jest.spyOn(component, 'hasNext').mockReturnValue(true) + const saveNextSpy = jest.spyOn(component, 'saveEditNext') + document.dispatchEvent( + new KeyboardEvent('keydown', { key: 's', ctrlKey: true, shiftKey: true }) + ) + expect(saveNextSpy).toHaveBeenCalled() + const closeSpy = jest.spyOn(component, 'close') document.dispatchEvent(new KeyboardEvent('keydown', { key: 'escape' })) expect(closeSpy).toHaveBeenCalled() diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index 3bd725c45..9a9afadb8 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -509,6 +509,16 @@ export class DocumentDetailComponent .subscribe(() => { if (this.openDocumentService.isDirty(this.document)) this.save() }) + + this.hotKeyService + .addShortcut({ + keys: 'control.shift.s', + description: $localize`Save and close / next`, + }) + .pipe(takeUntil(this.unsubscribeNotifier)) + .subscribe(() => { + if (this.openDocumentService.isDirty(this.document)) this.saveEditNext() + }) } ngOnDestroy(): void {