lemonldap-ng/lemonldap-ng-manager/site/static/js/llApp.js

220 lines
6.1 KiB
JavaScript

/* LemonLDAP::NG base app module
*
*/
(function() {
'use strict';
var llapp = angular.module('llApp', []);
/* Translation system
*
* This part provides:
* - 3 functions to translate:
* * translate(word)
* * translateP(paragraph)
* * translateField(object, property)
* - an HTML attribute called 'trspan'. Exemple: <h3 trspan="portal"/>
*/
llapp.provider('$translator', $Translator);
function $Translator() {
var res = {};
/* Search for default language */
if (navigator) {
var nlangs = [navigator.language];
if (navigator.languages) nlangs = navigator.languages;
var langs = [],
langs2 = [];
nlangs.forEach(function(nl) {
availableLanguages.forEach(function(al) {
if (al == nl) {
langs.push(al)
} else if (al.substring(0, 1) == nl.substring(0, 1)) {
langs2.push(al);
}
});
});
res.lang = langs[0] ? langs[0] : langs2[0] ? langs2[0] : 'en';
} else {
res.lang = 'en';
}
res.deferredTr = [];
res.translationFields = {};
res.translate = function(s) {
if (res.translationFields[s]) {
s = res.translationFields[s];
}
return s;
};
res.translateField = function(node, field) {
return res.translate(node[field]);
};
res.translateP = function(s) {
if (s && res.translationFields.portal) s = s.replace(/__(\w+)__/g, function(match, w) {
return res.translate(w);
});
return s;
};
this.$get = ['$q', '$http', function($q, $http) {
res.last = '';
res.init = function(lang) {
if (!lang) lang = res.lang;
var d = $q.defer();
if (res.last != lang) {
res.last = lang;
$http.get(staticPrefix + 'languages/' + lang + '.json').success(function(data) {
res.translationFields = data;
res.deferredTr.forEach(function(h) {
h.e[h.f](res.translationFields[h.m]);
});
res.deferredTr = [];
d.resolve("Translation files loaded");
}).error(function(j, e) {
serrors(j, e);
d.reject('');
});
} else {
d.resolve('No change');
}
return d.promise;
};
return res;
}];
}
llapp.directive('trspan', ['$translator', function($translator) {
return {
restrict: 'A',
replace: false,
transclude: true,
scope: {
trspan: "@"
},
link: function(scope, elem, attr) {
if ($translator.translationFields.portal) {
attr.trspan = $translator.translate(attr.trspan)
}
/* Deferred translations will be done after JSON download */
else {
$translator.deferredTr.push({
"e": elem,
"f": 'text',
"m": attr.trspan
});
}
elem.text(attr.trspan);
},
template: ""
}
}]);
/* File reader directive
*
* Add "onReadFile" HTML attribute to be used in a "file" input
* The content off attribute will be launched.
*
* Example:
* <input type="file" on-read-file="replaceContent($fileContent)"/>
*/
llapp.directive('onReadFile', ['$parse', function($parse) {
return {
restrict: 'A',
scope: false,
link: function(scope, element, attrs) {
var fn = $parse(attrs.onReadFile);
element.on('change', function(onChangeEvent) {
var reader = new FileReader();
reader.onload = function(onLoadEvent) {
scope.$apply(function() {
fn(scope, {
$fileContent: onLoadEvent.target.result
});
});
};
reader.readAsText((onChangeEvent.srcElement || onChangeEvent.target).files[0]);
});
}
};
}]);
/* Resizable system
*
* Add a "resizer" HTML attribute
*/
llapp.directive('resizer', ['$document', function($document) {
var rsize, hsize;
return function($scope, $element, $attrs) {
$element.on('mousedown', function(event) {
if ($attrs.resizer == 'vertical') {
rsize = $($attrs.resizerRight).width() + $($attrs.resizerLeft).width();
} else {
hsize = $($attrs.resizerTop).height() + $($attrs.resizerBottom).height();
}
event.preventDefault();
$document.on('mousemove', mousemove);
$document.on('mouseup', mouseup);
});
function mousemove(event) {
if ($attrs.resizer == 'vertical') {
// Handle vertical resizer
var x = event.pageX;
if ($attrs.resizerMax && x > $attrs.resizerMax) {
x = parseInt($attrs.resizerMax);
}
$($attrs.resizerLeft).css({
width: x + 'px'
});
$($attrs.resizerRight).css({
width: (rsize - x) + 'px'
});
} else {
// Handle horizontal resizer
var y = event.pageY - $('#navbar').height();
$($attrs.resizerTop).css({
height: y + 'px'
});
$($attrs.resizerBottom).css({
height: (hsize - y) + 'px'
});
}
}
function mouseup() {
$document.unbind('mousemove', mousemove);
$document.unbind('mouseup', mouseup);
}
};
}]);
/* Authentication system
*
* If a 401 code is returned and if "Authorization" header contains an url,
* Au
*/
llapp.factory('$lmhttp', ['$q', '$location', function($q, $location) {
return {
'responseError': function(rejection) {
// data / status / config / statusText / headers()
var url = rejection.headers();
if (rejection.status == 401 && url.authorization && url.authorization.match(/^http/)) {
/* TODO: replace this with a popup */
window.location = url.authorization + '?url=' + window.btoa(window.location).replace(/\//g, '_');
} else {
alert(rejection.statusText);
}
return $q.reject(rejection);
}
};
}]);
llapp.config(['$httpProvider', function($httpProvider) {
$httpProvider.interceptors.push('$lmhttp');
}]);
})();