File tree 3 files changed +15
-2
lines changed
conductor-v2-compatibility/src
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ define(
35
35
36
36
this . boundsListener = this . boundsListener . bind ( this ) ;
37
37
this . timeSystemListener = this . timeSystemListener . bind ( this ) ;
38
+ this . followListener = this . followListener . bind ( this ) ;
38
39
}
39
40
40
41
ConductorRepresenter . prototype . boundsListener = function ( bounds ) {
@@ -51,7 +52,11 @@ define(
51
52
start : bounds . start ,
52
53
end : bounds . end ,
53
54
domain : timeSystem . metadata . key
54
- } ) ;
55
+ } , this . conductor . follow ( ) ) ;
56
+ } ;
57
+
58
+ ConductorRepresenter . prototype . followListener = function ( ) {
59
+ this . boundsListener ( this . conductor . bounds ( ) ) ;
55
60
} ;
56
61
57
62
// Handle a specific representation of a specific domain object
@@ -61,6 +66,7 @@ define(
61
66
62
67
this . conductor . on ( "bounds" , this . boundsListener ) ;
63
68
this . conductor . on ( "timeSystem" , this . timeSystemListener ) ;
69
+ this . conductor . on ( "follow" , this . followListener )
64
70
}
65
71
} ;
66
72
Original file line number Diff line number Diff line change 82
82
ng-mousemove ="subplot.hover($event) "
83
83
mct-drag ="subplot.continueDrag($event) "
84
84
mct-drag-down ="subplot.startDrag($event) "
85
- mct-drag-up ="subplot.endDrag($event); plot.update() ">
85
+ mct-drag-up ="subplot.endDrag($event); plot.update(); ">
86
86
</ mct-chart >
87
87
<!-- TODO: Move into correct position; make part of group; infer from set of actions -->
88
88
< div class ="l-local-controls gl-plot-local-controls t-plot-display-controls "
Original file line number Diff line number Diff line change @@ -239,6 +239,7 @@ define(
239
239
setBasePanZoom ( bounds ) ;
240
240
requery ( ) ;
241
241
}
242
+ self . updateStatus ( $scope . domainObject , follow ) ;
242
243
}
243
244
244
245
this . modeOptions = new PlotModeOptions ( [ ] , subPlotFactory ) ;
@@ -369,6 +370,12 @@ define(
369
370
return this . pending ;
370
371
} ;
371
372
373
+ PlotController . prototype . updateStatus = function ( domainObject , follow ) {
374
+ if ( domainObject . hasCapability ( 'status' ) ) {
375
+ domainObject . getCapability ( 'status' ) . set ( 'timeconductor-unsynced' , follow && this . isZoomed ( ) ) ;
376
+ }
377
+ } ;
378
+
372
379
return PlotController ;
373
380
}
374
381
) ;
You can’t perform that action at this time.
0 commit comments