From 8931b77df172c4a2a106d471a566479ac9c5f6b0 Mon Sep 17 00:00:00 2001
From: ulrich <not disclosed>
Date: Mon, 20 Feb 2017 08:30:53 +0000
Subject: [PATCH] Code aufgeraeumt

---
 web/ui/ui.js |   90 +++++++++++++++++++++++++++++++++++++--------
 1 files changed, 74 insertions(+), 16 deletions(-)

diff --git a/web/ui/ui.js b/web/ui/ui.js
index 3e80f3c..6d50cfd 100644
--- a/web/ui/ui.js
+++ b/web/ui/ui.js
@@ -4,7 +4,13 @@
   $('.codeeditor-space').hide();
   $('.code-editor-container').hide();
   $('#newTextFile').on('click', fm_menu_neue_textdatei);
+  $('#saveFile').on('click', fm_menu_datei_speichern);
   $('#closeFile').on('click', fm_menu_datei_schliessen);
+  $('#myModal').on('hidden.bs.modal', function (e) {
+    $('#modal_ok').attr('onclick','').unbind('click');
+  });
+  $('#logout').click(fm_logout);  
+  fm_get_login();
 }
 
 function fm_menu_neue_textdatei() {
@@ -21,11 +27,62 @@
   $('#dateiansicht').show();  
 }
 
+/* ----- API Calls ------------- */
+
+function fm_get_login() {
+  var m = '?c=de.uhilger.um.pub.SessionManager&m=getSessionUser';
+  var u = '../../um/pub' + m;
+  fm_get(u, "json", function(resp) {
+    $('#userMenu').text(resp.UserData.firstName);
+  });  
+}
+
+function fm_menu_datei_speichern() {
+  
+  $('#modal_ok').click(function() {
+    // hier speichern
+    var m = '?c=de.uhilger.filecms.api.FileMgr&m=saveTextFile';
+    var u = '../svc' + m;
+    fm_post(u, {p1: '', p2: $('#dateiname').val(), p3: cm.getValue()}, function(resp) {
+
+    });
+  });
+  $('#saveModal').modal({
+    keyboard: false,
+    show: true
+  });
+  
+  
+  // FileRef saveTextFile(String relPath, String fileName, String contents)
+  
+  
+  /*
+  var t = new Template(-2, $('#filename').val(), self.cm.getValue(), 3);
+  var u = '../api/tr/?c=de.uhilger.webbox.api.ContentApi&m=newTemplate';
+  self.post(u, {p: self.serialise(t)}, function (resp) {
+    self.isnew = false;
+    self.editid = resp.Template.id;
+    $('#contlist').append(self.buildContListItem(3, resp.Template.name, resp.Template.id));
+    $('#templateeditor').addClass('hidden');
+  });
+  */
+}
+
+function fm_logout() {
+  var m = '?c=de.uhilger.filecms.pub.SessionManager&m=expireSession';
+  var u = '../pub' + m;
+  
+  fm_get(u, "text", function(resp) {
+    $('#userMenu').text('nicht angemeldet');
+    window.location.href = '../logout.html';
+  });
+}
+
+
 /* ---- codemirror editor handling -------- */
 
 function fm_code_edit(content) {
-  var windowHeight = $(window).height();
-
+  //var windowHeight = $(window).height();
   //$("editspace").empty();
   //self.cm.toTextArea();
 
@@ -34,29 +91,26 @@
     mode: "xml",
     viewportMargin : Infinity,
     extraKeys: {
-	        "F9": function(cm) {
-	          cm.setOption("fullScreen", !cm.getOption("fullScreen"));
-	        },
-	        "Esc": function(cm) {
-	          if (cm.getOption("fullScreen")) cm.setOption("fullScreen", false);
-          }
+        "F9": function(cm) {
+        cm.setOption("fullScreen", !cm.getOption("fullScreen"));
+      },
+        "Esc": function(cm) {
+        if (cm.getOption("fullScreen")) cm.setOption("fullScreen", false);
+      }
     }
   });
-  
-  // cm.setSize("100%", windowHeight - 100); // w, h
   cm.setValue(content);
-  
-};
+}
 
 
 
 /* -------- helper functions ----------- */
 
-function fm_get(u, scallback) {
+function fm_get(u, dtype, scallback) {
   $.ajax({
     url: u,
     type: "GET",
-    dataType: "json",
+    dataType: dtype,
     success: scallback,
     error: function (xhr, status, errorThrown) {
       alert("Error: " + errorThrown + " Status: " + status + " URL: " + u);
@@ -66,7 +120,7 @@
     }
 
   });
-};
+}
 
 function fm_post(u, d, scallback) {
   $.ajax({
@@ -82,5 +136,9 @@
       //alert( "The request is complete!" );
     }
   });
-};
+}
+
+function fm_serialise(obj) {
+  return '{"' + obj.constructor.name + '":' + JSON.stringify(obj) + '}';
+}
 

--
Gitblit v1.9.3