mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
b94ef695e2
Starting to create a search bar which lives in the same side of the divder as the file tree does.
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "Search View",
|
|
"description": "Allows the user to search through the file tree.",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"key": "search",
|
|
"name": "Search",
|
|
"glyph": "5",
|
|
"description": "Search functionality.",
|
|
"templateUrl": "templates/search.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "SearchController",
|
|
"implementation": "SearchController.js",
|
|
"depends": [ "$scope", "queryService" ]
|
|
},
|
|
{
|
|
"key": "SearchbarController",
|
|
"implementation": "SearchbarController.js",
|
|
"depends": [ "$scope", "queryService" ]
|
|
}
|
|
],
|
|
"templates": [
|
|
{
|
|
"key": "searchbar",
|
|
"templateUrl": "templates/searchbar.html",
|
|
"uses": [ "composition" ]
|
|
}
|
|
],
|
|
"representations": [
|
|
{
|
|
"key": "searchbar-item",
|
|
"templateUrl": "templates/searchbar-item.html",
|
|
"uses": [ "composition" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "queryService",
|
|
"implementation": "QueryService.js",
|
|
"depends": [ "$http", "objectService", "ELASTIC_ROOT" ]
|
|
}
|
|
]
|
|
}
|
|
} |