Skip to content
Snippets Groups Projects
Commit e67c7152 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch 'enter-artist-searchbar' into 'develop'

Pressing return on searchbar to search for artists

See merge request funkwhale/funkwhale!812
parents 3fde0d9d ee255783
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,18 @@ export default {
let albumLabel = this.$pgettext('*/*/*', 'Album')
let trackLabel = this.$pgettext('*/*/*/Noun', 'Track')
let self = this
var searchQuery;
jQuery(this.$el).keypress(function(e) {
if(e.which == 13) {
// Cancel any API search request to backend...
jQuery(this.$el).search('cancel query');
// Go direct to the artist page...
router.push("/library/artists?query=" + searchQuery + "&page=1&paginateBy=25&ordering=name");
}
});
jQuery(this.$el).search({
type: 'category',
minCharacters: 3,
......@@ -41,6 +53,7 @@ export default {
},
onSearchQuery (query) {
self.$emit('search')
searchQuery = query;
},
apiSettings: {
beforeXHR: function (xhrObject) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment