From c2b1aca9a1db96c52386b478a7e25472410226d4 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Wed, 5 Feb 2020 21:59:31 +0900 Subject: Clear keys on window blur --- src/content/Application.ts | 7 +++++++ src/content/controllers/KeymapController.ts | 4 ++++ src/content/usecases/KeymapUseCase.ts | 4 ++++ 3 files changed, 15 insertions(+) (limited to 'src') diff --git a/src/content/Application.ts b/src/content/Application.ts index cfa01fd..fbfeb6d 100644 --- a/src/content/Application.ts +++ b/src/content/Application.ts @@ -40,6 +40,7 @@ export default class Application { run() { this.routeCommonComponents(); + this.routeFocusEvents(); if (window.self === window.top) { this.routeMasterComponents(); } @@ -118,4 +119,10 @@ export default class Application { this.settingController.initSettings(); } + + private routeFocusEvents() { + window.addEventListener('blur', () => { + this.keymapController.onBlurWindow(); + }); + } } diff --git a/src/content/controllers/KeymapController.ts b/src/content/controllers/KeymapController.ts index f9c2545..639b4a1 100644 --- a/src/content/controllers/KeymapController.ts +++ b/src/content/controllers/KeymapController.ts @@ -99,4 +99,8 @@ export default class KeymapController { } return true; } + + onBlurWindow() { + this.keymapUseCase.cancel(); + } } diff --git a/src/content/usecases/KeymapUseCase.ts b/src/content/usecases/KeymapUseCase.ts index 7aa7e92..e02bc48 100644 --- a/src/content/usecases/KeymapUseCase.ts +++ b/src/content/usecases/KeymapUseCase.ts @@ -70,6 +70,10 @@ export default class KeymapUseCase { return null; } + cancel() { + this.repository.clear(); + } + private keymapEntityMap(): [KeySequence, operations.Operation][] { const keymaps = this.settingRepository.get().keymaps.combine(reservedKeymaps); let entries = keymaps.entries().map( -- cgit v1.2.3 From 0263170bd2603165edecce1b55493c7b2092e2e6 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Wed, 5 Feb 2020 22:19:46 +0900 Subject: Treats digit keys with modifiers --- src/shared/settings/Key.ts | 2 +- test/shared/settings/Key.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/shared/settings/Key.ts b/src/shared/settings/Key.ts index cfe1e7e..1464e57 100644 --- a/src/shared/settings/Key.ts +++ b/src/shared/settings/Key.ts @@ -60,7 +60,7 @@ export default class Key { } isDigit(): boolean { - return digits.includes(this.key); + return digits.includes(this.key) && !this.ctrl && !this.alt && !this.meta; } equals(key: Key) { diff --git a/test/shared/settings/Key.test.ts b/test/shared/settings/Key.test.ts index 3a1c86e..b8538f8 100644 --- a/test/shared/settings/Key.test.ts +++ b/test/shared/settings/Key.test.ts @@ -80,7 +80,7 @@ describe("Key", () => { it('returns true if the key is a digit', () => { expect(new Key({ key: '0' }).isDigit()).to.be.true; expect(new Key({ key: '9' }).isDigit()).to.be.true; - expect(new Key({ key: '9', shift: true }).isDigit()).to.be.true; + expect(new Key({ key: '9', alt: true }).isDigit()).to.be.false; expect(new Key({ key: 'a' }).isDigit()).to.be.false; expect(new Key({ key: '0' }).isDigit()).to.be.false; -- cgit v1.2.3