mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
0cd331e8a5
Fix extension definitions related to the refactoring of GestureProvider out of the mct-representation directive. Completing work on the initial version of the representation bundle, WTD-521. |
||
---|---|---|
.. | ||
src | ||
test | ||
bundle.json | ||
README.md |
This bundle introduces the notion of "representations" to Open MCT Web,
primarily via an Angular directive, mct-representation
.
A representation is used to display domain objects as Angular templates.
Extension Categories
This bundle introduces four new categories of extension:
templates
: Reusable Angular templates. This category of extension is present to support themct-include
directive, which in turn is present to allow templates to be loaded from across bundles, without knowing their path ahead of time. A template has the following fields:key
: The machine-readable name which identifies this template, matched against the value given to thekey
attribute of themct-include
directive.templateUrl
: The path to the relevant Angular template. This path is relative to the bundle's resources directory.
representations
: Ways of representing a domain object. A representation is defined with the following fields:key
: The machine-readable name which identifies the representation.templateUrl
: The path to the representation's Angular template. This path is relative to the bundle's resources directory.uses
: An array of capability names. Indicates that this representation intends to use those capabilities of a domain object (via auseCapability
call), and expects to find the latest results of thatuseCapability
call in the scope of the presented template (under the same name as the capability itself.)gestures
: An array of keys identifying gestures which should be available upon this representation. Examples of gestures include "drag" (for representations that should act as draggable sources for drag-drop operations) and "menu" (for representations which should show a domain-object-specific context menu on right-click.)
views
: A view is a representation with a visible identity to the user (e.g. something they can switch among in the view menu.) A view supports the same fields as a representation, and additionally:name
: The human-readable name of the view.glyph
: A character to display as an icon for this view.description
: The human-readable description of the view.
gestures
: A gesture is a user action which can be taken upon a representation of a domain object. Gestures are described by:key
: The machine-readable name used to look up the gesture.implementation
: The class (relative to the bundle's sources directory) which implements the gesture. This is instantiated once per representation that uses the gesture. This class will receive the jqLite-wrappedmct-representation
element and the domain object being represented as arguments, and should do any necessary "wiring" (e.g. listening for events) during its constructor call. This class may also expose an optionaldestroy()
method which should be called when the gesture should be removed, to avoid memory leaks by way of unremoved listeners.
Extensions
Directives
mct-include
: Includes a template by symbolic key; used to augment the capability of Angular'sng-include
, which loads templates by path. Takes three attributes as Angular expressions:key
: The symbolic identifier of the template to load, matched against keys defined in extensions of categorytemplates
. Note that this is an Angular expression, so internal quotes may be necessary (see documentation ofng-include
, which has the same "gotcha" for URLs.)ng-model
: Optional (and not often used); a model which should appear in the included template's scope, for it to modify. The specific interpretation of this attribute will vary depending on the included template.parameters
: Optional (and not often used); asng-model
, except the intent is to provide information about how to display the included template (e.g. "title", "color"). The specific interpretation of this attribute will vary depending on the included template.
mct-representation
: Similar tomct-include
, except the template to include is specifically a representation of a domain object.key
: As used inmct-include
, except it will refer to an extension or categoryrepresentations
or ofviews
.mct-object
: An Angular expression; the domain object to be represented.parameters
: As defined formct-include
.
Examples
<mct-include key="'status-bar'"></mct-include>
<mct-representation key="'grid-item'"></mct-representation>
<mct-include key="'title-bar'"
parameters="{title: 'Hello', tooltip: 'Hello, world.'}">
</mct-include>
Components
gestureService
: A provider of typegestureService
is included to remove the need to depend ongestures[]
directly; instead, the gesture service can be used to add/remove gestures in groups. This is present primarily for bundle-internal use (it is used by themct-representation
directive) but it is exposed as a service component for convenience.
Gestures
In addition to introducing gestures
as a category of extension, this bundle
introduces three specific gestures as "built in" options, listed by key:
drag
: Representations with this gesture can serve as drag sources for drag-drop domain object composition.drop
: Representations with this gesture can serve as drop targets for drag-drop domain object composition.menu
: Representations with this gesture will provide a custom context menu (instead of the browser default).- It should be noted that this gesture does not define the appearance
or functionality of this menu; rather, it simply adds a
representation of key
context-menu
to the document at an appropriate location. This representation will be supplied by the commonUI bundle.
- It should be noted that this gesture does not define the appearance
or functionality of this menu; rather, it simply adds a
representation of key