strong-arc
Version:
A visual suite for the StrongLoop API Platform
67 lines (58 loc) • 1.53 kB
JavaScript
Arc.service('ArcServices', [
'$http',
'$log',
function($http, $log) {
var svc = {};
svc.getFeatureFlags = function() {
return $http.get('/feature-flags')
.success(function(flags) {
return flags;
})
.error(function(error) {
$log.warn('bad Arc get feature flags: ' + error.message);
});
};
return svc;
}
]);
Arc.service('ArcNavigationService', [
'$location',
function($location) {
var svc = {};
svc.postLogoutNav = function(){
$location.path('/login');
};
var getVisibilityInfo = function() {
var prefixes = ['ms', 'moz', 'webkit'];
var propName = 'hidden';
var eventName = 'visibilitychange';
prefixes.forEach(function(prefix) {
if (window[prefix] !== undefined) {
propName = prefix + 'Hidden';
eventName = prefix + eventName;
}
return false;
});
return {
propertyName: propName,
eventName: eventName
};
};
var visInfo = getVisibilityInfo();
svc.visibilityChange = function(onHide, onShow) {
var handleVisibilityChange = function(event) {
if (document[visInfo.propertyName]) {
if (typeof onHide === 'function') {
onHide.call();
}
} else {
if (typeof onShow === 'function') {
onShow.call();
}
}
};
document.addEventListener(visInfo.eventName, handleVisibilityChange);
};
return svc;
}
]);