Dateiverwaltung für die WebBox
ulrich
2017-02-27 305573a68785ff329bc0f3c9b28ba738bcb58e46
web/ui/ui.js
@@ -20,12 +20,16 @@
var pfad = '';
var modus = 'kacheln';
var openFileName = '';
var ed;
var t;
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);
  $('#saveFile').on('click', fm_menu_datei_speichern);
@@ -40,6 +44,82 @@
  fm_get_login();
  fm_get_list('');
  fm_init_uploader();
  /*
   * Konfiguration TinyMCE
   */
  tinymce.init({
    content_css : "mce.css",
    selector: "textarea",
    statusbar: false,
    menubar: false,
    plugins: 'autoresize advlist charmap code image link lists media print preview save table textcolor',
    toolbar: 'undo redo | styleselect | outdent indent',
    /*
    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: true,
    width: "100%",
    height: '100%',
    autoresize_bottom_margin : 1,
    setup: function (editor) {
      ed = editor;
      //self.ed = editor;
      /*
      editor.addMenuItem('fileinfo', {
        text: 'Toggle file info',
        onclick: function () {
          editor.insertContent('Toggle file info');
          toggleFileInfo();
        }
      });
      editor.addMenuItem('savevers', {
        text: 'Speichern',
        onclick: function () {
          self.notizSpeichern();
        }
      });
      editor.addMenuItem('exit', {
        text: 'Exit',
        onclick: function () {
          self.editorBeenden();
        }
      });
      */
    }
  });
}
function resizeEditor(myHeight) {
  window.console.log('resizeEditor');
  var myEditor = ed;
  if (myEditor) {
    try {
      /*
      if (!myHeight) {
        var targetHeight = window.innerHeight; // Change this to the height of your wrapper element
        var mce_bars_height = 0;
        $('.mce-toolbar, .mce-statusbar, .mce-menubar').each(function () {
          mce_bars_height += $(this).height();
        });
        window.console.log('mce bars height total: ' + mce_bars_height);
        myHeight = targetHeight - mce_bars_height - 8;  // the extra 8 is for margin added between the toolbars
      }
      */
      var myHeight = $('.zentrum').height() - $('.nord').height();
      window.console.log('resizeEditor: ', myHeight);
      myEditor.theme.resizeTo('100%', myHeight);  // sets the dimensions of the editable area
    } catch (err) {
    }
  }
}
window.onresize = function() {
    resizeEditor();
}
/* ----- Uploader Anfang ----------*/
@@ -142,14 +222,29 @@
  fm_text_edit('Neue Datei');
}
function fm_menu_neues_dokument() {
  fm_filectls_hide();
  $("#mce-editor").show();
  resizeEditor();
  /*
  var ht = $(window).innerHeight() - 20;
  window.clearTimeout(t);
  t = window.setTimeout(function () {
    $('.mce-editor').height(ht - 100);
  }, 200);
  */
}
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 = '';
  fm_get_list(pfad);
  fm_filectls_show();
}
function fm_dateiwahl(ev) {
@@ -221,13 +316,21 @@
}
function fm_text_edit(content) {
  $('#bcnav').hide();
  $('#dateien').hide();
  fm_filectls_hide();
  $('.codeeditor-space').show();
  $('.code-editor-container').show();
  fm_code_edit(content);  
}
function fm_filectls_hide() {
  $('#zentrum_bc').hide();
  $('#dateien').hide();
}
function fm_filectls_show() {
  $('#zentrum_bc').show();
  $('#dateien').show();
}
/* ----- API Calls ------------- */
function fm_get_login() {
@@ -301,20 +404,20 @@
function fm_render_list(fl) {
  if(modus == 'kacheln') {
    // Kachelansicht
    var template = $('#tpl-kacheln').html();
    Mustache.parse(template);   // optional, speeds up future uses
    $.get('tpl-kacheln.txt', function(template) {
      $('#dateien').empty();
      $('#dateien').html(Mustache.render(template, fl));
      $('.figure').click(fm_dateiwahl);
    });
    $('.datei-zeile').attr('onclick','').unbind('click');
    $('#dateien').empty();
    $('#dateien').html(Mustache.render(template, fl));
    $('.figure').click(fm_dateiwahl);
  } else {
    // Listenansicht
    var template = $('#tpl-liste').html();
    Mustache.parse(template);   // optional, speeds up future uses
    $.get('tpl-liste.txt', function(template) {
      $('#dateien').empty();
      $('#dateien').html(Mustache.render(template, fl));
      $('.datei-zeile').click(fm_dateiwahl);
    });
    $('.figure').attr('onclick','').unbind('click');
    $('#dateien').empty();
    $('#dateien').html(Mustache.render(template, fl));
    $('.datei-zeile').click(fm_dateiwahl);
  }
}
@@ -341,7 +444,7 @@
    }
    
    // Breadcrumb-Ansicht
    var template;
    //var template;
    $('.breadcrumb-item').attr('onclick','').unbind('click');
    $('#bcnav').empty();
    var dirList = new Array();
@@ -362,35 +465,111 @@
      }
      var bl = new BcrFiles(dirList);
      if(dirList.length > 0) {
        template = $('#tpl-bcr').html();
        Mustache.parse(template);   // optional, speeds up future uses
        $('#bcnav').html(Mustache.render(template, bl));
      }
      if(dirs.length > 0) {
        dirList.push(new BcrFile(rp + '/' + dirs[dirs.length-1], dirs[dirs.length-1]));
        template = $('#tpl-bcr2').html();
        Mustache.parse(template);   // optional, speeds up future uses
        $('#bcnav').append(Mustache.render(template, dirList[dirList.length-1]));
      if(dirList.length > 0) {
        $.get('tpl-bcr.txt', function(template) {
          $('#bcnav').html(Mustache.render(template, bl));
          //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]));
              fm_bcr_3();
              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]));
              fm_bcr_3();
              fm_bcr_end();
            });
            //template = $('#tpl-bcr2').html();
            //Mustache.parse(template);   // optional, speeds up future uses
            //$('#bcnav').append(Mustache.render(template, dirList[0]));
          }
        });
      } else {
        template = $('#tpl-bcr2').html();
        Mustache.parse(template);   // optional, speeds up future uses
        $('#bcnav').append(Mustache.render(template, dirList[0]));
        //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]));
        }
        */
      }
      $('#bcnav').append($('#tpl-bcr3').html());
    } else {
      pfad = '';
      template = $('#tpl-bcr2').html();
      Mustache.parse(template);   // optional, speeds up future uses
      $('#bcnav').append(Mustache.render(template, dirList[0]));
      $('#bcnav').append($('#tpl-bcr3').html());
      $.get('tpl-bcr2.txt', function(template) {
        $('#bcnav').append(Mustache.render(template, dirList[0]));
        fm_bcr_3();
        fm_bcr_end();
      });
      //template = $('#tpl-bcr2').html();
      //Mustache.parse(template);   // optional, speeds up future uses
      //$('#bcnav').append(Mustache.render(template, dirList[0]));
      //$('#bcnav').append($('#tpl-bcr3').html());
    }
    $('.breadcrumb-item').click(fm_bc_click);
    $('#ansicht').click(fm_ansicht_umschalten);
    fm_set_modus();
    //$('.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() {
@@ -523,15 +702,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';
      }
    }
  };