This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
trev/nodejs/public/javascripts/angularApp.js

55 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-01-12 17:49:13 +01:00
var app = angular.module('autome', ['ui.router']);
app.config(['$stateProvider', '$urlRouterProvider',function($stateProvider, $urlRouterProvider) {
$stateProvider
.state('home', {
url: '/home',
templateUrl: '/home.html',
controller: 'MainCtrl',
resolve: {
postPromise: ['arduino', function(arduino) {
return arduino.getRCs();
}]
}
2016-01-12 17:49:13 +01:00
});
$urlRouterProvider.otherwise('home');
}]);
app.factory('arduino', ['$http', function($http, auth){
var o = {
RCs: []
};
o.getRCs = function ( ) {
return $http.get('/getRCs').success(function(data) {
angular.copy(data, o.RCs);
});
2016-01-12 17:49:13 +01:00
}
2016-01-21 22:01:57 +01:00
o.irTest = function ( ) {
return $http.get('/irTest');
}
2016-01-12 17:49:13 +01:00
return o;
}]);
app.controller('MainCtrl', ['$scope', 'arduino', function ($scope, arduino){
$scope.RCs = arduino.RCs;
2016-02-18 15:44:58 +01:00
for (var i = $scope.RCs.length - 1; i >= 0; i--) {
$scope.RCs[i].state = true;
}
$scope.irTest = function(RC){
2016-01-21 22:01:57 +01:00
2016-01-21 22:08:27 +01:00
arduino.irTest();
2016-02-18 15:44:58 +01:00
RC.state = (RC.state) ? false : true;
2016-01-21 22:01:57 +01:00
};
2016-01-12 17:49:13 +01:00
}]);