Skip to content

Commit 1b7fc57

Browse files
committed
Added status support to plots
1 parent a4f6f6f commit 1b7fc57

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

platform/features/conductor-v2-compatibility/src/ConductorRepresenter.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ define(
3535

3636
this.boundsListener = this.boundsListener.bind(this);
3737
this.timeSystemListener = this.timeSystemListener.bind(this);
38+
this.followListener = this.followListener.bind(this);
3839
}
3940

4041
ConductorRepresenter.prototype.boundsListener = function (bounds) {
@@ -51,7 +52,11 @@ define(
5152
start: bounds.start,
5253
end: bounds.end,
5354
domain: timeSystem.metadata.key
54-
});
55+
}, this.conductor.follow());
56+
};
57+
58+
ConductorRepresenter.prototype.followListener = function () {
59+
this.boundsListener(this.conductor.bounds());
5560
};
5661

5762
// Handle a specific representation of a specific domain object
@@ -61,6 +66,7 @@ define(
6166

6267
this.conductor.on("bounds", this.boundsListener);
6368
this.conductor.on("timeSystem", this.timeSystemListener);
69+
this.conductor.on("follow", this.followListener)
6470
}
6571
};
6672

platform/features/plot/res/templates/plot.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
ng-mousemove="subplot.hover($event)"
8383
mct-drag="subplot.continueDrag($event)"
8484
mct-drag-down="subplot.startDrag($event)"
85-
mct-drag-up="subplot.endDrag($event); plot.update()">
85+
mct-drag-up="subplot.endDrag($event); plot.update();">
8686
</mct-chart>
8787
<!-- TODO: Move into correct position; make part of group; infer from set of actions -->
8888
<div class="l-local-controls gl-plot-local-controls t-plot-display-controls"

platform/features/plot/src/PlotController.js

+7
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ define(
239239
setBasePanZoom(bounds);
240240
requery();
241241
}
242+
self.updateStatus($scope.domainObject, follow);
242243
}
243244

244245
this.modeOptions = new PlotModeOptions([], subPlotFactory);
@@ -369,6 +370,12 @@ define(
369370
return this.pending;
370371
};
371372

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+
372379
return PlotController;
373380
}
374381
);

0 commit comments

Comments
 (0)