Merge pull request #1500 from nasa/open1469

[Features] Added Autoflow Tabular to open source features. Fixes #1469
This commit is contained in:
Andrew Henry
2017-04-04 16:38:50 -07:00
committed by GitHub
9 changed files with 1206 additions and 2 deletions

View File

@@ -23,11 +23,13 @@
define([
'lodash',
'../../platform/features/conductor/utcTimeSystem/src/UTCTimeSystem',
'../../example/generator/plugin'
'../../example/generator/plugin',
'../../platform/features/autoflow/plugin'
], function (
_,
UTCTimeSystem,
GeneratorPlugin
GeneratorPlugin,
AutoflowPlugin
) {
var bundleMap = {
CouchDB: 'platform/persistence/couch',
@@ -55,6 +57,17 @@ define([
};
};
/**
* A tabular view showing the latest values of multiple telemetry points at
* once. Formatted so that labels and values are aligned.
*
* @param {Object} [options] Optional settings to apply to the autoflow
* tabular view. Currently supports one option, 'type'.
* @param {string} [options.type] The key of an object type to apply this view
* to exclusively.
*/
plugins.AutoflowView = AutoflowPlugin;
var conductorInstalled = false;
plugins.Conductor = function (options) {