105 lines
2.4 KiB
JavaScript
105 lines
2.4 KiB
JavaScript
|
|
|
|
var app = angular.module( 'RconApp', ['ngMaterial', 'ngRoute', 'nvd3'] );
|
|
|
|
app.service( 'rconService', [RconService] );
|
|
|
|
app.config( function ( $mdThemingProvider, $routeProvider )
|
|
{
|
|
$mdThemingProvider.theme( 'default' ).primaryPalette( 'blue',
|
|
{
|
|
'default': '700'
|
|
}).accentPalette( 'blue' );
|
|
|
|
$routeProvider.when( "/home", { Title: "Home" } )
|
|
$routeProvider.when( "/:address/console", { Title: "Console", templateUrl: "html/console.html", Nav: true } )
|
|
$routeProvider.when( "/:address/playerlist", { Title: "Player List", templateUrl: "html/playerlist.html", Nav: true } )
|
|
$routeProvider.when( "/:address/player/:userid", { Title: "Player Info", templateUrl: "html/playerInfo.html" } )
|
|
$routeProvider.when( "/:address/player/:userid/xp", { Title: "Player Xp Stats", templateUrl: "html/playerXp.html" } )
|
|
$routeProvider.otherwise( { redirectTo: '/home' } );
|
|
|
|
} );
|
|
|
|
app.controller( 'RconController', RconController );
|
|
|
|
function RconController( $scope, $rootScope, rconService, $mdSidenav, $timeout, $mdDialog, $route )
|
|
{
|
|
$scope.$route = $route;
|
|
|
|
|
|
$scope.pages = $.map( $route.routes, function ( value, index )
|
|
{
|
|
return [value];
|
|
} );
|
|
|
|
$scope.OpenLeftMenu = function ()
|
|
{
|
|
$mdSidenav( 'left' ).toggle();
|
|
};
|
|
|
|
$scope.IsConnected = function ()
|
|
{
|
|
return rconService.IsConnected();
|
|
}
|
|
|
|
$rootScope.Nav = function ( url )
|
|
{
|
|
return url.replace( ":address", rconService.Address );
|
|
}
|
|
|
|
$rootScope.$on( '$stateChangeStart', function ( next, current )
|
|
{
|
|
console.log( next );
|
|
} );
|
|
|
|
rconService.OnOpen = function ()
|
|
{
|
|
$scope.Connected = true;
|
|
$scope.$broadcast( "OnConnected" );
|
|
$scope.$digest();
|
|
$scope.address = rconService.Address;
|
|
}
|
|
|
|
rconService.OnClose = function ( ev )
|
|
{
|
|
$scope.$broadcast( "OnDisconnected", ev );
|
|
$scope.$digest();
|
|
}
|
|
|
|
rconService.OnError = function ( ev )
|
|
{
|
|
$scope.$broadcast( "OnConnectionError", ev );
|
|
$scope.$digest();
|
|
}
|
|
|
|
rconService.OnMessage = function ( msg )
|
|
{
|
|
$scope.$apply( function ()
|
|
{
|
|
$scope.$broadcast( "OnMessage", msg );
|
|
} );
|
|
}
|
|
}
|
|
|
|
app.filter( 'SecondsToDuration', [SecondsToDuration] );
|
|
|
|
function SecondsToDuration()
|
|
{
|
|
return function ( input )
|
|
{
|
|
input = parseInt( input );
|
|
|
|
var out = "";
|
|
var hours = Math.floor( input / 3600 );
|
|
if ( input > 3600 ) out += hours + "h ";
|
|
|
|
var minutes = Math.floor( input / 60 ) % 60;
|
|
if ( input > 60 ) out += minutes + "m ";
|
|
|
|
var seconds = input % 60;
|
|
out += seconds + "s";
|
|
|
|
return out;
|
|
}
|
|
}
|