blob: dc027e6ca42d7f4bd0d10c8c54343a547acac163 [file] [log] [blame]
Bri Prebilic Colee0311892015-05-15 11:27:15 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17(function () {
18 'use strict';
19
Bri Prebilic Coled189e282015-06-05 10:00:22 -070020 var urlSuffix = '/rs/dashboard';
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070021
Bri Prebilic Colef34c9892015-06-08 11:51:01 -070022 function randomDate(start, end) {
23 return new Date(start.getTime() + Math.random() * (end.getTime() - start.getTime()));
24 }
25
Bri Prebilic Colee0311892015-05-15 11:27:15 -070026 angular.module('cordHome', [])
Bri Prebilic Colef34c9892015-06-08 11:51:01 -070027 .controller('CordHomeCtrl', ['$log', '$scope', '$resource', '$filter',
28 function ($log, $scope, $resource, $filter) {
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070029 var DashboardData, resource;
Bri Prebilic Cole60553c82015-06-05 08:50:17 -070030 $scope.page.curr = 'dashboard';
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070031
Bri Prebilic Coled189e282015-06-05 10:00:22 -070032 DashboardData = $resource($scope.shared.url + urlSuffix);
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070033 resource = DashboardData.get({},
34 // success
35 function () {
36 $scope.bundle = resource.bundle;
37 $scope.users = resource.users;
Bri Prebilic Colef34c9892015-06-08 11:51:01 -070038
39 if ($.isEmptyObject($scope.shared.userActivity)) {
40 $scope.users.forEach(function (user) {
41 var date = randomDate(new Date(2015, 0, 1), new Date());
42
43 $scope.shared.userActivity[user.id] = $filter('date')(date, 'mediumTime');
44 });
45 }
46
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070047 },
48 // error
49 function () {
50 $log.error('Problem with resource', resource);
51 });
52 $log.debug('Resource received:', resource);
53
54 $log.debug('Cord Home Ctrl has been created.');
Bri Prebilic Colee0311892015-05-15 11:27:15 -070055 }]);
56}());