From 07460a5988f2ec011ba08c46d7b9e3e185487d7b Mon Sep 17 00:00:00 2001
From: ulrich
Date: Tue, 06 Apr 2021 12:36:30 +0000
Subject: [PATCH] Logging-Einstellungen
---
www/ui/js/app.js | 148 +++++++++++++++++++++++++++++++------------------
1 files changed, 94 insertions(+), 54 deletions(-)
diff --git a/www/ui/js/app.js b/www/ui/js/app.js
index c3a2888..d7f6358 100644
--- a/www/ui/js/app.js
+++ b/www/ui/js/app.js
@@ -9,30 +9,78 @@
function Mediazentrale() {
var self = this;
var appMenu;
- // var vorlagen;
var cache; // mustache templates
+ this.ablageort_liste = function() {
+ self.http_get('../api/store/Ablageort/', function (responseText) {
+ self.vorlage_laden_und_fuellen("data/tpl/ablageort_liste.tpl", JSON.parse(responseText), function (html) {
+ document.querySelector(".zentraler-inhalt").innerHTML = html;
+ self.addEvtListener('.entity-eintrag', 'click', function (event) {
+ var t = event.target;
+ self.http_get('../api/store/Ablageort/' + t.textContent, function(responseText){
+ ablageort = JSON.parse(responseText);
+ self.ablageort_form(ablageort);
+ });
+ });
+ self.addEvtListener('#neu-btn', 'click', function (event) {
+ eval("self.ablageort_form" + "(this)");
+ });
+ });
+ });
+ };
-
- this.form_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 () {
- // hier neuen Ablageort speichern
+ 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
);
- // {"name":"Katalog","ort":"/home/ulrich/Videos","url":"/media/test"}
- var daten = JSON.stringify(a);
- self.http_post('../api/store/Ablageort', daten, function () {
- // 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.ablageort_liste();
});
self.addEvtListener('#cancel-btn', 'click', function () {
- // hier die Aktion abbrechen
- document.querySelector(".zentraler-inhalt").innerHTML = '';
+ //document.querySelector(".zentraler-inhalt").innerHTML = '';
+ self.ablageort_liste();
+ });
+ self.addEvtListener('#loeschen-btn', 'click', function() {
+ var aoname = document.querySelector('#ablageort-name').value;
+ var dlgdata = {"del-elem": aoname};
+ 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() {
+ self.http_delete('../api/store/Ablageort/' + aoname, '', function (responseText) {
+ // hier die Antwort verarbeiten
+ self.dialog_schliessen();
+ //document.querySelector(".zentraler-inhalt").innerHTML = '';
+ self.ablageort_liste();
+ });
+ });
+ });
});
});
};
@@ -45,6 +93,8 @@
}
};
+ /* asynchroner HTTP Client */
+
this.http_get = function (u, cb) {
self.http_call('GET', u, null, cb);
};
@@ -53,6 +103,15 @@
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);
+ };
+
this.http_call = function (method, u, data, scallback) {
var xhr = new XMLHttpRequest();
var url = u;
@@ -64,18 +123,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 */
@@ -159,6 +211,8 @@
this.meldung_mit_timeout = function (meldung, timeout) {
var s = document.querySelector('.sued');
+ s.classList.add('sued-open');
+ s.style.height = '1.5em';
s.textContent = meldung;
setTimeout(function () {
s.textContent = 'Bereit.';
@@ -180,39 +234,35 @@
vurl - URL zur Dialogvorlage
msgTpl - URL mit einer Vorlage eines Mitteilungstextes (optional)
*/
- this.dialog_laden_und_zeigen = function (vurl, msgTpl) {
- if (msgTpl !== '') {
- fetch(msgTpl)
- .then(data => {
- // Handle data
- self.dialog_zeigen(vurl, data);
- }).catch(error => {
- // Handle error
+ this.dialog_laden_und_zeigen = function (vurl, msgTpl, cb) {
+ var vorlage = self.cache[vurl];
+ if(vorlage === undefined) {
+ self.http_get(vurl, function(antwort) {
+ self.cache[vurl] = antwort;
+ self.dialog_zeigen(vurl, msgTpl, cb);
});
} else {
- self.dialog_zeigen(vurl, '');
+ self.dialog_zeigen(vurl, msgTpl, cb);
}
};
- this.dialog_zeigen = function (vurl, inhalt) {
+ 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 = '5em';
- dlg.innerHTML = html;
- document.querySelector('.close-btn').addEventListener('click', self.dialog_schliessen);
- //dlg.slideDown(300);
- });
+ 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();
+ }
+ });
};
-
+
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 = '';
};
@@ -257,16 +307,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