mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
107 lines
3.9 KiB
JSON
107 lines
3.9 KiB
JSON
{
|
|
"name": "Entanglement",
|
|
"description": "Tools to assist you in entangling the world of WARP.",
|
|
"configuration": {},
|
|
"extensions": {
|
|
"actions": [
|
|
{
|
|
"key": "move",
|
|
"name": "Move",
|
|
"description": "Move object to another location.",
|
|
"glyph": "f",
|
|
"category": "contextual",
|
|
"implementation": "actions/MoveAction.js",
|
|
"depends": ["policyService", "locationService", "moveService"]
|
|
},
|
|
{
|
|
"key": "copy",
|
|
"name": "Duplicate",
|
|
"description": "Duplicate object to another location.",
|
|
"glyph": "+",
|
|
"category": "contextual",
|
|
"implementation": "actions/CopyAction.js",
|
|
"depends": ["$log", "policyService", "locationService", "copyService",
|
|
"dialogService", "notificationService"]
|
|
},
|
|
{
|
|
"key": "link",
|
|
"name": "Create Link",
|
|
"description": "Create Link to object in another location.",
|
|
"glyph": "\u00E8",
|
|
"category": "contextual",
|
|
"implementation": "actions/LinkAction.js",
|
|
"depends": ["policyService", "locationService", "linkService"]
|
|
},
|
|
{
|
|
"key": "follow",
|
|
"name": "Go To Original",
|
|
"description": "Go to the original, un-linked instance of this object.",
|
|
"glyph": "\u00F4",
|
|
"category": "contextual",
|
|
"implementation": "actions/GoToOriginalAction.js"
|
|
}
|
|
],
|
|
"components": [
|
|
{
|
|
"type": "decorator",
|
|
"provides": "creationService",
|
|
"implementation": "services/LocatingCreationDecorator.js"
|
|
},
|
|
{
|
|
"type": "decorator",
|
|
"provides": "objectService",
|
|
"implementation": "services/LocatingObjectDecorator.js",
|
|
"depends": ["contextualize", "$q", "$log"]
|
|
}
|
|
],
|
|
"policies": [
|
|
{
|
|
"category": "action",
|
|
"implementation": "policies/CrossSpacePolicy.js"
|
|
}
|
|
],
|
|
"capabilities": [
|
|
{
|
|
"key": "location",
|
|
"name": "Location Capability",
|
|
"description": "Provides a capability for retrieving the location of an object based upon it's context.",
|
|
"implementation": "capabilities/LocationCapability",
|
|
"depends": [ "$q", "$injector" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "moveService",
|
|
"name": "Move Service",
|
|
"description": "Provides a service for moving objects",
|
|
"implementation": "services/MoveService.js",
|
|
"depends": ["policyService", "linkService", "$q"]
|
|
},
|
|
{
|
|
"key": "linkService",
|
|
"name": "Link Service",
|
|
"description": "Provides a service for linking objects",
|
|
"implementation": "services/LinkService.js",
|
|
"depends": ["policyService"]
|
|
},
|
|
{
|
|
"key": "copyService",
|
|
"name": "Copy Service",
|
|
"description": "Provides a service for copying objects",
|
|
"implementation": "services/CopyService.js",
|
|
"depends": ["$q", "policyService", "now"]
|
|
},
|
|
{
|
|
"key": "locationService",
|
|
"name": "Location Service",
|
|
"description": "Provides a service for prompting a user for locations.",
|
|
"implementation": "services/LocationService.js",
|
|
"depends": ["dialogService"]
|
|
}
|
|
|
|
],
|
|
"licenses": [
|
|
]
|
|
}
|
|
}
|