@@ -27,13 +27,16 @@ define(
27
27
var SIX_HOURS = 6 * 60 * 60 * 1000 ;
28
28
29
29
function TimeConductorController ( $scope , $timeout , conductor ) {
30
- var now = Date . now ( ) ;
31
30
var self = this ;
32
31
33
32
this . $scope = $scope ;
33
+ this . $timeout = $timeout ;
34
34
this . conductor = conductor ;
35
35
36
36
$scope . formModel = { } ;
37
+ $scope . modeSelector = {
38
+ value : 'fixed'
39
+ } ;
37
40
38
41
conductor . on ( 'bounds' , function ( bounds ) {
39
42
$scope . formModel = {
@@ -42,19 +45,52 @@ define(
42
45
} ;
43
46
} ) ;
44
47
45
- //Temporary workaround for resizing issue
46
- $timeout ( function ( ) {
47
- //Set the time conductor to some default
48
- conductor . bounds ( { start : now - SIX_HOURS , end : now } ) ;
49
- } , 1000 ) ;
48
+ conductor . on ( 'follow' , function ( follow ) {
49
+ $scope . followMode = follow ;
50
+ } ) ;
50
51
51
- Object . keys ( TimeConductorController . prototype ) . filter ( function ( key ) {
52
+ Object . keys ( TimeConductorController . prototype ) . filter ( function ( key ) {
52
53
return typeof TimeConductorController . prototype [ key ] === 'function' ;
53
54
} ) . forEach ( function ( key ) {
54
55
self [ key ] = self [ key ] . bind ( self ) ;
55
56
} ) ;
57
+
58
+ //Temporary workaround for resizing issue
59
+ $timeout ( self . initialize , 1000 ) ;
60
+
61
+ $scope . $watch ( 'modeModel.selected' , this . switchMode ) ;
62
+
63
+ $scope . modeModel = {
64
+ selected : 'fixed' ,
65
+ options : [
66
+ {
67
+ key : 'fixed' ,
68
+ glyph : '\ue604' ,
69
+ name : 'Fixed Time-Span' ,
70
+ description : 'Display data that falls between two fixed dates'
71
+ } ,
72
+ {
73
+ key : 'realtime' ,
74
+ glyph : '\u0043' ,
75
+ name : 'Real-time Mode' ,
76
+ description : 'Monitor real-time streaming data as it comes in to the application. The Time Conductor will automatically advance itself based on a UTC clock.'
77
+ } ,
78
+ {
79
+ key : 'latest' ,
80
+ glyph : '\u0044' ,
81
+ name : 'Latest Available Data' ,
82
+ description : 'Monitor real-time streaming data as it comes in to the application. In contrast to real-time mode the time conductor will only advance when data becomes available.'
83
+ }
84
+ ]
85
+ }
56
86
}
57
87
88
+ TimeConductorController . prototype . initialize = function ( ) {
89
+ var now = Math . ceil ( Date . now ( ) / 1000 ) * 1000 ;
90
+ //Set the time conductor to some default
91
+ this . conductor . bounds ( { start : now - SIX_HOURS , end : now } ) ;
92
+ } ;
93
+
58
94
TimeConductorController . prototype . validateStart = function ( start ) {
59
95
var bounds = this . conductor . bounds ( ) ;
60
96
return this . conductor . validateBounds ( { start : start , end : bounds . end } ) === true ;
@@ -73,6 +109,43 @@ define(
73
109
}
74
110
} ;
75
111
112
+ TimeConductorController . prototype . switchMode = function ( newMode ) {
113
+ if ( this . mode ) {
114
+ this . mode ( ) ;
115
+ }
116
+ this . mode = TimeConductorController . modes [ newMode ] . call ( this , this . conductor ) ;
117
+ } ;
118
+
119
+ TimeConductorController . modes = {
120
+ 'fixed' : function ( conductor ) {
121
+ conductor . follow ( false ) ;
122
+ } ,
123
+ 'realtime' : function ( conductor ) {
124
+ var tickInterval = 1000 ;
125
+ var $timeout = this . $timeout ;
126
+ var timeoutPromise = $timeout ( tick , tickInterval ) ;
127
+
128
+ conductor . follow ( true ) ;
129
+
130
+ function tick ( ) {
131
+ var bounds = conductor . bounds ( ) ;
132
+ var interval = bounds . end - bounds . start ;
133
+ var now = Math . ceil ( Date . now ( ) / 1000 ) * 1000 ;
134
+ conductor . bounds ( { start : now - interval , end : now } ) ;
135
+
136
+ timeoutPromise = $timeout ( tick , tickInterval )
137
+ }
138
+
139
+ return function destroy ( ) {
140
+ $timeout . cancel ( timeoutPromise ) ;
141
+ }
142
+ } ,
143
+ 'latest' : function ( conductor ) {
144
+ //Don't know what to do here yet...
145
+ conductor . follow ( true ) ;
146
+ }
147
+ } ;
148
+
76
149
return TimeConductorController ;
77
150
}
78
151
) ;
0 commit comments