Quick Actions & global search #528

Merged
konrad merged 17 commits from feature/quick-action into main 2021-05-30 18:30:08 +00:00
1 changed files with 12 additions and 2 deletions
Showing only changes of commit 1cebe3ca8b - Show all commits

View File

@ -14,7 +14,7 @@
@keyup="search"
ref="searchInput"
@keydown.down.prevent="() => select(0, 0)"
@keyup.prevent.delete="() => selectedCmd = null"
@keyup.prevent.delete="unselectCmd"
@keyup.prevent.enter="doCmd"
/>
</div>
@ -136,7 +136,10 @@ export default {
return this.search === '' || Object.keys(this.results).length === 0
},
loading() {
return this.taskService.loading
return this.taskService.loading ||
this.listService.loading ||
this.namespaceService.loading ||
this.teamService.loading
},
placeholder() {
if (this.selectedCmd !== null) {
@ -284,6 +287,13 @@ export default {
elems.focus()
},
unselectCmd() {
if (this.query !== '') {
return
}
this.selectedCmd = null
},
},
}
</script>