Dateiverwaltung für die WebBox
ulrich
2017-02-20 7342b1f3850299264b571d1d63778173c9a30703
web/ui/ui.js
@@ -8,8 +8,10 @@
  $('#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() {
@@ -26,11 +28,30 @@
  $('#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, function(resp) {
  fm_get(u, "json", function(resp) {
    $('#userMenu').text(resp.UserData.firstName);
  });
}
// 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) {
    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
    $('#dateien').empty();
    $('#dateien').html(Mustache.render(template, fl));
  });  
}
@@ -65,6 +86,17 @@
  */
}
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) {
@@ -92,11 +124,11 @@
/* -------- 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);
@@ -128,3 +160,21 @@
  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';
    }
  }
}