mirror of
https://github.com/nasa/openmct.git
synced 2025-06-21 08:39:59 +00:00
Revert "Merge remote-tracking branch 'origin/open793'"
This reverts commitf49552779a
, reversing changes made toe068173f3e
.
This commit is contained in:
@ -67,8 +67,8 @@ define(
|
||||
$scope.$watchCollection('filters', function () {
|
||||
self.updateRows($scope.rows);
|
||||
});
|
||||
$scope.$watch('rows', this.updateRows.bind(this));
|
||||
$scope.$watch('headers', this.updateHeaders.bind(this));
|
||||
$scope.$watch('rows', this.updateRows.bind(this));
|
||||
|
||||
/*
|
||||
* Listen for rows added individually (eg. for real-time tables)
|
||||
@ -101,19 +101,13 @@ define(
|
||||
*/
|
||||
MCTTableController.prototype.newRow = function (event, rowIndex) {
|
||||
var row = this.$scope.rows[rowIndex];
|
||||
//If rows.length === 1 we need to calculate column widths etc.
|
||||
// so do the updateRows logic, rather than the 'add row' logic
|
||||
if (this.$scope.rows.length === 1){
|
||||
this.updateRows(this.$scope.rows);
|
||||
} else {
|
||||
//Add row to the filtered, sorted list of all rows
|
||||
if (this.filterRows([row]).length > 0) {
|
||||
this.insertSorted(this.$scope.displayRows, row);
|
||||
}
|
||||
|
||||
this.$timeout(this.setElementSizes.bind(this))
|
||||
.then(this.scrollToBottom.bind(this));
|
||||
//Add row to the filtered, sorted list of all rows
|
||||
if (this.filterRows([row]).length > 0) {
|
||||
this.insertSorted(this.$scope.displayRows, row);
|
||||
}
|
||||
|
||||
this.$timeout(this.setElementSizes.bind(this))
|
||||
.then(this.scrollToBottom.bind(this));
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -69,36 +69,53 @@ define(
|
||||
RTTelemetryTableController.prototype = Object.create(TableController.prototype);
|
||||
|
||||
/**
|
||||
*
|
||||
Override the subscribe function defined on the parent controller in
|
||||
order to handle realtime telemetry instead of historical.
|
||||
*/
|
||||
RTTelemetryTableController.prototype.addHistoricalData = function () {
|
||||
//Noop for realtime table
|
||||
};
|
||||
RTTelemetryTableController.prototype.subscribe = function () {
|
||||
var self = this;
|
||||
self.$scope.rows = undefined;
|
||||
(this.subscriptions || []).forEach(function (unsubscribe){
|
||||
unsubscribe();
|
||||
});
|
||||
|
||||
/**
|
||||
* Handling for real-time data
|
||||
*/
|
||||
RTTelemetryTableController.prototype.updateRealtime = function () {
|
||||
var datum,
|
||||
row,
|
||||
self = this;
|
||||
if (this.handle) {
|
||||
this.handle.getTelemetryObjects().forEach(function (telemetryObject) {
|
||||
this.handle.unsubscribe();
|
||||
}
|
||||
|
||||
function updateData(){
|
||||
var datum,
|
||||
row;
|
||||
self.handle.getTelemetryObjects().forEach(function (telemetryObject){
|
||||
datum = self.handle.getDatum(telemetryObject);
|
||||
if (datum) {
|
||||
row = self.table.getRowValues(telemetryObject, datum);
|
||||
self.$scope.rows.push(row);
|
||||
if (!self.$scope.rows){
|
||||
self.$scope.rows = [row];
|
||||
self.$scope.$digest();
|
||||
} else {
|
||||
self.$scope.rows.push(row);
|
||||
|
||||
if (self.$scope.rows.length > self.maxRows) {
|
||||
self.$scope.$broadcast('remove:row', 0);
|
||||
self.$scope.rows.shift();
|
||||
if (self.$scope.rows.length > self.maxRows) {
|
||||
self.$scope.$broadcast('remove:row', 0);
|
||||
self.$scope.rows.shift();
|
||||
}
|
||||
|
||||
self.$scope.$broadcast('add:row',
|
||||
self.$scope.rows.length - 1);
|
||||
}
|
||||
|
||||
self.$scope.$broadcast('add:row',
|
||||
self.$scope.rows.length - 1);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
this.handle = this.$scope.domainObject && this.telemetryHandler.handle(
|
||||
this.$scope.domainObject,
|
||||
updateData,
|
||||
true // Lossless
|
||||
);
|
||||
|
||||
this.setup();
|
||||
};
|
||||
|
||||
return RTTelemetryTableController;
|
||||
|
@ -58,14 +58,14 @@ define(
|
||||
telemetryFormatter);
|
||||
this.changeListeners = [];
|
||||
|
||||
$scope.rows = [];
|
||||
$scope.rows = undefined;
|
||||
|
||||
// Subscribe to telemetry when a domain object becomes available
|
||||
this.$scope.$watch('domainObject', function(domainObject){
|
||||
if (!domainObject)
|
||||
return;
|
||||
|
||||
self.subscribe(domainObject);
|
||||
self.subscribe();
|
||||
self.registerChangeListeners();
|
||||
});
|
||||
|
||||
@ -79,28 +79,14 @@ define(
|
||||
* @private
|
||||
*/
|
||||
TelemetryTableController.prototype.registerChangeListeners = function () {
|
||||
var self = this;
|
||||
|
||||
this.changeListeners.forEach(function (listener) {
|
||||
return listener && listener();
|
||||
});
|
||||
this.changeListeners = [];
|
||||
|
||||
/**
|
||||
* Listen to all children for model mutation events that might
|
||||
* indicate that metadata is available, or that composition has
|
||||
* changed.
|
||||
*/
|
||||
if (this.$scope.domainObject.hasCapability('composition')) {
|
||||
this.$scope.domainObject.useCapability('composition').then(function (composees) {
|
||||
composees.forEach(function (composee) {
|
||||
self.changeListeners.push(composee.getCapability('mutation').listen(self.setup.bind(self)));
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
//Register mutation listener for the parent itself
|
||||
self.changeListeners.push(self.$scope.domainObject.getCapability('mutation').listen(this.setup.bind(this)));
|
||||
// When composition changes, re-subscribe to the various
|
||||
// telemetry subscriptions
|
||||
this.changeListeners.push(this.$scope.$watchCollection(
|
||||
'domainObject.getModel().composition', this.subscribe.bind(this)));
|
||||
|
||||
//Change of bounds in time conductor
|
||||
this.changeListeners.push(this.$scope.$on('telemetry:display:bounds',
|
||||
@ -124,38 +110,26 @@ define(
|
||||
*/
|
||||
TelemetryTableController.prototype.subscribe = function () {
|
||||
var self = this;
|
||||
this.$scope.rows = [];
|
||||
|
||||
if (this.handle) {
|
||||
this.handle.unsubscribe();
|
||||
}
|
||||
|
||||
//Noop because not supporting realtime data right now
|
||||
function update(){
|
||||
//Is there anything to show?
|
||||
if (self.table.columns.length > 0){
|
||||
self.updateRealtime();
|
||||
}
|
||||
function noop(){
|
||||
}
|
||||
|
||||
this.handle = this.$scope.domainObject && this.telemetryHandler.handle(
|
||||
self.$scope.domainObject,
|
||||
update,
|
||||
this.$scope.domainObject,
|
||||
noop,
|
||||
true // Lossless
|
||||
);
|
||||
|
||||
this.handle.request({}).then(this.addHistoricalData.bind(this));
|
||||
|
||||
//Call setup at least once
|
||||
this.setup();
|
||||
};
|
||||
|
||||
/**
|
||||
* Override this method to define handling for realtime data.
|
||||
*/
|
||||
TelemetryTableController.prototype.updateRealtime = function () {
|
||||
//Noop in an historical table
|
||||
};
|
||||
|
||||
/**
|
||||
* Populates historical data on scope when it becomes available
|
||||
* @private
|
||||
@ -183,52 +157,45 @@ define(
|
||||
*/
|
||||
TelemetryTableController.prototype.setup = function () {
|
||||
var handle = this.handle,
|
||||
domainObject = this.$scope.domainObject,
|
||||
table = this.table,
|
||||
self = this,
|
||||
metadatas = [];
|
||||
self = this;
|
||||
|
||||
function addMetadata(object) {
|
||||
if (object.hasCapability('telemetry') &&
|
||||
object.getCapability('telemetry').getMetadata()){
|
||||
metadatas.push(object.getCapability('telemetry').getMetadata());
|
||||
}
|
||||
}
|
||||
if (handle) {
|
||||
handle.promiseTelemetryObjects().then(function () {
|
||||
table.buildColumns(handle.getMetadata());
|
||||
|
||||
function buildAndFilterColumns(){
|
||||
if (metadatas && metadatas.length > 0){
|
||||
self.$scope.rows = [];
|
||||
table.buildColumns(metadatas);
|
||||
self.filterColumns();
|
||||
}
|
||||
}
|
||||
|
||||
//Add telemetry metadata (if any) for parent object
|
||||
addMetadata(domainObject);
|
||||
|
||||
//If object is composed of multiple objects, also add
|
||||
// telemetry metadata from children
|
||||
if (domainObject.hasCapability('composition')) {
|
||||
domainObject.useCapability('composition').then(function (composition) {
|
||||
composition.forEach(addMetadata);
|
||||
}).then(function () {
|
||||
//Build columns based on available metadata
|
||||
buildAndFilterColumns();
|
||||
// When table column configuration changes, (due to being
|
||||
// selected or deselected), filter columns appropriately.
|
||||
self.changeListeners.push(self.$scope.$watchCollection(
|
||||
'domainObject.getModel().configuration.table.columns',
|
||||
self.filterColumns.bind(self)
|
||||
));
|
||||
});
|
||||
} else {
|
||||
//Build columns based on collected metadata
|
||||
buildAndFilterColumns();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @param object The object for which data is available (table may
|
||||
* be composed of multiple objects)
|
||||
* @param datum The data received from the telemetry source
|
||||
*/
|
||||
TelemetryTableController.prototype.updateRows = function (object, datum) {
|
||||
this.$scope.rows.push(this.table.getRowValues(object, datum));
|
||||
};
|
||||
|
||||
/**
|
||||
* When column configuration changes, update the visible headers
|
||||
* accordingly.
|
||||
* @private
|
||||
*/
|
||||
TelemetryTableController.prototype.filterColumns = function () {
|
||||
var columnConfig = this.table.getColumnConfiguration();
|
||||
this.table.saveColumnConfiguration(columnConfig);
|
||||
TelemetryTableController.prototype.filterColumns = function (columnConfig) {
|
||||
if (!columnConfig){
|
||||
columnConfig = this.table.getColumnConfiguration();
|
||||
this.table.saveColumnConfiguration(columnConfig);
|
||||
}
|
||||
//Populate headers with visible columns (determined by configuration)
|
||||
this.$scope.headers = Object.keys(columnConfig).filter(function (column) {
|
||||
return columnConfig[column];
|
||||
|
Reference in New Issue
Block a user