Semaphore/public/js/app.js
Matej Kramny 2e1ad91e7a Running tasks
- Link models with tables
- Basic API to fetch everything
2016-04-07 13:49:34 +01:00

84 lines
2.2 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 || url.indexOf('uib/template') !== -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;
$rootScope.ws = null;
$http.get('/user')
.then(function (user) {
$rootScope.user = user;
$rootScope.loggedIn = true;
$rootScope.startWS();
}, function () {
$state.go('auth.login');
});
}
$rootScope.startWS = function () {
var ws_proto = 'ws:';
if (document.location.protocol == 'https:') {
ws_proto = 'wss:';
}
$rootScope.ws = new WebSocket(ws_proto + '//' + document.location.host + '/api/ws');
$rootScope.ws.onclose = function () {
console.log('WS closed, retrying');
setTimeout($rootScope.startWS, 2000);
}
$rootScope.ws.onmessage = function (e) {
console.log('msg', e.data);
}
}
$rootScope.refreshUser();
}]);