2014-02-17 13:07:28 +01:00
|
|
|
/* ----------------------------------------------------------
|
|
|
|
Utilities
|
|
|
|
---------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Console log fix
|
|
|
|
-------------------------- */
|
|
|
|
if (typeof(console) === 'undefined') {
|
|
|
|
var console = {};
|
|
|
|
console.log = console.error = console.info = console.debug = console.warn = console.trace = console.dir = console.dirxml = console.group = console.groupEnd = console.time = console.timeEnd = console.assert = console.profile = function() {};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Array utilities
|
|
|
|
https://github.com/Darklg/JavaScriptUtilities/blob/master/assets/js/vanilla-js/libs/vanilla-arrays.js
|
|
|
|
-------------------------- */
|
|
|
|
Array.contains = function(needle, haystack) {
|
|
|
|
var i = 0,
|
|
|
|
length = haystack.length;
|
|
|
|
|
|
|
|
for (; i < length; i++) {
|
|
|
|
if (haystack[i] === needle) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
Array.each = function(arrayToParse, callback) {
|
|
|
|
var i = 0,
|
|
|
|
length = arrayToParse.length;
|
|
|
|
for (; i < length; i++) {
|
|
|
|
callback(arrayToParse[i]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* CSS classes utilities
|
|
|
|
https://github.com/Darklg/JavaScriptUtilities/blob/master/assets/js/vanilla-js/libs/vanilla-classes.js
|
|
|
|
-------------------------- */
|
|
|
|
Element.getClassNames = function(element) {
|
|
|
|
var classNames = [],
|
|
|
|
elementClassName = element.className;
|
|
|
|
if (elementClassName !== '') {
|
|
|
|
elementClassName = elementClassName.replace(/\s+/g, ' ');
|
|
|
|
classNames = elementClassName.split(' ');
|
|
|
|
}
|
|
|
|
return classNames;
|
|
|
|
};
|
|
|
|
Element.hasClass = function(element, className) {
|
|
|
|
if (element.classList) {
|
|
|
|
return element.classList.contains(className);
|
|
|
|
}
|
|
|
|
return Array.contains(className, Element.getClassNames(element));
|
|
|
|
};
|
|
|
|
Element.addClass = function(element, className) {
|
|
|
|
if (element.classList) {
|
|
|
|
element.classList.add(className);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!Element.hasClass(element, className)) {
|
|
|
|
var elementClasses = Element.getClassNames(element);
|
|
|
|
elementClasses.push(className);
|
|
|
|
element.className = elementClasses.join(' ');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Element.removeClass = function(element, className) {
|
|
|
|
if (element.classList) {
|
|
|
|
element.classList.remove(className);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var elementClasses = Element.getClassNames(element);
|
|
|
|
var newElementClasses = [];
|
|
|
|
var i = 0,
|
|
|
|
arLength = elementClasses.length;
|
|
|
|
for (; i < arLength; i++) {
|
|
|
|
if (elementClasses[i] !== className) {
|
|
|
|
newElementClasses.push(elementClasses[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
element.className = newElementClasses.join(' ');
|
|
|
|
};
|
|
|
|
Element.toggleClass = function(element, className) {
|
|
|
|
if (!Element.hasClass(element, className)) {
|
|
|
|
Element.addClass(element, className);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Element.removeClass(element, className);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Add Event
|
|
|
|
https://github.com/Darklg/JavaScriptUtilities/blob/master/assets/js/vanilla-js/libs/vanilla-events.js
|
|
|
|
-------------------------- */
|
2018-09-03 08:46:00 +02:00
|
|
|
window.addEvent = function(el, eventName, callback, options) {
|
2014-02-17 13:07:28 +01:00
|
|
|
if (el.addEventListener) {
|
2018-09-03 08:46:00 +02:00
|
|
|
if (!options || typeof(options) !== "object") {
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
options.capture = false;
|
|
|
|
el.addEventListener(eventName, callback, options);
|
2014-02-17 13:07:28 +01:00
|
|
|
}
|
|
|
|
else if (el.attachEvent) {
|
|
|
|
el.attachEvent("on" + eventName, function(e) {
|
|
|
|
return callback.call(el, e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
window.eventPreventDefault = function(event) {
|
|
|
|
return (event.preventDefault) ? event.preventDefault() : event.returnValue = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-11-19 10:13:02 +01:00
|
|
|
/* Draggable
|
|
|
|
|
|
|
|
Sources :
|
|
|
|
http://jsfiddle.net/5t3Ju/
|
|
|
|
http://stackoverflow.com/questions/9334084/moveable-draggable-div
|
|
|
|
http://jsfiddle.net/tovic/Xcb8d/light/
|
|
|
|
-------------------------- */
|
|
|
|
|
|
|
|
var dragg = function(id) {
|
|
|
|
|
|
|
|
// Variables
|
|
|
|
this.elem = document.getElementById(id),
|
|
|
|
this.selected = null, // Selected element
|
|
|
|
this.dragged = false, // Dragging status
|
|
|
|
this.x_pos = 0, this.y_pos = 0, // Stores x & y coordinates of the mouse pointer
|
|
|
|
this.x_elem = 0, this.y_elem = 0; // Stores top, left values (edge) of the element
|
|
|
|
|
2018-05-09 18:34:00 +02:00
|
|
|
var _initDrag = function(e){
|
|
|
|
if (e.type === "touchstart"){
|
|
|
|
x_pos = e.touches[0].clientX;
|
|
|
|
y_pos = e.touches[0].clientY;
|
|
|
|
}
|
|
|
|
|
2014-11-19 10:13:02 +01:00
|
|
|
selected = elem;
|
|
|
|
x_elem = x_pos - selected.offsetLeft;
|
|
|
|
y_elem = y_pos - selected.offsetTop;
|
2018-05-09 18:34:00 +02:00
|
|
|
};
|
2014-11-19 10:13:02 +01:00
|
|
|
|
2018-05-09 18:34:00 +02:00
|
|
|
var _shutDrag = function(e){
|
|
|
|
selected = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
var _onMove = function(e){
|
2014-11-19 10:13:02 +01:00
|
|
|
// Get position
|
2018-05-09 18:34:00 +02:00
|
|
|
x_pos = document.all ? window.event: e.pageX;
|
|
|
|
y_pos = document.all ? window.event : e.pageY;
|
|
|
|
|
2018-09-03 08:46:00 +02:00
|
|
|
if (e.type === "touchmove") {
|
2018-05-09 18:34:00 +02:00
|
|
|
x_pos = e.touches[0].clientX;
|
|
|
|
y_pos = e.touches[0].clientY;
|
|
|
|
}
|
2014-11-19 10:13:02 +01:00
|
|
|
|
|
|
|
if (selected !== null) {
|
2018-09-03 08:46:00 +02:00
|
|
|
if (e.type === "touchmove"){
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2014-11-19 10:13:02 +01:00
|
|
|
dragged = true;
|
|
|
|
selected.style.left = (x_pos - x_elem) + 'px';
|
|
|
|
selected.style.top = (y_pos - y_elem) + 'px';
|
|
|
|
}
|
2018-05-09 18:34:00 +02:00
|
|
|
};
|
|
|
|
|
2018-09-01 10:35:55 +02:00
|
|
|
// Prevent native D'n'D behavior
|
|
|
|
window.addEvent(elem, 'dragstart', function(e){
|
|
|
|
window.eventPreventDefault(e);
|
|
|
|
});
|
|
|
|
|
2018-05-09 18:34:00 +02:00
|
|
|
// Start dragging
|
|
|
|
window.addEvent(elem, 'mousedown', _initDrag);
|
|
|
|
window.addEvent(elem, 'touchstart', _initDrag);
|
|
|
|
|
|
|
|
// Will be called when user dragging an element
|
|
|
|
window.addEvent(window, 'mousemove', _onMove);
|
2018-09-03 08:46:00 +02:00
|
|
|
window.addEvent(window, 'touchmove', _onMove, {passive: false});
|
2014-11-19 10:13:02 +01:00
|
|
|
|
|
|
|
// Destroy the object when we are done
|
2018-05-09 18:34:00 +02:00
|
|
|
window.addEvent(window, 'mouseup', _shutDrag);
|
|
|
|
window.addEvent(window, 'touchend', _shutDrag);
|
|
|
|
window.addEvent(window, 'touchcancel', _shutDrag);
|
2014-11-19 10:13:02 +01:00
|
|
|
|
|
|
|
// Handle click event
|
|
|
|
window.addEvent(elem, 'click', function(e){
|
|
|
|
// Prevent default event
|
|
|
|
window.eventPreventDefault(e);
|
|
|
|
|
2018-09-01 10:35:55 +02:00
|
|
|
// Do not propagate to other click event if dragged out
|
2014-11-19 10:13:02 +01:00
|
|
|
if (dragged) {
|
|
|
|
e.stopImmediatePropagation();
|
|
|
|
}
|
|
|
|
// Reset dragging status
|
|
|
|
dragged = false;
|
|
|
|
});
|
2019-02-13 19:27:34 +01:00
|
|
|
};
|
2014-11-19 10:13:02 +01:00
|
|
|
|
2014-02-17 13:07:28 +01:00
|
|
|
/* Smallest DOMReady
|
|
|
|
http://dustindiaz.com/smallest-domready-ever
|
|
|
|
-------------------------- */
|
2014-02-04 21:41:53 +01:00
|
|
|
function domReady(cb) {
|
|
|
|
/in/.test(document.readyState) // in = loadINg
|
|
|
|
? setTimeout('domReady('+cb+')', 9)
|
|
|
|
: cb();
|
|
|
|
}
|
|
|
|
|
2014-02-17 13:07:28 +01:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------
|
|
|
|
Main
|
|
|
|
---------------------------------------------------------- */
|
2014-02-04 21:41:53 +01:00
|
|
|
domReady(function(){
|
2014-02-17 13:48:04 +01:00
|
|
|
// Don't do this in iframe
|
|
|
|
if (window.self !== window.top) {return false;}
|
2014-02-04 21:41:53 +01:00
|
|
|
|
2014-05-20 13:15:12 +02:00
|
|
|
// Set and store meta viewport
|
|
|
|
var meta_viewport = document.querySelector('meta[name="viewport"]');
|
|
|
|
if (meta_viewport === null) {
|
|
|
|
meta_viewport = document.createElement('meta');
|
|
|
|
meta_viewport.setAttribute('name', "viewport");
|
|
|
|
meta_viewport.setAttribute('content', "");
|
|
|
|
document.getElementsByTagName('head')[0].insertBefore(meta_viewport, null);
|
|
|
|
}
|
|
|
|
meta_viewport = document.querySelector('meta[name="viewport"]');
|
|
|
|
meta_viewport_content = meta_viewport.getAttribute('content');
|
|
|
|
|
2014-02-17 13:07:28 +01:00
|
|
|
|
|
|
|
// Create portal link
|
2014-02-04 21:41:53 +01:00
|
|
|
var portal = document.createElement('a');
|
2015-10-07 09:50:55 +02:00
|
|
|
portal.setAttribute('id', 'ynh-overlay-switch');
|
2014-05-14 18:42:20 +02:00
|
|
|
portal.setAttribute('href', '/yunohost/sso/');
|
2014-05-20 11:58:46 +02:00
|
|
|
portal.setAttribute('class', 'disableAjax');
|
2014-02-17 13:07:28 +01:00
|
|
|
document.body.insertBefore(portal, null);
|
2014-02-04 21:41:53 +01:00
|
|
|
|
2014-11-19 10:13:02 +01:00
|
|
|
// Portal link is draggable, for user convenience
|
2015-08-31 17:24:26 +02:00
|
|
|
dragg('ynh-overlay-switch');
|
2014-11-19 10:13:02 +01:00
|
|
|
|
|
|
|
|
2014-05-14 01:42:31 +02:00
|
|
|
// Create overlay element
|
2019-02-01 21:42:41 +01:00
|
|
|
var overlay = document.createElement('iframe');
|
|
|
|
overlay.src = "/yunohost/sso/info.html";
|
2015-08-31 17:22:05 +02:00
|
|
|
overlay.setAttribute("id","ynh-overlay");
|
2019-02-13 19:27:34 +01:00
|
|
|
overlay.setAttribute("style","visibility: hidden;"); // make sure the overlay is invisible already when loading it
|
2014-05-14 01:42:31 +02:00
|
|
|
|
|
|
|
document.body.insertBefore(overlay, null);
|
|
|
|
|
|
|
|
|
2014-02-17 13:07:28 +01:00
|
|
|
// Get user's app
|
|
|
|
var r = new XMLHttpRequest();
|
|
|
|
r.open("GET", "/ynhpanel.json", true);
|
|
|
|
r.onreadystatechange = function () {
|
|
|
|
// Die if error
|
|
|
|
if (r.readyState != 4 || r.status != 200) return;
|
|
|
|
|
|
|
|
// Response is JSON
|
|
|
|
response = JSON.parse(r.responseText);
|
|
|
|
|
2019-02-01 21:42:41 +01:00
|
|
|
|
|
|
|
// Add portal stylesheet
|
|
|
|
var portalStyle = document.createElement("link");
|
|
|
|
portalStyle.setAttribute("rel", "stylesheet");
|
|
|
|
portalStyle.setAttribute("type", "text/css");
|
|
|
|
portalStyle.setAttribute("href", '/ynhpanel.css');
|
|
|
|
document.getElementsByTagName("head")[0].insertBefore(portalStyle, null);
|
|
|
|
|
2019-02-12 20:18:19 +01:00
|
|
|
// Custom style from theme id specified in config
|
2019-02-01 21:42:41 +01:00
|
|
|
var portalThemeStyle = document.createElement("link");
|
|
|
|
portalThemeStyle.setAttribute("rel", "stylesheet");
|
|
|
|
portalThemeStyle.setAttribute("type", "text/css");
|
|
|
|
portalThemeStyle.setAttribute("href", '/yunohost/sso/assets/themes/'+ response.theme +'/css/ynhpanel.css');
|
|
|
|
document.getElementsByTagName("head")[0].insertBefore(portalThemeStyle, null);
|
|
|
|
|
|
|
|
|
2014-02-17 13:07:28 +01:00
|
|
|
// Bind YNH Button
|
|
|
|
window.addEvent(portal, 'click', function(e){
|
|
|
|
// Prevent default click
|
|
|
|
window.eventPreventDefault(e);
|
2019-02-01 21:42:41 +01:00
|
|
|
// Toggle overlay on YNHPortal button click
|
|
|
|
Element.toggleClass(overlay, 'visible');
|
2014-02-17 14:36:51 +01:00
|
|
|
Element.toggleClass(portal, 'visible');
|
2014-05-20 13:15:12 +02:00
|
|
|
Element.toggleClass(document.querySelector('html'), 'ynh-panel-active');
|
2019-02-01 21:42:41 +01:00
|
|
|
Element.toggleClass(overlay, 'ynh-active');
|
2014-05-20 13:15:12 +02:00
|
|
|
|
2019-02-01 21:42:41 +01:00
|
|
|
if(overlay.classList.contains('ynh-active')) {
|
2014-05-20 13:15:12 +02:00
|
|
|
meta_viewport.setAttribute('content', meta_viewport_content);
|
2019-02-01 21:42:41 +01:00
|
|
|
Element.addClass(overlay, 'ynh-fadeIn');
|
|
|
|
Element.removeClass(overlay, 'ynh-fadeOut');
|
2014-05-14 01:42:31 +02:00
|
|
|
}else {
|
2014-05-20 13:15:12 +02:00
|
|
|
meta_viewport.setAttribute('content', "width=device-width");
|
2019-02-01 21:42:41 +01:00
|
|
|
Element.removeClass(overlay, 'ynh-fadeIn');
|
|
|
|
Element.addClass(overlay, 'ynh-fadeOut');
|
2014-05-14 01:42:31 +02:00
|
|
|
}
|
2014-02-17 13:07:28 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
};
|
|
|
|
r.send();
|
|
|
|
|
|
|
|
});
|