openmct/platform/features/search/bundle.json
shale 3cb0b41b22 [Search] Poking around EasticSearch
Sucessfully queries elasticsearch, but displaying the
results poses problems because of asych things.
2015-07-13 16:53:48 -07:00

36 lines
1.1 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", "$http", "objectService", "queryService", "ELASTIC_ROOT" ]
}
],
"representations": [
{
"key": "search-item",
"templateUrl": "templates/search-item.html",
"uses": [ "grid-item" ]
}
],
"services": [
{
"key": "queryService",
"implementation": "QueryService.js",
"depends": [ "objectService", "ELASTIC_ROOT" ]
}
]
}
}