pip-webui
Version:
HTML5 UI for LOB applications
44 lines (32 loc) • 1.25 kB
JavaScript
(function (angular) {
var thisModule = angular.module('nodesModule', []);
thisModule.controller('nodesController', function($scope, pipAppBar) {
var req;
// Show page title
pipAppBar.showTitleText('Nodes');
// Show menu icon to open sidenav
pipAppBar.showMenuNavIcon();
// Show local page actions
pipAppBar.showLocalActions();
// Add shadow under the appbar
pipAppBar.hideShadow();
// Get test data
req = {method: 'GET', url: 'http://fakeserver.net' + '/api/nodes'};
$http(req)
.success(function (result) {
$scope.nodes = result;
$scope.iconPath = 'M0,15a15,15 0 1,0 30,0a15,15 0 1,0 -30,0';
$scope.location_points = getLocations();
})
.error(function (error) {
console.log('Error: get nodes error! ', error);
});
function getLocations() {
var points = [];
$scope.nodes.forEach(function (node) {
points.push(node.location_points);
});
return points;
}
});
})(window.angular);