stable

Clone or download

Read-only

refactor: Extract keyboard navigation store

For better separation of concerns, keyboard navigation has its own store. No functonal changes. Part of story #26771: Index artifact fields (REST + Switch to) on updated artifacts only Change-Id: Ia46072a5a1ea5625a495346c718be75ab82be02f

Modified Files

Name
M src/scripts/switch-to/src/components/Body/Items/ItemEntry.test.ts +5 −5 Go to diff View file
M src/scripts/switch-to/src/components/Body/Items/ItemEntry.vue +3 −3 Go to diff View file
M src/scripts/switch-to/src/components/Body/Items/RecentItems/ListOfRecentItems.vue +2 −1 Go to diff View file
M src/scripts/switch-to/src/components/Body/Projects/ProjectLink.test.ts +7 −5 Go to diff View file
M src/scripts/switch-to/src/components/Body/Projects/ProjectLink.vue +4 −3 Go to diff View file
M src/scripts/switch-to/src/components/Body/QuickLink.test.ts +2 −2 Go to diff View file
M src/scripts/switch-to/src/components/Body/QuickLink.vue +4 −4 Go to diff View file
M src/scripts/switch-to/src/initiate-app.ts +1 −1 Go to diff View file
M src/scripts/switch-to/src/stores/fulltext.test.ts +41 −20 Go to diff View file
M src/scripts/switch-to/src/stores/fulltext.ts +9 −7 Go to diff View file
M src/scripts/switch-to/src/stores/index.test.ts +1 −1158 Go to diff View file
M src/scripts/switch-to/src/stores/index.ts +1 −181 Go to diff View file
A src/scripts/switch-to/src/stores/keyboard-navigation.test.ts +1387 −0 Go to diff View file
A src/scripts/switch-to/src/stores/keyboard-navigation.ts +226 −0 Go to diff View file
M src/scripts/switch-to/src/stores/type.ts +4 −1 Go to diff View file