From 2597cdc3863be2c566c6bba8fe985eaff4a87df6 Mon Sep 17 00:00:00 2001
From: ulrich
Date: Tue, 06 Apr 2021 11:02:29 +0000
Subject: [PATCH] Ablageorte bearbeiten fertig

---
 www/ui/js/app.js |  119 ++++++++++++++++++++++++++---------------------------------
 1 files changed, 52 insertions(+), 67 deletions(-)

diff --git a/www/ui/js/app.js b/www/ui/js/app.js
index 9f348d6..691185d 100644
--- a/www/ui/js/app.js
+++ b/www/ui/js/app.js
@@ -9,7 +9,6 @@
 function Mediazentrale() {
   var self = this;
   var appMenu;
-  // var vorlagen;
   var cache; // mustache templates
 
   this.ablageort_liste = function() {
@@ -18,25 +17,47 @@
         document.querySelector(".zentraler-inhalt").innerHTML = html;
         self.addEvtListener('.entity-eintrag', 'click', function (event) {
           var t = event.target;
-          self.meldung_mit_timeout(t.textContent, 1500);
+          self.http_get('../api/store/Ablageort/' + t.textContent, function(responseText){
+            ablageort = JSON.parse(responseText);
+            self.ablageort_form(ablageort);
+          });
         });
       });
     });
   };
 
-  this.ablageort_neu = function () {
-    self.vorlage_laden_und_fuellen("data/tpl/form_ablageort.tpl", "", function (html) {
+  /* 
+   * Ablageort-Formular anzeigen
+   * 
+   * {"name":"Katalog 2","ort":"/home/ulrich/Videos","url":"/media/kat2"}: 
+   * 
+   * @param {type} ablageort  der Ablageort, der bearbeitet werden soll, leer fuer neuen Ort
+   * @returns {undefined} kein Rueckgabewert
+   */
+  this.ablageort_form = function(ort) {
+    self.vorlage_laden_und_fuellen("data/tpl/form_ablageort.tpl", ort, function (html) {
       document.querySelector(".zentraler-inhalt").innerHTML = html;
       self.addEvtListener('#ok-btn', 'click', function () {
+        var aName = document.querySelector('#ablageort-name').value;
+        aName = aName.replace(' ', '').replace(/[\W]+/g, '');
         var a = new Ablageort(
-          document.querySelector('#ablageort-name').value,
+          aName,
           document.querySelector('#ablageort-ort').value,
           document.querySelector('#ablageort-url').value
         );
-        var daten = JSON.stringify(a);
-        self.http_post('../api/store/Ablageort', daten, function (responseText) {
-          // hier die Antwort verarbeiten
-        });
+        var daten = JSON.stringify(a);        
+        if(typeof ort === "undefined" || ort.name !== aName) {
+          // neu
+          self.http_post('../api/store/Ablageort', daten, function (responseText) {
+            // hier die Antwort verarbeiten
+          });
+        } else {
+          // aendern
+          self.http_put('../api/store/Ablageort', daten, function (responseText) {
+            // hier die Antwort verarbeiten
+          });
+        }
+        document.querySelector(".zentraler-inhalt").innerHTML = '';
       });
       self.addEvtListener('#cancel-btn', 'click', function () {
         document.querySelector(".zentraler-inhalt").innerHTML = '';
@@ -47,7 +68,11 @@
         self.dialog_laden_und_zeigen('data/tpl/dlg-loeschen.tpl', dlgdata, function() {
           self.addEvtListener('#nein-btn', 'click', self.dialog_schliessen);
           self.addEvtListener('#ja-btn', 'click', function() {
-            // hier loeschen
+            self.http_delete('../api/store/Ablageort/' + aoname, '', function (responseText) {
+              // hier die Antwort verarbeiten
+              self.dialog_schliessen();
+              document.querySelector(".zentraler-inhalt").innerHTML = '';
+            });
           });
         });
       });
@@ -70,7 +95,12 @@
     self.http_call('POST', u, data, cb);
   };
 
+  this.http_put = function (u, data, cb) {
+    self.http_call('PUT', u, data, cb);
+  };
+  
   this.http_delete = function (u, data, cb) {
+    console.log("delete " + u);
     self.http_call('DELETE', u, data, cb);
   };
   
@@ -85,18 +115,11 @@
     xhr.open(method, url);
     if (method === 'GET') {
       xhr.send();
-    } else if (method === 'POST' || method === 'PUT') {
+    } else if (method === 'POST' || method === 'PUT' || method === 'DELETE') {
       xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
       xhr.send(data);
     }
   };
-
-  this.serialisieren = function (obj) {
-    return '{"' + obj.constructor.name + '":' + JSON.stringify(obj) + '}';
-  };
-
-
-
 
   /* ab hier aus App-Vorlage */
 
@@ -209,55 +232,29 @@
       self.http_get(vurl, function(antwort) {
         self.cache[vurl] = antwort;
         self.dialog_zeigen(vurl, msgTpl, cb);
-        //self.dialog_zeigen(vurl, antwort, cb);
-        //self.vorlage_fuellen(vurl, inhalt, cb);
       });
     } else {
       self.dialog_zeigen(vurl, msgTpl, cb);
-      //self.dialog_zeigen(vurl, vorlage, cb);
     }
   };
 
   this.dialog_zeigen = function (vurl, inhalt, cb) {
     var dlg = document.querySelector(".dialog");
-    self.html_erzeugen(
-            vurl,
-            inhalt,
-            function (html) {
-              //dlg.html(html);
-              dlg.style.height = '7em';
-              dlg.innerHTML = html;
-              document.querySelector('.close-btn').addEventListener('click', self.dialog_schliessen);
-              //dlg.slideDown(300);
-              if(typeof(cb) !== 'function') {
-                // ..
-              } else {
-                cb();
-              }
-            });
+    self.html_erzeugen(vurl, inhalt, function (html) {
+      dlg.style.height = '7em';
+      dlg.innerHTML = html;
+      document.querySelector('.close-btn').addEventListener('click', self.dialog_schliessen);
+      if(typeof(cb) !== 'function') {
+        // ..
+      } else {
+        cb();
+      }
+    });
   };
-
-
-/*
-  this.dialog_zeigen = function (vurl, inhalt) {
-    var dlg = document.querySelector(".dialog");
-    self.html_erzeugen(
-            vurl,
-            inhalt,
-            function (html) {
-              //dlg.html(html);
-              dlg.style.height = '5em';
-              dlg.innerHTML = html;
-              document.querySelector('.close-btn').addEventListener('click', self.dialog_schliessen);
-              //dlg.slideDown(300);
-            });
-  };
-*/
+  
   self.dialog_schliessen = function () {
     document.querySelector('.close-btn').removeEventListener('click', self.dialog_schliessen);
-    //$('.dialog').slideUp(300);
     var dlg = document.querySelector('.dialog');
-    //dlg.style.display = "none";
     dlg.style.height = '0';
     dlg.innerHTML = '';
   };
@@ -290,8 +287,6 @@
   };
 
   this.vorlage_fuellen = function (vurl, inhalt, cb) {
-    //console.log("vorlage " + self.cache[vurl]);
-    //console.log("render " + inhalt);
     cb(Mustache.render(self.cache[vurl], inhalt));
   };
 
@@ -304,16 +299,6 @@
    Inhalt gefüllt ist
    */
   this.vorlage_laden_und_fuellen = function (vurl, inhalt, cb) {
-    /*
-     $.ajax({
-     url: vurl,
-     type: "GET",
-     dataType : "text"
-     }).done(function( vorlage ) {
-     self.cache[vurl] = vorlage;
-     self.vorlage_fuellen(vurl, inhalt, cb);
-     });
-     */
     var xmlhttp = new XMLHttpRequest();
     xmlhttp.onreadystatechange = function () {
       if (this.readyState == 4 && this.status == 200) {

--
Gitblit v1.9.3