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": {
|
2015-07-23 19:15:14 +00:00
|
|
|
"controllers": [
|
2015-07-15 20:29:45 +00:00
|
|
|
{
|
2015-07-22 22:43:28 +00:00
|
|
|
"key": "SearchController",
|
|
|
|
"implementation": "controllers/SearchController.js",
|
2015-07-27 19:59:32 +00:00
|
|
|
"depends": [ "$scope", "searchService" ]
|
2015-07-22 21:48:14 +00:00
|
|
|
},
|
|
|
|
{
|
2015-07-22 22:43:28 +00:00
|
|
|
"key": "SearchItemController",
|
|
|
|
"implementation": "controllers/SearchItemController.js",
|
2015-07-22 21:48:14 +00:00
|
|
|
"depends": [ "$scope" ]
|
2015-07-15 20:29:45 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"templates": [
|
|
|
|
{
|
2015-07-22 22:43:28 +00:00
|
|
|
"key": "search",
|
2015-07-24 23:52:55 +00:00
|
|
|
"templateUrl": "templates/search.html",
|
|
|
|
"uses": [ "controls", "forms" ]
|
2015-07-08 22:32:20 +00:00
|
|
|
}
|
2015-07-08 23:20:12 +00:00
|
|
|
],
|
|
|
|
"representations": [
|
|
|
|
{
|
2015-07-22 22:43:28 +00:00
|
|
|
"key": "search-item",
|
2015-07-24 22:08:43 +00:00
|
|
|
"templateUrl": "templates/search-item.html"
|
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-28 18:33:29 +00:00
|
|
|
"depends": [ "objectService", "workerService", "roots[]" ]
|
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-27 19:59:32 +00:00
|
|
|
"implementation": "SearchAggregator.js",
|
|
|
|
"depends": [ "$timeout" ]
|
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
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|