function AppVorlage() {
|
var self = this;
|
this.appMenu;
|
this.vorlagen;
|
this.api;
|
this.userid;
|
this.pfad = '';
|
this.loc;
|
this.modus = 'kacheln';
|
this.PERS_DIR = "Persoenlich";
|
this.PUB_DIR = "Oeffentlich";
|
this.DAV_DIR = "Austausch";
|
this.BASE_DIR = "$basis";
|
this.DATA_DIR = "$daten";
|
this.WWW_DIR = "www";
|
this.cache = {}; // mustache template cache
|
|
this.datei_neuer_text = function () {
|
self.meldung_mit_timeout("Neuer Text", 1500);
|
};
|
|
/* Funktionen aus App-Vorlage */
|
|
this.init = function () {
|
//self.vorlagen = new Vorlagen();
|
self.appMenu = new AppMenu();
|
self.appMenu.init(
|
"data/menu/",
|
"hauptmenue.json",
|
"data/tpl/app-menu.tpl",
|
".west",
|
"8em");
|
document.querySelector('.hamburger').addEventListener('click', function (e) {
|
self.menue_umschalten();
|
});
|
self.fm_get_login();
|
|
var parsedUrl = new URL(window.location.href);
|
var wunschPfad = parsedUrl.searchParams.get("pfad");
|
|
if(wunschPfad !== null && wunschPfad.length > 0) {
|
self.pfad = wunschPfad;
|
self.fm_get_list(wunschPfad);
|
} else {
|
self.fm_get_list('');
|
}
|
//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() {
|
self.meldung_mit_timeout("Benutzer: " + self.userid, 1500);
|
};
|
|
this.menue_umschalten = function () {
|
var ham = document.querySelector(".hamburger");
|
ham.classList.toggle("is-active"); // hamburger-icon umschalten
|
self.appMenu.toggle(); // menue oeffnen/schliessen
|
};
|
|
this.info_dialog_zeigen = function () {
|
self.dialog_laden_und_zeigen('data/tpl/dlg-info.tpl', '');
|
self.menue_umschalten();
|
};
|
|
this.seitenleiste_umschalten = function () {
|
var ostDiv = document.querySelector('.ost');
|
if (ostDiv.classList.contains('ost-open')) {
|
ostDiv.classList.remove('ost-open');
|
ostDiv.style.flexBasis = '0em';
|
} else {
|
ostDiv.classList.add('ost-open');
|
ostDiv.style.flexBasis = '6em';
|
}
|
self.menue_umschalten();
|
};
|
|
this.fusszeile_umschalten = function () {
|
var suedDiv = document.querySelector('.sued');
|
if (suedDiv.classList.contains('sued-open')) {
|
suedDiv.classList.remove('sued-open');
|
suedDiv.style.height = '0';
|
} else {
|
suedDiv.classList.add('sued-open');
|
suedDiv.style.height = '1.5em';
|
}
|
self.menue_umschalten();
|
};
|
|
this.meldung_mit_timeout = function (meldung, timeout) {
|
var s = document.querySelector('.sued');
|
s.textContent = meldung;
|
setTimeout(function () {
|
s.textContent = 'Bereit.';
|
setTimeout(function () {
|
var suedDiv = document.querySelector('.sued');
|
if (suedDiv.classList.contains('sued-open')) {
|
suedDiv.classList.remove('sued-open');
|
suedDiv.style.height = '0';
|
}
|
}, 500);
|
}, timeout);
|
};
|
|
/* Dialog-Funktionen */
|
|
/*
|
Einen Dialog aus Vorlagen erzeugen
|
|
vurl - URL zur Dialogvorlage
|
msgTpl - URL mit einer Vorlage eines Mitteilungstextes (optional)
|
*/
|
this.dialog_laden_und_zeigen = function (vurl, msgTpl) {
|
if (msgTpl !== '') {
|
fetch(msgTpl)
|
.then(data => {
|
// Handle data
|
self.dialog_zeigen(vurl, data);
|
}).catch(error => {
|
// Handle error
|
});
|
} else {
|
self.dialog_zeigen(vurl, '');
|
}
|
};
|
|
this.dialog_zeigen = function (vurl, inhalt) {
|
var dlg = document.querySelector(".dialog");
|
self.vorlagen.html_erzeugen(
|
vurl,
|
inhalt,
|
function (html) {
|
//dlg.html(html);
|
dlg.style.height = '5em';
|
dlg.innerHTML = html;
|
document.querySelector('.close-btn').addEventListener('click', self.dialog_schliessen);
|
//dlg.slideDown(300);
|
});
|
};
|
|
this.dialog_schliessen = function () {
|
document.querySelector('.close-btn').removeEventListener('click', self.dialog_schliessen);
|
//$('.dialog').slideUp(300);
|
var dlg = document.querySelector('.dialog');
|
//dlg.style.display = "none";
|
dlg.style.height = '0';
|
dlg.innerHTML = '';
|
};
|
|
/*
|
this.html_zeigen = function(html) {
|
// was mit dem html getan werden soll..
|
var elem = document.querySelector('#dateien');
|
elem.innerHTML = html;
|
$('.figure').click(fm_dateiwahl);
|
};
|
*/
|
|
this.fm_dateiwahl = function(ev) {
|
var elem = ev.target;
|
//console.log(elem.nodeName);
|
//var elem = this;
|
//console.log('dateiwahl nach click, event shift: ' + ev.shiftKey + ", event ctrl: " + ev.ctrlKey);
|
if(self.modus == 'kacheln') {
|
// Kacheln
|
if(elem.classList.contains("icon-folder")) {
|
//console.log('contains icon-folder');
|
if(/*ev.shiftKey || */ ev.ctrlKey) {
|
//$(elem).find('.dateiname').addClass('datei-gewaehlt');
|
elem.querySelector('.dateiname').classList.add('datei-gewaehlt');
|
} else {
|
var ordner = elem.parentElement.querySelector('.dateiname').textContent.trim();
|
//console.log('ordner ' + ordner);
|
if(self.pfad.length > 0) {
|
self.pfad = self.pfad + '/' + ordner;
|
} else {
|
self.pfad = ordner;
|
}
|
self.fm_get_list(self.pfad);
|
}
|
} else if(elem.classList.contains('datei')) {
|
//console.log('contains datei');
|
if(/*ev.shiftKey || */ ev.ctrlKey) {
|
// mehrere Dateien sollen gewaehlt werden
|
} else {
|
var gew = document.querySelector('.datei-gewaehlt');
|
if(gew != undefined) {
|
gew.classList.remove('datei-gewaehlt');
|
}
|
}
|
//$(elem).find('.dateiname').addClass('datei-gewaehlt');
|
var par = elem.parentElement;
|
//console.log(par.nodeName);
|
par.querySelector('.dateiname').classList.add('datei-gewaehlt');
|
} else {
|
//console.log('kein folder oder file...');
|
}
|
} else {
|
// Liste NOCH NEU MACHEN OHNE jQuery, wenn Liste implementiert ist
|
if(elem.querySelector('.datei-elem').children(0).hasClass('icon-doc-text-inv')) {
|
// Datei
|
if(/*ev.shiftKey || */ ev.ctrlKey) {
|
// mehrere Dateien sollen gewaehlt werden
|
} else {
|
document.querySelector('.table-info').classList.remove('table-info');
|
document.querySelector('.datei-gewaehlt').classList.remove('datei-gewaehlt');
|
}
|
elem.classList.add('table-info');
|
elem.querySelector('.dateiname').classList.add('datei-gewaehlt');
|
} else {
|
// Ordner
|
if(/*ev.shiftKey || */ ev.ctrlKey) {
|
elem.children[0].classList.add('datei-gewaehlt');
|
} else {
|
var ordner = elem.querySelector('.dateiname').textContent;
|
if(self.pfad.length > 0) {
|
self.pfad = self.pfad + '/' + ordner;
|
} else {
|
self.pfad = ordner;
|
}
|
self.fm_get_list(pfad);
|
}
|
}
|
}
|
};
|
|
|
this.fm_render_list = function (fl) {
|
if (self.modus == 'kacheln') {
|
// Kachelansicht
|
|
// neu bauen
|
|
//html_erzeugen = function(vurl, inhalt, cb)
|
|
self.html_erzeugen("data/tpl/kacheln.tpl", fl, function(html) {
|
var elem = document.querySelector('#dateien');
|
elem.innerHTML = html;
|
//$('.figure').click(fm_dateiwahl);
|
self.addEvtListener('.figure', 'click', self.fm_dateiwahl);
|
|
|
});
|
|
/*
|
var template = $('#tpl-kacheln').html();
|
Mustache.parse(template); // optional, speeds up future uses
|
$('.datei-zeile').attr('onclick', '').unbind('click');
|
$('#dateien').empty();
|
$('#dateien').html(Mustache.render(template, fl));
|
$('.figure').click(fm_dateiwahl);
|
*/
|
} else {
|
// Listenansicht
|
|
// neu bauen
|
|
/*
|
var template = $('#tpl-liste').html();
|
Mustache.parse(template); // optional, speeds up future uses
|
$('.figure').attr('onclick', '').unbind('click');
|
$('#dateien').empty();
|
$('#dateien').html(Mustache.render(template, fl));
|
$('.datei-zeile').click(fm_dateiwahl);
|
*/
|
}
|
};
|
|
this.fm_get_path = function (uid) {
|
//console.log('pfad: ' + pfad);
|
var restdir;
|
if (self.pfad.indexOf(self.PUB_DIR) > -1) {
|
restdir = self.pfad.substr(self.PUB_DIR.length);
|
} else if (self.pfad.indexOf(self.PERS_DIR) > -1) {
|
restdir = self.pfad.substr(self.PERS_DIR.length);
|
} else if (self.pfad.indexOf(self.BASE_DIR) > -1) {
|
restdir = self.pfad.substr(self.BASE_DIR.length);
|
} else if (self.pfad.indexOf(self.DATA_DIR) > -1) {
|
restdir = self.pfad.substr(self.DATA_DIR.length);
|
} else if (self.pfad.indexOf(self.DAV_DIR) > -1) {
|
restdir = self.pfad.substr(self.DAV_DIR.length);
|
}
|
if (restdir !== undefined && restdir.startsWith('/')) {
|
restdir = restdir.substr(1);
|
if (restdir.indexOf(self.WWW_DIR) > -1) {
|
restdir = restdir.replace(self.WWW_DIR, 'data');
|
}
|
}
|
var pdir = self.fm_get_base(uid);
|
// console.log('fm_get_path path: ' + pdir + "/" + restdir);
|
if (restdir.length > 1) {
|
return pdir + "/" + restdir;
|
} else {
|
return pdir;
|
}
|
};
|
|
this.fm_get_base = function (uid) {
|
//console.log('pfad: ' + pfad);
|
var pdir;
|
if (self.pfad.indexOf(self.PUB_DIR) > -1) {
|
pdir = '/data/' + uid;
|
} else if (self.pfad.indexOf(self.PERS_DIR) > -1) {
|
pdir = '/home/' + uid;
|
} else if (self.pfad.indexOf(self.BASE_DIR) > -1) {
|
pdir = '';
|
} else if (self.pfad.indexOf(self.DATA_DIR) > -1) {
|
pdir = '';
|
}
|
//console.log('fm_get_base base: ' + pdir + uid);
|
return pdir;
|
};
|
|
|
/* API functions */
|
|
// http://localhost:8079/file-cms/svc?c=de.uhilger.filecms.api.FileMgr&f=JSONNICE&m=list&p=
|
this.fm_get_list = function (relPfad) {
|
//$('#ansicht').attr('onclick', '').unbind('click');
|
var m = '?c=de.uhilger.filecms.api.FileMgr&m=list&p=' + relPfad;
|
var u = '../svc' + m;
|
self.fm_get(u, "json", function (respText) {
|
var resp = JSON.parse(respText);
|
if (resp.List[0].FileRef !== undefined) {
|
var files = new Array();
|
if (resp.List[0].FileRef instanceof Array) {
|
for (var i = 0; i < resp.List[0].FileRef.length; i++) {
|
files.push(new FileRef(resp.List[0].FileRef[i]));
|
}
|
} else {
|
files.push(new FileRef(resp.List[0].FileRef));
|
}
|
var fl = new FileList(files);
|
self.fm_render_list(fl);
|
//self.fm_render_list(resp);
|
} else {
|
// #dateien leeren
|
var elem = document.querySelector("#dateien");
|
elem.innerHTML = '';
|
}
|
|
// Breadcrumb
|
|
// Breadcrumb-Ansicht
|
//$('.breadcrumb-item').attr('onclick','').unbind('click');
|
//$('#bcnav').empty();
|
var dirList = new Array();
|
var rp = '';
|
//console.log("'" + relPfad + "'");
|
var dirs = relPfad.split('/');
|
//console.log(dirs.length);
|
dirList.push(new BcrFile(rp, 'Home'));
|
if(relPfad.length > 0) {
|
for(var i = 0; i < dirs.length - 1; i++) {
|
if(rp.length > 0 ) {
|
dirList.push(new BcrFile(rp + '/' + dirs[i], dirs[i]));
|
rp = rp + '/' + dirs[i];
|
} else {
|
dirList.push(new BcrFile(dirs[i], dirs[i]));
|
rp = dirs[i];
|
}
|
}
|
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));
|
|
self.html_erzeugen("data/tpl/bcr.tpl", bl, function(html) {
|
var elem = document.querySelector('.breadcrumb');
|
elem.innerHTML = html;
|
//self.addEvtListener('.figure', 'click', self.fm_dateiwahl);
|
});
|
|
}
|
|
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]));
|
self.html_erzeugen("data/tpl/bcr2.tpl", dirList[dirList.length-1], function(html) {
|
var elem = document.querySelector('.breadcrumb');
|
elem.innerHTML += html;
|
//self.addEvtListener('.figure', 'click', self.fm_dateiwahl);
|
});
|
} else {
|
//template = $('#tpl-bcr2').html();
|
//Mustache.parse(template); // optional, speeds up future uses
|
//$('#bcnav').append(Mustache.render(template, dirList[0]));
|
self.html_erzeugen("data/tpl/bcr2.tpl", dirList[0], function(html) {
|
var elem = document.querySelector('.breadcrumb');
|
elem.innerHTML += html;
|
//self.addEvtListener('.figure', 'click', self.fm_dateiwahl);
|
});
|
}
|
|
//$('#bcnav').append($('#tpl-bcr3').html());
|
self.html_erzeugen("data/tpl/bcr3.tpl", bl, function(html) {
|
var elem = document.querySelector('.breadcrumb');
|
elem.innerHTML += html;
|
//self.addEvtListener('.figure', 'click', self.fm_dateiwahl);
|
});
|
} else {
|
//self.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());
|
self.html_erzeugen("data/tpl/bcr2.tpl", dirList[0], function(html) {
|
var elem = document.querySelector('.breadcrumb');
|
elem.innerHTML += html;
|
//self.addEvtListener('.figure', 'click', self.fm_dateiwahl);
|
});
|
self.html_erzeugen("data/tpl/bcr3.tpl", dirList[0], function(html) {
|
var elem = document.querySelector('.breadcrumb');
|
elem.innerHTML += html;
|
//self.addEvtListener('.figure', 'click', self.fm_dateiwahl);
|
});
|
}
|
|
/*
|
$('.breadcrumb-item').click(fm_bc_click);
|
$('#ansicht').click(fm_ansicht_umschalten);
|
fm_set_modus();
|
|
if(fm_slideshow) {
|
$("[data-fancybox]").fancybox({
|
loop: true,
|
idleTime: 2
|
});
|
}
|
*/
|
|
// Breadcrumb
|
|
});
|
};
|
|
/* -------- An- und Abmelden ------------- */
|
|
this.fm_get_login = function() {
|
var m = '?c=de.uhilger.filecms.pub.SessionManager&m=getSessionUser';
|
var u = '../pub' + m;
|
self.fm_get(u, "text", function (resp) {
|
self.userid = resp;
|
self.login_zeigen();
|
//document.querySelector("#userMenu").textContent = resp;
|
});
|
};
|
|
this.fm_logout = function() {
|
var m = '?c=de.uhilger.filecms.pub.SessionManager&m=expireSession';
|
var u = '../pub' + m;
|
self.fm_get(u, "text", function (resp) {
|
//$('#userMenu').text('nicht angemeldet');
|
window.location.href = '../logout.html';
|
});
|
};
|
|
/* ----- Hilfsfunktionen ----- */
|
|
this.serialisieren = function(obj) {
|
return '{"' + obj.constructor.name + '":' + JSON.stringify(obj) + '}';
|
};
|
|
this.addEvtListener = function(selector, eventName, func) {
|
|
document.querySelectorAll(selector).forEach(elem => { elem.addEventListener(eventName, func); });
|
|
/*
|
var elems = document.querySelectorAll(selector);
|
var index;
|
for (index = 0; index < elems.length; index++) {
|
elems[index].addEventListener(eventName, func);
|
}
|
*/
|
};
|
|
this.removeAllListeners = function(id) {
|
var el = document.getElementById(id);
|
elClone = el.cloneNode(true);
|
el.parentNode.replaceChild(elClone, el);
|
}; // https://stackoverflow.com/questions/19469881/remove-all-event-listeners-of-specific-type
|
|
/* ---- Vorlagen ---- */
|
|
this.html_erzeugen = function(vurl, inhalt, cb) {
|
var vorlage = self.cache[vurl];
|
if(vorlage === undefined) {
|
self.vorlage_laden_und_fuellen(vurl, inhalt, cb);
|
} else {
|
self.vorlage_fuellen(vurl, inhalt, cb);
|
}
|
};
|
|
this.vorlage_fuellen = function(vurl, inhalt, cb) {
|
cb(Mustache.render(self.cache[vurl], inhalt));
|
};
|
|
this.vorlage_laden_und_fuellen = function(vurl, inhalt, cb) {
|
self.fm_get(vurl, "text", function(antwort) {
|
self.cache[vurl] = antwort;
|
self.vorlage_fuellen(vurl, inhalt, cb);
|
});
|
};
|
|
|
|
/* -------- ajax helper functions ----------- */
|
|
this.fm_get = function (u, dtype, scallback) {
|
var xmlhttp = new XMLHttpRequest();
|
var url = u;
|
xmlhttp.onreadystatechange = function() {
|
if (this.readyState == 4 && this.status == 200) {
|
scallback(this.responseText);
|
}
|
};
|
xmlhttp.open("GET", url, true);
|
xmlhttp.send();
|
};
|
|
}
|