Dateiverwaltung für die WebBox
Ulrich
2017-02-27 7d8ef67736311d75b97a249482a938662035fd39
web/ui/ui.js
@@ -20,14 +20,23 @@
var pfad = '';
var modus = 'kacheln';
var openFileName = '';
var ed;
var openEditor;
function fm_init() {
  $("#mce-editor").hide();
  $('.codeeditor-space').hide();
  $('.code-editor-container').hide();
  //$('.ost').attr('flex-basis', 0);
  $('#newTextFile').on('click', fm_menu_neue_textdatei);
  $('#newDoc').on('click', fm_menu_neues_dokument);
  $('#newFolder').on('click', fm_get_new_folder);
  $('#editTextFile').on('click', fm_get_file_content);
  $('#editTextFile').on('click', function() {
    fm_get_file_content('text');
  });
  $('#editDocFile').on('click', function() {
    fm_get_file_content('dok');
  });
  $('#saveFile').on('click', fm_menu_datei_speichern);
  $('#saveFileAs').on('click', fm_menu_datei_speichern_unter);
  $('#closeFile').on('click', fm_menu_datei_schliessen);
@@ -40,6 +49,44 @@
  fm_get_login();
  fm_get_list('');
  fm_init_uploader();
  /*
   * Konfiguration TinyMCE
   */
  tinymce.init({
    content_css : "mce.css",
    selector: "textarea.text-editor",
    statusbar: false,
    menubar: false,
    plugins: 'advlist charmap code image link lists media print preview save table textcolor',
    toolbar: 'undo redo | styleselect | image | link unlink | bullist numlist | outdent indent | code',
    /*
    menu: {
      file: {title: 'File', items: 'savevers | exit'},
      edit: {title: 'Edit', items: 'undo redo | cut copy paste pastetext | selectall'},
      view: {title: 'View', items: 'visualaid | code | link image media | template hr'},
    },
    */
    /*resize: 'both',*/
    width: "100%",
    height: '100%',
    /*autoresize_bottom_margin : 1,*/
    setup: function (editor) {
      ed = editor;
    }
  });
  window.onresize = function() {
    fm_resizeEditor();
  };
}
function fm_resizeEditor() {
  if (ed) {
    try {
      var myHeight = $('.zentrum').height() - $('.nord').height() - 4;
      ed.theme.resizeTo('100%', myHeight);  // sets the dimensions of the editable area
    } catch (err) {
    }
  }
}
/* ----- Uploader Anfang ----------*/
@@ -142,14 +189,27 @@
  fm_text_edit('Neue Datei');
}
function fm_menu_neues_dokument() {
  /*
  fm_filectls_hide();
  $("#mce-editor").show();
  fm_resizeEditor();
  openEditor = 'dok';
  */
  fm_dok_edit('');
}
function fm_menu_datei_schliessen() {
  $('.codeeditor-space').hide();
  $('.code-editor-container').hide();
  cm.toTextArea();
  $('#bcnav').show();
  $('#dateien').show();
  $("#mce-editor").hide();
  if(cm !== undefined) {
    cm.toTextArea();
  }
  openFileName = '';
  openEditor = '';
  fm_get_list(pfad);
  fm_filectls_show();
}
function fm_dateiwahl(ev) {
@@ -221,13 +281,30 @@
}
function fm_text_edit(content) {
  $('#bcnav').hide();
  $('#dateien').hide();
  fm_filectls_hide();
  $('.codeeditor-space').show();
  $('.code-editor-container').show();
  fm_code_edit(content);  
  openEditor = 'text';
}
function fm_dok_edit(content) {
  fm_filectls_hide();
  $("#mce-editor").show();
  ed.setContent(content);
  fm_resizeEditor();
  openEditor = 'dok';
}
function fm_filectls_hide() {
  $('#zentrum_bc').hide();
  $('#dateien').hide();
}
function fm_filectls_show() {
  $('#zentrum_bc').show();
  $('#dateien').show();
}
/* ----- API Calls ------------- */
function fm_get_login() {
@@ -257,7 +334,7 @@
  });
}
function fm_get_file_content() {
function fm_get_file_content(typ) {
  var gewaehlte = $('.datei-gewaehlt');
  //var fname = $(gewaehlte).find('.dateiname').text();
  
@@ -266,7 +343,11 @@
  var m = '?c=de.uhilger.filecms.api.FileMgr&m=getCode&p=' + pfad + '&p=' + fname;
  var u = '../svc' + m;
  fm_get(u, "text", function(resp) {
    fm_text_edit(resp);
    if(typ == 'text') {
      fm_text_edit(resp);
    } else {
      fm_dok_edit(resp);
    }
  });
  
}
@@ -316,6 +397,25 @@
    $('#dateien').html(Mustache.render(template, fl));
    $('.datei-zeile').click(fm_dateiwahl);
  }
  /*
  if(modus == 'kacheln') {
    // Kachelansicht
    $.get('tpl-kacheln.txt', function(template) {
      $('#dateien').empty();
      $('#dateien').html(Mustache.render(template, fl));
      $('.figure').click(fm_dateiwahl);
    });
    $('.datei-zeile').attr('onclick','').unbind('click');
  } else {
    // Listenansicht
    $.get('tpl-liste.txt', function(template) {
      $('#dateien').empty();
      $('#dateien').html(Mustache.render(template, fl));
      $('.datei-zeile').click(fm_dateiwahl);
    });
    $('.figure').attr('onclick','').unbind('click');
  }
  */
}
// http://localhost:8079/file-cms/svc?c=de.uhilger.filecms.api.FileMgr&f=JSONNICE&m=list&p=
@@ -361,7 +461,7 @@
        }
      }
      var bl = new BcrFiles(dirList);
      if(dirList.length > 0) {
        template = $('#tpl-bcr').html();
        Mustache.parse(template);   // optional, speeds up future uses
@@ -390,7 +490,44 @@
    $('.breadcrumb-item').click(fm_bc_click);
    $('#ansicht').click(fm_ansicht_umschalten);
    fm_set_modus();
  });
}
/*
function fm_bcr_step2(dirs, dirList) {
  if(dirs.length > 0) {
    dirList.push(new BcrFile(rp + '/' + dirs[dirs.length-1], dirs[dirs.length-1]));
    $.get('tpl-bcr2.txt', function(template) {
      $('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));
      $('#bcnav').append($('#tpl-bcr3').html());
      fm_bcr_end();
    });
    //template = $('#tpl-bcr2').html();
    //Mustache.parse(template);   // optional, speeds up future uses
    //$('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));
  } else {
    $.get('tpl-bcr2.txt', function(template) {
      $('#bcnav').append(Mustache.render(template, dirList[0]));
      $('#bcnav').append($('#tpl-bcr3').html());
      fm_bcr_end();
    });
    //template = $('#tpl-bcr2').html();
    //Mustache.parse(template);   // optional, speeds up future uses
    //$('#bcnav').append(Mustache.render(template, dirList[0]));
  }
}
*/
function fm_bcr_3() {
  $.get('tpl-bcr3.txt', function(template) {
    $('#bcnav').append(template);
  });  
}
function fm_bcr_end() {
  $('.breadcrumb-item').click(fm_bc_click);
  $('#ansicht').click(fm_ansicht_umschalten);
  fm_set_modus();
}
function fm_menu_datei_speichern() {
@@ -404,9 +541,15 @@
}
function fm_save_file(saveFileName) {
  var content;
  if(openEditor === 'text') {
    content = cm.getValue();
  } else {
    content = ed.getContent();
  }
  var m = '?c=de.uhilger.filecms.api.FileMgr&m=saveTextFile';
  var u = '../svc' + m;
  fm_post(u, {p1: pfad, p2: saveFileName, p3: cm.getValue()}, function(resp) {
  fm_post(u, {p1: pfad, p2: saveFileName, p3: content}, function(resp) {
    openFileName = saveFileName;
  });
}
@@ -523,15 +666,15 @@
  this.typeClass = function() {
    if(modus == 'kacheln') {
      if(self.fr.isDirectory) {
        return 'fa-folder';
        return 'fa-folder ordner';
      } else {
        return 'fa-file';
        return 'fa-file datei';
      }
    } else {
      if(self.fr.isDirectory) {
        return 'fa-folder';
        return 'fa-folder ordner';
      } else {
        return 'fa-file-o';
        return 'fa-file-o datei';
      }
    }
  };