From 3a6d2de3f9f33b287ccbe0465142f26bf893ac47 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Poussard?= <tpoussard@neogeo.fr>
Date: Tue, 30 Nov 2021 15:23:16 +0100
Subject: [PATCH] clean code

---
 src/views/feature/Feature_list.vue | 93 +++++++++++++++---------------
 1 file changed, 45 insertions(+), 48 deletions(-)

diff --git a/src/views/feature/Feature_list.vue b/src/views/feature/Feature_list.vue
index 42538f7d..e261289a 100644
--- a/src/views/feature/Feature_list.vue
+++ b/src/views/feature/Feature_list.vue
@@ -394,50 +394,6 @@ export default {
       }, 1000);
     },
 
-    handlePageChange(page) {
-      console.log("handlePageChange", page, typeof page);
-      if (page === "next") {
-        this.toNextPage();
-      } else if (page === "previous") {
-        this.toPreviousPage();
-      } else if (typeof page === "number") {
-        //* update limit and offset
-        this.toPage(page);
-      }
-    },
-
-    toPage(pageNumber) {
-      console.log("toPage", pageNumber);
-      const toAddOrRemove =
-        (pageNumber - this.pagination.currentPage) * this.pagination.pagesize;
-      this.pagination.start += toAddOrRemove;
-      this.pagination.end += toAddOrRemove;
-      this.pagination.currentPage = pageNumber;
-      this.updateFeatures();
-    },
-
-    toPreviousPage() {
-      if (this.pagination.currentPage !== 1) {
-        if (this.pagination.start > 0) {
-          this.pagination.start -= this.pagination.pagesize;
-          this.pagination.end -= this.pagination.pagesize;
-          this.pagination.currentPage -= 1;
-        }
-        this.updateFeatures(this.previous);
-      }
-    },
-
-    toNextPage() {
-      if (this.pagination.currentPage !== this.pageNumbers.length) {
-        if (this.pagination.end < this.featuresCount) {
-          this.pagination.start += this.pagination.pagesize;
-          this.pagination.end += this.pagination.pagesize;
-          this.pagination.currentPage += 1;
-        }
-        this.updateFeatures(this.next);
-      }
-    },
-
     getFeatureTypeSlug(title) {
       const featureType = this.feature_types.find((el) => el.title === title);
       return featureType ? featureType.slug : null;
@@ -518,13 +474,12 @@ export default {
           if (filterParams === "abort") return;
           url += filterParams;
         } else {
-          console.error("ONLY FOR DEV !!!!!!!!!!!!!");
-          params = params.replace("8000", "8010");
-          console.log(url);
+          //console.error("ONLY FOR DEV !!!!!!!!!!!!!");
+          //params = params.replace("8000", "8010");
+          //console.log(url);
           url = params;
         }
       }
-      console.log("url -->", url);
 
       this.$store.commit(
         "DISPLAY_LOADER",
@@ -582,6 +537,48 @@ export default {
         ), //* use Set to eliminate duplicate values
       ];
     },
+
+    handlePageChange(page) {
+      if (page === "next") {
+        this.toNextPage();
+      } else if (page === "previous") {
+        this.toPreviousPage();
+      } else if (typeof page === "number") {
+        //* update limit and offset
+        this.toPage(page);
+      }
+    },
+
+    toPage(pageNumber) {
+      const toAddOrRemove =
+        (pageNumber - this.pagination.currentPage) * this.pagination.pagesize;
+      this.pagination.start += toAddOrRemove;
+      this.pagination.end += toAddOrRemove;
+      this.pagination.currentPage = pageNumber;
+      this.updateFeatures();
+    },
+
+    toPreviousPage() {
+      if (this.pagination.currentPage !== 1) {
+        if (this.pagination.start > 0) {
+          this.pagination.start -= this.pagination.pagesize;
+          this.pagination.end -= this.pagination.pagesize;
+          this.pagination.currentPage -= 1;
+        }
+        this.updateFeatures(this.previous);
+      }
+    },
+
+    toNextPage() {
+      if (this.pagination.currentPage !== this.pageNumbers.length) {
+        if (this.pagination.end < this.featuresCount) {
+          this.pagination.start += this.pagination.pagesize;
+          this.pagination.end += this.pagination.pagesize;
+          this.pagination.currentPage += 1;
+        }
+        this.updateFeatures(this.next);
+      }
+    },
   },
 
   mounted() {
-- 
GitLab