Semaphore/public/js/app.js
Matej Kramny 121567fa03 sample Projects UI, cleanup vendor/
- Update dependencies
- Remove lib/
- Dashboard
2016-03-28 18:28:26 +01:00

63 lines
1.7 KiB
JavaScript

var app = angular.module('semaphore', ['scs.couch-potato', 'ui.router', 'ui.bootstrap', 'angular-loading-bar']);
couchPotato.configureApp(app);
app.config(['$httpProvider', function ($httpProvider) {
$httpProvider.interceptors.push(['$q', '$injector', '$log', function ($q, $injector, $log) {
return {
request: function (request) {
var url = request.url;
if (url.indexOf('/tpl/') !== -1) {
request.url = url = url.replace('/tpl/', '/public/html/');
}
if (!(url.indexOf('/public') !== -1 || url.indexOf('://') !== -1)) {
request.url = "/api" + request.url;
request.headers['Cache-Control'] = 'no-cache';
}
return request || $q.when(request);
}
};
}]);
}]);
app.run(['$rootScope', '$window', '$couchPotato', '$injector', '$state', '$http', function ($rootScope, $window, $couchPotato, $injector, $state, $http) {
app.lazy = $couchPotato;
$rootScope.$on('$stateChangeStart', function (event, toState, toParams, fromState, fromParams) {
if (toState.pageTitle) {
$rootScope.pageTitle = "Loading " + toState.pageTitle;
} else {
$rootScope.pageTitle = "Loading..";
}
});
$rootScope.$on('$stateChangeSuccess', function (event, toState, toParams, fromState, fromParams) {
$rootScope.previousState = {
name: fromState.name,
params: fromParams
}
if (toState.pageTitle) {
$rootScope.pageTitle = toState.pageTitle;
} else {
$rootScope.pageTitle = "Ansible-Semaphore Page";
}
});
$rootScope.refreshUser = function () {
$rootScope.user = null;
$rootScope.loggedIn = false;
$http.get('/user')
.then(function (user) {
$rootScope.user = user;
$rootScope.loggedIn = true;
}, function () {
$state.go('auth.login');
});
}
$rootScope.refreshUser();
}]);