1
0

feat: simplify namespace search (#1835)

Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1835
Reviewed-by: konrad <k@knt.li>
Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
This commit is contained in:
Dominik Pschenitschni
2022-04-25 17:38:57 +00:00
committed by konrad
parent ddc1cff7ea
commit 8578225982
3 changed files with 75 additions and 72 deletions

View File

@ -0,0 +1,19 @@
import {ref, computed, Ref} from 'vue'
import {useStore} from 'vuex'
export function useNameSpaceSearch() {
const query = ref('')
const store = useStore()
const namespaces = computed(() => store.getters['namespaces/searchNamespace'](query.value))
function findNamespaces(newQuery: string) {
query.value = newQuery
}
return {
namespaces,
findNamespaces,
}
}