From 0c5f151fc11e19f7a9c16c8b292d99c9c12b80d7 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Sun, 17 Dec 2017 20:24:48 +0100 Subject: [PATCH] Fixed some debouncing issues --- front/src/components/library/Artists.vue | 4 ++-- front/src/components/utils/global-events.vue | 2 +- front/src/router/index.js | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/front/src/components/library/Artists.vue b/front/src/components/library/Artists.vue index 8d0a4f552d..23a30e7711 100644 --- a/front/src/components/library/Artists.vue +++ b/front/src/components/library/Artists.vue @@ -103,7 +103,7 @@ export default { $('.ui.dropdown').dropdown() }, methods: { - updateQueryString: function () { + updateQueryString: _.debounce(function () { this.$router.replace({ query: { query: this.query, @@ -112,7 +112,7 @@ export default { ordering: this.getOrderingAsString() } }) - }, + }, 500), fetchData: _.debounce(function () { var self = this this.isLoading = true diff --git a/front/src/components/utils/global-events.vue b/front/src/components/utils/global-events.vue index 2905e3a7d3..dd25865c90 100644 --- a/front/src/components/utils/global-events.vue +++ b/front/src/components/utils/global-events.vue @@ -27,7 +27,7 @@ export default { let wrapper = function (event) { // we check here the event is not triggered from an input // to avoid collisions - if (!$(event.target).is(':input, [contenteditable]')) { + if (!$(event.target).is('.field, :input, [contenteditable]')) { handler(event) } } diff --git a/front/src/router/index.js b/front/src/router/index.js index 7db5da6bad..c7c46a2754 100644 --- a/front/src/router/index.js +++ b/front/src/router/index.js @@ -50,7 +50,8 @@ export default new Router({ component: Favorites, props: (route) => ({ defaultOrdering: route.query.ordering, - defaultPage: route.query.page + defaultPage: route.query.page, + defaultPaginateBy: route.query.paginateBy }) }, { -- GitLab