mirror of
https://github.com/nasa/openmct.git
synced 2025-03-02 20:48:57 +00:00
[Events] Style compliance
Made some small changes to keep up with the style standards. #18.
This commit is contained in:
parent
581f14d117
commit
7d3c2b7243
@ -22,7 +22,9 @@
|
|||||||
/*global define,Promise*/
|
/*global define,Promise*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Module defining EventTelemetry. Created by chacskaylo on 06/18/2015.
|
* Module defining EventTelemetry.
|
||||||
|
* Created by chacskaylo on 06/18/2015.
|
||||||
|
* Modified by slhale on 06/23/2015.
|
||||||
*/
|
*/
|
||||||
define(
|
define(
|
||||||
[],
|
[],
|
||||||
@ -81,9 +83,10 @@ define(
|
|||||||
};
|
};
|
||||||
|
|
||||||
generatorData.getRangeValue = function (i, range) {
|
generatorData.getRangeValue = function (i, range) {
|
||||||
var domainDelta = this.getDomainValue(i) - firstObservedTime;
|
var domainDelta = this.getDomainValue(i) - firstObservedTime,
|
||||||
var ind = i%messages.length;
|
ind = i % messages.length;
|
||||||
return "TEMP " + i.toString() + "-" + messages[ind][0] + "[" + domainDelta.toString() + "]";
|
return "TEMP " + i.toString() + "-" + messages[ind][0] + "[" + domainDelta.toString() + "]";
|
||||||
|
// TODO: Unsure why we are prepeding 'TEMP'
|
||||||
};
|
};
|
||||||
|
|
||||||
return generatorData;
|
return generatorData;
|
||||||
|
@ -1,65 +0,0 @@
|
|||||||
/*****************************************************************************
|
|
||||||
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
||||||
* as represented by the Administrator of the National Aeronautics and Space
|
|
||||||
* Administration. All rights reserved.
|
|
||||||
*
|
|
||||||
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
||||||
* "License"); you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
||||||
* License for the specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*
|
|
||||||
* Open MCT Web includes source code licensed under additional open source
|
|
||||||
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
||||||
* this source code distribution or the Licensing information page available
|
|
||||||
* at runtime from the About dialog for additional information.
|
|
||||||
*****************************************************************************/
|
|
||||||
/*global define,Promise*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Module defining EventMsgColumn. Created by chacskaylo on 06/18/2015.
|
|
||||||
*/
|
|
||||||
define(
|
|
||||||
[],
|
|
||||||
function () {
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A column which will report telemetry event messages.
|
|
||||||
* (typically, measurements.) Used by the EventListController.
|
|
||||||
*
|
|
||||||
* @constructor
|
|
||||||
* @param rangeMetadata an object with the machine- and human-
|
|
||||||
* readable names for this range (in `key` and `name`
|
|
||||||
* fields, respectively.)
|
|
||||||
* @param {TelemetryFormatter} telemetryFormatter the telemetry
|
|
||||||
* formatting service, for making values human-readable.
|
|
||||||
*/
|
|
||||||
function EventMsgColumn(eventMsgMetadata, telemetryFormatter) {
|
|
||||||
return {
|
|
||||||
/**
|
|
||||||
* Get the title to display in this column's header.
|
|
||||||
* @returns {string} the title to display
|
|
||||||
*/
|
|
||||||
getTitle: function () {
|
|
||||||
return eventMsgMetadata.name;
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Get the text to display inside a row under this
|
|
||||||
* column.
|
|
||||||
* @returns {string} the text to display
|
|
||||||
*/
|
|
||||||
getValue: function (domainObject, data, index) {
|
|
||||||
return data.getRangeValue(index, eventMsgMetadata.key);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return EventMsgColumn;
|
|
||||||
}
|
|
||||||
);
|
|
@ -1,67 +0,0 @@
|
|||||||
/*****************************************************************************
|
|
||||||
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
||||||
* as represented by the Administrator of the National Aeronautics and Space
|
|
||||||
* Administration. All rights reserved.
|
|
||||||
*
|
|
||||||
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
||||||
* "License"); you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
||||||
* License for the specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*
|
|
||||||
* Open MCT Web includes source code licensed under additional open source
|
|
||||||
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
||||||
* this source code distribution or the Licensing information page available
|
|
||||||
* at runtime from the About dialog for additional information.
|
|
||||||
*****************************************************************************/
|
|
||||||
/*global define,Promise*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Module defining DomainColumn. Created by vwoeltje on 11/18/14.
|
|
||||||
*/
|
|
||||||
define(
|
|
||||||
[],
|
|
||||||
function () {
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A column which will report telemetry range values
|
|
||||||
* (typically, measurements.) Used by the ScrollingListController.
|
|
||||||
*
|
|
||||||
* @constructor
|
|
||||||
* @param rangeMetadata an object with the machine- and human-
|
|
||||||
* readable names for this range (in `key` and `name`
|
|
||||||
* fields, respectively.)
|
|
||||||
* @param {TelemetryFormatter} telemetryFormatter the telemetry
|
|
||||||
* formatting service, for making values human-readable.
|
|
||||||
*/
|
|
||||||
function SeverityColumn(rangeMetadata, telemetryFormatter) {
|
|
||||||
return {
|
|
||||||
/**
|
|
||||||
* Get the title to display in this column's header.
|
|
||||||
* @returns {string} the title to display
|
|
||||||
*/
|
|
||||||
getTitle: function () {
|
|
||||||
return rangeMetadata.name;
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Get the text to display inside a row under this
|
|
||||||
* column.
|
|
||||||
* @returns {string} the text to display
|
|
||||||
*/
|
|
||||||
getValue: function (domainObject, data, index) {
|
|
||||||
return telemetryFormatter.formatRangeValue(
|
|
||||||
data.getSeverityValue(index, rangeMetadata.key)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return SeverityColumn;
|
|
||||||
}
|
|
||||||
);
|
|
Loading…
x
Reference in New Issue
Block a user