mirror of
https://github.com/nasa/openmct.git
synced 2025-01-09 06:22:37 +00:00
976333d7f7
Historical and real-time data flowing Added formatting, and limits. Support telemetry objects themselves and not just composition of telemetry objects Apply default time range if none supplied (15 minutes)
135 lines
4.8 KiB
JavaScript
135 lines
4.8 KiB
JavaScript
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2016, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT 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 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.
|
|
*****************************************************************************/
|
|
|
|
define([
|
|
"./src/directives/MCTTable",
|
|
"./src/controllers/TelemetryTableController",
|
|
"./src/controllers/TableOptionsController",
|
|
'../../commonUI/regions/src/Region',
|
|
'../../commonUI/browse/src/InspectorRegion',
|
|
"text!./res/templates/table-options-edit.html",
|
|
"text!./res/templates/telemetry-table.html",
|
|
"legacyRegistry"
|
|
], function (
|
|
MCTTable,
|
|
TelemetryTableController,
|
|
TableOptionsController,
|
|
Region,
|
|
InspectorRegion,
|
|
tableOptionsEditTemplate,
|
|
telemetryTableTemplate,
|
|
legacyRegistry
|
|
) {
|
|
/**
|
|
* Two region parts are defined here. One that appears only in browse
|
|
* mode, and one that appears only in edit mode. For not they both point
|
|
* to the same representation, but a different key could be used here to
|
|
* include a customized representation for edit mode.
|
|
*/
|
|
var tableInspector = new InspectorRegion(),
|
|
tableOptionsEditRegion = new Region({
|
|
name: "table-options",
|
|
title: "Table Options",
|
|
modes: ['edit'],
|
|
content: {
|
|
key: "table-options-edit"
|
|
}
|
|
});
|
|
tableInspector.addRegion(tableOptionsEditRegion);
|
|
|
|
legacyRegistry.register("platform/features/table", {
|
|
"extensions": {
|
|
"types": [
|
|
{
|
|
"key": "table",
|
|
"name": "Telemetry Table",
|
|
"cssclass": "icon-tabular-realtime",
|
|
"description": "A table of values over a given time period. The table will be automatically updated with new values as they become available",
|
|
"priority": 861,
|
|
"features": "creation",
|
|
"delegates": [
|
|
"telemetry"
|
|
],
|
|
"inspector": tableInspector,
|
|
"contains": [
|
|
{
|
|
"has": "telemetry"
|
|
}
|
|
],
|
|
"model": {
|
|
"composition": []
|
|
},
|
|
"views": [
|
|
"table"
|
|
]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "TelemetryTableController",
|
|
"implementation": TelemetryTableController,
|
|
"depends": ["$scope", "openmct"]
|
|
},
|
|
{
|
|
"key": "TableOptionsController",
|
|
"implementation": TableOptionsController,
|
|
"depends": ["$scope"]
|
|
}
|
|
|
|
],
|
|
"views": [
|
|
{
|
|
"name": "Telemetry Table",
|
|
"key": "table",
|
|
"cssclass": "icon-tabular-realtime",
|
|
"template": telemetryTableTemplate,
|
|
"needs": [
|
|
"telemetry"
|
|
],
|
|
"delegation": true,
|
|
"editable": false
|
|
}
|
|
],
|
|
"directives": [
|
|
{
|
|
"key": "mctTable",
|
|
"implementation": MCTTable,
|
|
"depends": ["$timeout"]
|
|
}
|
|
],
|
|
"representations": [
|
|
{
|
|
"key": "table-options-edit",
|
|
"template": tableOptionsEditTemplate
|
|
}
|
|
],
|
|
"stylesheets": [
|
|
{
|
|
"stylesheetUrl": "css/table.css",
|
|
"priority": "mandatory"
|
|
}
|
|
]
|
|
}
|
|
});
|
|
|
|
});
|