2015-07-08 22:32:20 +00:00
|
|
|
{
|
|
|
|
"name": "Search View",
|
2015-07-09 18:16:55 +00:00
|
|
|
"description": "Allows the user to search through the file tree.",
|
2015-07-08 22:32:20 +00:00
|
|
|
"extensions": {
|
|
|
|
"controllers": [
|
2015-07-15 20:29:45 +00:00
|
|
|
{
|
|
|
|
"key": "SearchbarController",
|
2015-07-16 17:10:07 +00:00
|
|
|
"implementation": "controllers/SearchbarController.js",
|
2015-07-21 23:21:23 +00:00
|
|
|
"depends": [ "$scope", "$timeout", "searchService" ]
|
2015-07-22 21:48:14 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "SearchbarItemController",
|
|
|
|
"implementation": "controllers/SearchbarItemController.js",
|
|
|
|
"depends": [ "$scope" ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ToggleController",
|
|
|
|
"implementation": "controllers/ToggleController.js",
|
|
|
|
"depends": [ ]
|
2015-07-15 20:29:45 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"templates": [
|
|
|
|
{
|
|
|
|
"key": "searchbar",
|
|
|
|
"templateUrl": "templates/searchbar.html",
|
|
|
|
"uses": [ "composition" ]
|
2015-07-08 22:32:20 +00:00
|
|
|
}
|
2015-07-08 23:20:12 +00:00
|
|
|
],
|
|
|
|
"representations": [
|
|
|
|
{
|
2015-07-15 20:29:45 +00:00
|
|
|
"key": "searchbar-item",
|
|
|
|
"templateUrl": "templates/searchbar-item.html",
|
|
|
|
"uses": [ "composition" ]
|
2015-07-08 23:20:12 +00:00
|
|
|
}
|
2015-07-13 17:34:06 +00:00
|
|
|
],
|
2015-07-16 17:35:26 +00:00
|
|
|
"components": [
|
2015-07-13 17:34:06 +00:00
|
|
|
{
|
2015-07-16 17:35:26 +00:00
|
|
|
"provides": "searchService",
|
|
|
|
"type": "provider",
|
2015-07-17 20:49:09 +00:00
|
|
|
"implementation": "providers/GenericSearchProvider.js",
|
2015-07-21 22:04:50 +00:00
|
|
|
"depends": [ "$rootScope", "objectService", "workerService" ]
|
2015-07-16 17:35:26 +00:00
|
|
|
},
|
2015-07-21 22:14:07 +00:00
|
|
|
{
|
|
|
|
"provides": "searchService",
|
|
|
|
"type": "provider",
|
|
|
|
"implementation": "providers/ElasticsearchSearchProvider.js",
|
|
|
|
"depends": [ "$http", "objectService", "ELASTIC_ROOT" ]
|
|
|
|
},
|
2015-07-16 17:35:26 +00:00
|
|
|
{
|
|
|
|
"provides": "searchService",
|
|
|
|
"type": "aggregator",
|
2015-07-16 20:10:04 +00:00
|
|
|
"implementation": "SearchAggregator.js"
|
2015-07-13 17:34:06 +00:00
|
|
|
}
|
2015-07-21 16:44:14 +00:00
|
|
|
],
|
|
|
|
"workers": [
|
|
|
|
{
|
|
|
|
"key": "genericSearchWorker",
|
|
|
|
"scriptUrl": "workers/GenericSearchWorker.js",
|
|
|
|
"depends": [ "objectService" ]
|
|
|
|
}
|
2015-07-08 22:32:20 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|