-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontroller.js
43 lines (33 loc) · 1.39 KB
/
controller.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
angular.module('myApp', ['firebase'])
.controller("MyCtrl", ["$scope", "$firebase",
function ($scope, $firebase) {
var ref = new Firebase('');
var regexref = new Firebase('/recurring');
var sync = $firebase(ref);
var resync = $firebase(regexref);
// if ref points to a data collection
$scope.list = sync.$asArray();
// if ref points to a single record
$scope.rec = sync.$asObject();
$scope.addRecurring = function (show){
resync.$push({'search': show});
};
$scope.record = function (element, parent) {
var scheduledDate = new Date(element.StartTime);
var duration = (element.EndTime - element.StartTime);
// this should send the good stuff
sync.$update("status", {
commanded: 'new',
program: parent.replace('.','-'),
day: scheduledDate.getDate(),
month: scheduledDate.getMonth(),
year: scheduledDate.getFullYear(),
hh: scheduledDate.getHours(),
mm: scheduledDate.getMinutes(),
length: duration,
id: element.ProgramId,
title: element.Title
});
};
}
]);