mirror of
https://github.com/nasa/openmct.git
synced 2025-05-21 17:57:39 +00:00
[Conductor] Add time conductor widget
Add widget for the time conductor using a representer, WTD-1515.
This commit is contained in:
parent
2f57f47234
commit
e873389655
@ -17,6 +17,7 @@
|
|||||||
"platform/features/plot",
|
"platform/features/plot",
|
||||||
"platform/features/scrolling",
|
"platform/features/scrolling",
|
||||||
"platform/features/events",
|
"platform/features/events",
|
||||||
|
"platform/features/conductor",
|
||||||
"platform/forms",
|
"platform/forms",
|
||||||
"platform/identity",
|
"platform/identity",
|
||||||
"platform/persistence/queue",
|
"platform/persistence/queue",
|
||||||
|
3
platform/features/conductor/README.md
Normal file
3
platform/features/conductor/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Provides the time conductor, a control which appears at the
|
||||||
|
bottom of the screen allowing telemetry start and end times
|
||||||
|
to be modified.
|
10
platform/features/conductor/bundle.json
Normal file
10
platform/features/conductor/bundle.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"extensions": {
|
||||||
|
"representers": [
|
||||||
|
{
|
||||||
|
"implementation": "ConductorRepresenter.js",
|
||||||
|
"depends": [ "$compile", "views[]" ]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
106
platform/features/conductor/src/ConductorRepresenter.js
Normal file
106
platform/features/conductor/src/ConductorRepresenter.js
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
/*****************************************************************************
|
||||||
|
* 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*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
[],
|
||||||
|
function () {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var CONDUCTOR_HEIGHT = "100px",
|
||||||
|
TEMPLATE = [
|
||||||
|
'<div style="position: absolute; bottom: 0; width: 100%; height: ' + CONDUCTOR_HEIGHT + '">',
|
||||||
|
"<mct-include key=\"'time-controller'\"></mct-include>",
|
||||||
|
'</div>'
|
||||||
|
].join('');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The ConductorRepresenter attaches the universal time conductor
|
||||||
|
* to views.
|
||||||
|
*
|
||||||
|
* @memberof platform/commonUI/edit
|
||||||
|
* @implements {Representer}
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
|
function ConductorRepresenter($compile, views, scope, element) {
|
||||||
|
var conductorScope;
|
||||||
|
|
||||||
|
// Angular doesn't like objects to retain references to scope
|
||||||
|
this.getScope = function () { return scope; };
|
||||||
|
this.conductorScope = function (s) {
|
||||||
|
return (conductorScope = arguments.length > 0 ? s : conductorScope);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.element = element;
|
||||||
|
this.showing = false;
|
||||||
|
this.views = views;
|
||||||
|
this.$compile = $compile;
|
||||||
|
|
||||||
|
this.originalHeight = element.css('height');
|
||||||
|
this.hadAbs = element.hasClass('abs');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle a specific representation of a specific domain object
|
||||||
|
ConductorRepresenter.prototype.represent = function represent(representation, representedObject) {
|
||||||
|
if (this.showing) {
|
||||||
|
this.destroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.views.indexOf(representation) !== -1) {
|
||||||
|
// Create a new scope for the conductor
|
||||||
|
this.conductorScope(this.getScope().$new());
|
||||||
|
this.conductorElement =
|
||||||
|
this.$compile(TEMPLATE)(this.conductorScope());
|
||||||
|
this.element.after(this.conductorElement[0]);
|
||||||
|
this.element.addClass('abs');
|
||||||
|
this.element.css('bottom', CONDUCTOR_HEIGHT);
|
||||||
|
this.showing = true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Respond to the destruction of the current representation.
|
||||||
|
ConductorRepresenter.prototype.destroy = function destroy() {
|
||||||
|
// Restore the original size of the mct-representation
|
||||||
|
if (!this.hadAbs) {
|
||||||
|
this.element.removeClass('abs');
|
||||||
|
}
|
||||||
|
this.element.css('height', this.originalHeight);
|
||||||
|
|
||||||
|
// ...and remove the conductor
|
||||||
|
if (this.conductorElement) {
|
||||||
|
this.conductorElement.remove();
|
||||||
|
this.conductorElement = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Finally, destroy its scope
|
||||||
|
if (this.conductorScope()) {
|
||||||
|
this.conductorScope().$destroy();
|
||||||
|
this.conductorScope(undefined);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.showing = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
return ConductorRepresenter;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user