From 2121ccd4015d7c0dc81485fcaf8655bde28ea396 Mon Sep 17 00:00:00 2001
From: ulrich <not disclosed>
Date: Mon, 20 Feb 2017 15:35:43 +0000
Subject: [PATCH] Dateien bearbeiten in Arbeit

---
 web/ui/ui.js |  196 ++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 176 insertions(+), 20 deletions(-)

diff --git a/web/ui/ui.js b/web/ui/ui.js
index 10cf3fc..dfa880e 100644
--- a/web/ui/ui.js
+++ b/web/ui/ui.js
@@ -1,12 +1,19 @@
 var cm;
+var pfad = '';
 
 function fm_init() {
   $('.codeeditor-space').hide();
   $('.code-editor-container').hide();
   $('#newTextFile').on('click', fm_menu_neue_textdatei);
+  $('#editTextFile').on('click', fm_menu_textdatei_bearbeiten);
   $('#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();
+  fm_get_list('');
 }
 
 function fm_menu_neue_textdatei() {
@@ -16,6 +23,16 @@
   fm_code_edit('Test');
 }
 
+function fm_menu_textdatei_bearbeiten() {
+  /*
+  $('#dateiansicht').hide();
+  $('.codeeditor-space').show();
+  $('.code-editor-container').show();
+  fm_code_edit('Test');
+  */
+ fm_get_file_content();
+}
+
 function fm_menu_datei_schliessen() {
   $('.codeeditor-space').hide();
   $('.code-editor-container').hide();
@@ -23,17 +40,112 @@
   $('#dateiansicht').show();  
 }
 
+function fm_dateiwahl() {
+  var elem = this;
+  //console.log('datei gewaehlt ' + $(elem).text().trim());
+  if($(elem).children(0).hasClass('fa-folder')) {
+    var ordner = $(elem).text().trim();
+    if(pfad.length > 0) {
+      pfad = pfad + '/' + ordner;
+    } else {
+      pfad = ordner;
+    }
+    fm_get_list(pfad);
+  } else if($(elem).children(0).hasClass('fa-file')) {
+    $('.datei-gewaehlt').removeClass('datei-gewaehlt');
+    $(elem).children(0).addClass('datei-gewaehlt');
+  } else {
+    //console.log('kein folder oder file...');
+  }
+}
+
+/* ----- API Calls ------------- */
+
 function fm_get_login() {
   var m = '?c=de.uhilger.um.pub.SessionManager&m=getSessionUser';
   var u = '../../um/pub' + m;
-  fm_get(u, function(resp) {
+  fm_get(u, "json", function(resp) {
     $('#userMenu').text(resp.UserData.firstName);
   });  
 }
 
-function fm_menu_datei_speichern() {
-  // FileRef saveTextFile(String relPath, String fileName, String contents)
+function fm_get_file_content() {
   
+  var fname = $('.datei-gewaehlt').text();
+  
+  console.log(pfad + '/' + fname);
+  
+  
+  /*
+  var m = '?c=de.uhilger.filecms.api.FileMgr&m=list&p=' + relPath;
+  var u = '../svc' + m;
+  fm_get(u, "json", function(resp) {
+    
+  });
+  */
+}
+
+// http://localhost:8079/file-cms/svc?c=de.uhilger.filecms.api.FileMgr&f=JSONNICE&m=list&p=
+function fm_get_list(relPath) {
+  var m = '?c=de.uhilger.filecms.api.FileMgr&m=list&p=' + relPath;
+  var u = '../svc' + m;
+  fm_get(u, "json", function(resp) {
+    if(resp.List[0].FileRef !== undefined) {
+      var files = new Array();
+      for(var i = 0; i < resp.List[0].FileRef.length; i++) {
+        files.push(new FileRef(resp.List[0].FileRef[i]));
+      }
+      var fl = new FileList(files);
+      var template = $('#tpl-kacheln').html();
+      Mustache.parse(template);   // optional, speeds up future uses
+      $('.figure').attr('onclick','').unbind('click');
+      $('#dateien').empty();
+      $('#dateien').html(Mustache.render(template, fl));
+      $('.figure').click(fm_dateiwahl);
+    } else {
+      $('#dateien').empty();
+    }
+    
+    var dirList = new Array();
+    var rp = '';
+    var dirs = relPath.split('/');
+    dirList.push(new BcrFile(rp, 'Home'));
+    if(dirs.length > 0) {
+      for(var i = 0; i < dirs.length; i++) {
+        if(rp.length > 0 ) {
+          dirList.push(new BcrFile(rp + '/' + dirs[i], dirs[i]));
+        } else {
+          dirList.push(new BcrFile(dirs[i], dirs[i]));
+        }
+      }
+      var bl = new BcrFiles(dirList);
+      var template = $('#tpl-bcr').html();
+      Mustache.parse(template);   // optional, speeds up future uses
+      $('#bcnav').empty();
+      $('#bcnav').html(Mustache.render(template, bl));
+      $('#bcnav').append($('#tpl-bcr2').html());
+      $('#bcnav').append($('#tpl-bcr3').html());
+    }
+  });  
+}
+
+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: pfad, p2: $('#dateiname').val(), p3: cm.getValue()}, function(resp) {
+
+    });
+  });
+  $('#saveModal').modal({
+    keyboard: false,
+    show: true
+  });
+  
+  
+  // FileRef saveTextFile(String relPath, String fileName, String contents)
   
   
   /*
@@ -48,11 +160,21 @@
   */
 }
 
+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();
 
@@ -61,29 +183,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);
@@ -93,7 +212,7 @@
     }
 
   });
-};
+}
 
 function fm_post(u, d, scallback) {
   $.ajax({
@@ -109,9 +228,46 @@
       //alert( "The request is complete!" );
     }
   });
-};
+}
 
 function fm_serialise(obj) {
   return '{"' + obj.constructor.name + '":' + JSON.stringify(obj) + '}';
-};
+}
 
+/* ----- Objekte ----- */
+
+function FileList(fl) {
+  this.files = fl;
+}
+
+function FileRef(obj) {
+  var self = this;
+  this.fr = obj;
+  
+  this.typeClass = function() {
+    if(self.fr.isDirectory) {
+      return 'fa-folder';
+    } else {
+      return 'fa-file';
+    }
+  };
+  
+  this.fileName = function() {
+    var namen = self.fr.absolutePath.split('/');
+    if(namen.length > 0) {
+      return namen[namen.length - 1];
+    } else {
+      return self.fr.absolutePath;
+    }
+    
+  };
+}
+
+function BcrFiles(fl) {
+  this.files = fl;
+}
+
+function BcrFile(rp, n) {
+  this.relPath = rp;
+  this.fName = n;
+}

--
Gitblit v1.9.3