From fa012bbbd2765fa54fb1420b3610052dc0cde129 Mon Sep 17 00:00:00 2001
From: ulrich <undisclosed>
Date: Sun, 12 Mar 2017 10:20:26 +0000
Subject: [PATCH] Miniaturansicht Bilder

---
 web/ui/ui.js |   87 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 86 insertions(+), 1 deletions(-)

diff --git a/web/ui/ui.js b/web/ui/ui.js
index 4abc1d0..4d69657 100644
--- a/web/ui/ui.js
+++ b/web/ui/ui.js
@@ -28,6 +28,7 @@
 var cutCopySrcDir;
 var cutCopyFiles;
 var cutCopyOperation;
+var loc;
 
 function fm_init() {
   $("#mce-editor").hide();
@@ -61,6 +62,14 @@
   fm_get_login();
   fm_get_list('');
   fm_init_uploader();
+  /*
+  console.log('href: ' + window.location.href);
+  console.log('host: ' + window.location.host);
+  console.log('hostname: ' + window.location.hostname);
+  console.log('port: ' + window.location.port);
+  console.log('protocol: ' + window.location.protocol);
+  */
+  loc = window.location.protocol + '//' + window.location.host;
 }
 
 function fm_resize_editor() {
@@ -319,7 +328,7 @@
         }
         fm_get_list(pfad);
       }
-    } else if($(elem).children(0).hasClass('fa-file')) {
+    } else if($(elem).children(0).hasClass('datei')) {
       if(/*ev.shiftKey || */ ev.ctrlKey) {
         // mehrere Dateien sollen gewaehlt werden
       } else {
@@ -853,6 +862,7 @@
 function FileRef(obj) {
   var self = this;
   this.fr = obj;
+  this.fnx;
   
   this.typeClass = function() {
     if(modus == 'kacheln') {
@@ -870,13 +880,88 @@
     }
   };
   
+  this.mini = function() {
+    var miniatur = false;
+    var namen = self.fr.absolutePath.split('/');
+    if(namen.length > 0) {
+      self.fnx = decodeURIComponent(namen[namen.length - 1]);
+    } else {
+      self.fnx = decodeURIComponent(self.fr.absolutePath);
+    }
+    if(self.fnx.indexOf('.jpg') > -1 || self.fnx.indexOf('.png') > -1 || self.fnx.indexOf('.gif') > -1 || self.fnx.indexOf('.jpeg') > -1) {
+      miniatur = true;
+    }
+    return miniatur;
+  };
+  
+  this.miniurl = function() {
+      var userid = $('#userMenu').text();
+      var ext = '';
+      var dotpos = self.fnx.indexOf('.');
+      if(dotpos > -1) {
+        var fny = self.fnx;
+        self.fnx = self.fnx.substring(0, dotpos);
+        ext = fny.substr(dotpos);
+      }
+      var path = fm_get_path(userid);
+      var imgurl = loc + path + '/' + self.fnx + '_tn' + ext;
+      return imgurl;
+    
+  };
+  
+  /*
+  this.kachel = function() {
+    var htm;
+    var fnx; // = self.fileName;
+    var namen = self.fr.absolutePath.split('/');
+    if(namen.length > 0) {
+      fnx = decodeURIComponent(namen[namen.length - 1]);
+    } else {
+      fnx = decodeURIComponent(self.fr.absolutePath);
+    }
+    
+    
+    if(fnx.indexOf('.jpg') > -1 || fnx.indexOf('.png') > -1 || fnx.indexOf('.gif') > -1 || fnx.indexOf('.jpeg') > -1) {
+      var userid = $('#userMenu').text();
+      var ext = '';
+      var dotpos = fnx.indexOf('.');
+      if(dotpos > -1) {
+        fnx = fnx.substring(0, dotpos);
+        ext = fnx.substr(dotpos);
+      }
+      var path = fm_get_path(userid);
+      var imgurl = path + '/' + fnx + '_tn' + ext;
+      htm = "img src='" + imgurl + "'";
+    } else {
+      var cl;
+      if(modus == 'kacheln') {
+        if(self.fr.isDirectory) {
+          cl = 'fa-folder ordner';
+        } else {
+          cl = 'fa-file datei';
+        }
+      } else {
+        if(self.fr.isDirectory) {
+          cl = 'fa-folder ordner';
+        } else {
+          cl = 'fa-file-o datei';
+        }
+      }
+      htm = "i class='fa " + cl + " fa-3x'></i";
+    }
+    return htm;
+  };
+  */
+  
   this.fileName = function() {
+    
     var namen = self.fr.absolutePath.split('/');
     if(namen.length > 0) {
       return decodeURIComponent(namen[namen.length - 1]);
     } else {
       return decodeURIComponent(self.fr.absolutePath);
     }
+    
   };
 }
 

--
Gitblit v1.9.3