From ffc2b770a5181d3294813d16f745dfbc709f09df Mon Sep 17 00:00:00 2001
From: ulrich
Date: Sat, 16 Jan 2021 15:41:05 +0000
Subject: [PATCH] Stile angepasst

---
 web/ui2/js/app.js |  148 +++++++++++++++++++++++++++++++++---------------
 1 files changed, 101 insertions(+), 47 deletions(-)

diff --git a/web/ui2/js/app.js b/web/ui2/js/app.js
index f9ad751..23f6da0 100644
--- a/web/ui2/js/app.js
+++ b/web/ui2/js/app.js
@@ -1,14 +1,17 @@
 function AppVorlage() {
   var self = this;
   this.appMenu;
-  this.vorlagen;
+  //this.vorlagen;
   this.api;
   this.userid;
   this.pfad = '';
   this.loc;
   this.modus = 'kacheln';
   this.cm;
-  this.tinymce;
+  //this.tinymce;
+  this.ed;
+  this.tmo;
+  this.tmo2;
   this.PERS_DIR = "Persoenlich";
   this.PUB_DIR = "Oeffentlich";
   this.DAV_DIR = "Austausch";
@@ -26,15 +29,9 @@
   
   /* Funktionen aus App-Vorlage */
 
-  this.init = function () {
-    
-    // Hide and show an element by changing "display" to block and none
+  this.init = function () {    
     document.querySelector(".codeeditor-space").style.display = "none";
-    //document.querySelector(".code-editor-container").style.display = "none";
     document.querySelector("#mce-editor").style.display = "none";
-    //document.querySelector(".box").style.display = "block";
-    
-    //self.vorlagen = new Vorlagen();
     self.appMenu = new AppMenu();
     self.appMenu.init(
             "data/menu/",
@@ -60,9 +57,6 @@
     self.seitenleiste_umschalten();
     //fm_init_uploader();
     self.loc = window.location.protocol + '//' + window.location.host;
-    
-    //self.fm_get_list('');
-    //self.loc = window.location.protocol + '//' + window.location.host;
   };
 
   this.login_zeigen = function() {
@@ -127,7 +121,7 @@
         self.fm_do_close();
       }
     } else {
-      if(self.tinymce.activeEditor.undoManager.hasUndo()) {
+      if(tinymce.activeEditor.undoManager.hasUndo()) {
         self.fm_ask_for_save();
       } else {
         self.fm_do_close();
@@ -171,11 +165,17 @@
         //self.fm_menu_datei_speichern(function() {
           //console.log(document.querySelector('#datei-name-in').value);
           self.fm_save_file(document.querySelector('#datei-name-in').value, 'saveTextFileAs', callback);
-          self.fm_do_close();
-          self.dialog_schliessen();
+          if(typeof(callback) !== 'function') {
+            self.fm_do_close();
+            self.dialog_schliessen();
+          }
         //});
       });
     });    
+  };
+  
+  this.fm_menu_neues_dokument = function() {
+    self.fm_dok_edit('');
   };
 
   /* Dialog-Funktionen */
@@ -529,37 +529,16 @@
           self.dialog_schliessen();
           self.fm_get_list(self.pfad);
         });
-        /*
-        self.fm_save_file(document.querySelector('#datei-name-in').value, 'saveTextFileAs', callback);
-        self.fm_do_close();
-        self.dialog_schliessen();
-        */
       });
     });    
-    
-    
-    /*
-    $('#modal_ok').click(function() {
-      // hier speichern
-      var m = '?c=de.uhilger.filecms.api.FileMgr&m=newFolder&p=' + pfad + '&p=' + $('#dateiname').val();
-      var u = '../svc' + m;
-      fm_get(u, "json", function(resp) {
-        fm_get_list(pfad);
-      });
-    });
-    $('#saveModalTitle').text('Neuer Ordner');
-    $('#dialogfrage').text("Name?");
-    $('#dateiname').val('');
-    $('#dateiname').attr('placeholder', 'Ordnername');
-    $('#saveModal').modal({
-      keyboard: false,
-      show: true
-    });
-    */
   };
 
   this.fm_edit_as_text = function() {
     self.fm_get_file_content('text');
+  };
+  
+  this.fm_edit_as_doc = function() {
+    self.fm_get_file_content('doc');
   };
   
   this.fm_get_file_content = function(typ) {
@@ -596,7 +575,7 @@
       content = self.cm.getValue();
       self.cm.getDoc().markClean();
     } else {
-      content = ed.getContent();
+      content = self.ed.getContent();
       tinymce.activeEditor.undoManager.clear();
     }
     var m = '?c=de.uhilger.filecms.api.FileMgr&m=' + method;
@@ -686,6 +665,76 @@
     return marker;
   };
 
+  /* ---- TinyMCE editor handling -------- */
+
+  this.fm_dok_editor_init = function(uid) {
+    var base = self.fm_get_path(uid);
+    //var edCount = 0;
+    //console.log("fm_dok_editor_init calling tinymce.init with base: " + base + "/");
+
+    /*
+     * vgl.
+     * http://stackoverflow.com/questions/4651676/how-do-i-remove-tinymce-and-then-re-add-it
+     */
+    //tinymce.EditorManager.execCommand('mceRemoveControl',true, 'textarea.text-editor');
+    //tinymce.EditorManager.execCommand('mceAddControl',true, editor_id);
+    if(self.ed !== undefined) {
+      self.ed.destroy();
+    }
+    if(tinymce !== undefined) {
+      tinymce.remove('textarea.text-editor');
+      tinymce.EditorManager.editors = []; 
+    }
+
+    /*
+     * Konfiguration TinyMCE
+     */
+    tinymce.init({
+      content_css : "/file-cms/ui/mce.css",
+      //content_css: "/jslib/bootstrap/css/bootstrap.min.css",
+      selector: "textarea.text-editor",
+      statusbar: false,
+      menubar: false,
+      plugins: 'advlist charmap code image link lists media table print preview save table textcolor importcss',
+      toolbar: 'undo redo | styleselect | image table | 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',
+      importcss_append: true,
+      width: "100%",
+      height: '100%',
+      relative_urls : true, 
+      convert_urls : false, 
+      document_base_url : base + "/",
+      setup: function (editor) {
+        self.ed = editor;
+      }
+    });
+
+    window.addEventListener('resize', self.fm_resize_editor);
+    //$(window).on('resize', self.fm_resize_editor);
+    self.fm_resize_editor();
+  };
+
+  this.fm_resize_editor = function() {
+    window.clearTimeout(self.tmo);
+    self.tmo = window.setTimeout(function () {
+      try {
+        var myHeight = document.querySelector('.inhalt').offsetHeight - 
+                document.querySelector('.nord').offsetHeight + 2; // - 4;
+        //console.log('myHeight: ' + myHeight);
+        self.ed.theme.resizeTo('100%', myHeight);  // sets the dimensions of the editable area
+      } catch (err) {
+      }
+    }, 200);
+  };
+
+
   
   /* -------- Editoren --------- */
   
@@ -701,14 +750,17 @@
 
   this.fm_dok_edit = function(content) {
     //fm_filectls_hide();
-    fm_dok_editor_init(userid);
-    $("#mce-editor").show();
+    self.fm_dok_editor_init(self.userid);
+    document.querySelector("#mce-editor").style.display = "block";
+    //$("#mce-editor").show();
+    document.querySelector(".breadcrumb").style.display = "none";
+    document.querySelector(".zentrum").style.display = "none";
 
-    window.clearTimeout(tmo2);
-    tmo2 = window.setTimeout(function () {
+    window.clearTimeout(self.tmo2);
+    self.tmo2 = window.setTimeout(function () {
       try {
-        ed.setContent(content);
-        openEditor = 'dok';  
+        self.ed.setContent(content);
+        self.openEditor = 'dok';  
       } catch (err) {
       }
     }, 200);
@@ -716,6 +768,8 @@
   
   this.fm_do_close = function() {
     document.querySelector(".codeeditor-space").style.display = "none";
+    document.querySelector("#mce-editor").style.display = "none";
+    // $("#mce-editor").hide();
     //document.querySelector(".code-editor-container").style.display = "none";
     //document.querySelector(".zentrum-behaelter").style.display = "block";
     document.querySelector(".breadcrumb").style.display = "block";

--
Gitblit v1.9.3