Browse Source

suppression jquery pour changeView

François Drouhard 1 year ago
parent
commit
cd79cf3543
2 changed files with 26 additions and 2 deletions
  1. 5 2
      assets/app.js
  2. 21 0
      assets/js/switchViewVanilla.js

+ 5 - 2
assets/app.js

@@ -16,8 +16,11 @@ import 'bootstrap-star-rating/themes/krajee-fa/theme.css';
 import './js/suivifilms2';
 import './js/addCollectionWidget';
 import './js/filtre';
-import './js/switchView';
+//import './js/switchView';
 import './js/colorModeBootstrap'
+import { switchView } from './js/switchViewVanilla';
+
+const sv = switchView("#switchview");
 
 jQuery(function() {
     $('.add-another-collection-widget').addCollection();
@@ -26,5 +29,5 @@ jQuery(function() {
 
     $('[data-toggle="star-filter"]').filtreParNote();
 
-    $('#switchview').switchView();
+    //$('#switchview').switchView();
 })

+ 21 - 0
assets/js/switchViewVanilla.js

@@ -0,0 +1,21 @@
+export function switchView(idSelector) {
+    const button = document.querySelector(idSelector);
+    button.addEventListener("click", (event) => {
+        event.preventDefault();
+        change();
+    })
+    
+    function change() {
+        const fetchPromise = fetch("/changeview");
+        fetchPromise
+            .then((response) => {
+                if (!response.ok) {
+                    throw new Error(`Erreur Http : ${response.status}`);
+                }
+                return response.json();
+            })
+            .then((json) => {
+                window.location.reload();
+            })
+    }
+}