blob: 2136e4f824f509f406082cb318102b100ddce8bf [file] [log] [blame]
Tyler Scott696d38f2015-08-04 22:41:22 -06001//Run when the document loads AND we have the config loaded.
2(function(){
3 var catalog = null;
4 var config = null;
5 Promise.all([
6 new Promise(function(resolve, reject){
7 $.ajax('config.json').done(function(data){
8 catalog = data.catalogPrefix;
9 config = data.faceConfig;
10 resolve();
11 }).fail(function(){
12 console.error("Failed to get config.");
13 reject()
14 });
15 }),
16 new Promise(function(resolve, reject){
17 var timeout = setTimeout(function(){
18 console.error("Document never loaded? Something bad has happened!");
19 reject();
20 }, 10000);
21 $(function () {
22 clearTimeout(timeout);
23 resolve();
24 });
25 })
26 ]).then(function(){
27 new Atmos(catalog, config);
28 }, function(){
29 console.error("Failed to initialize!");
30 })
31})();
Tyler Scott3c17d5f2015-06-23 17:49:29 -060032
Tyler Scott93cae872015-07-21 14:58:23 -060033var Atmos = (function(){
Tyler Scott7d076e22015-07-06 19:21:50 -060034 "use strict";
Tyler Scott93cae872015-07-21 14:58:23 -060035 /**
36 * Atmos
37 * @version 2.0
Tyler Scott4d951222015-07-31 14:38:27 -060038 *
Tyler Scott93cae872015-07-21 14:58:23 -060039 * Configures an Atmos object. This manages the atmos interface.
Tyler Scott4d951222015-07-31 14:38:27 -060040 *
41 * @constructor
Tyler Scott93cae872015-07-21 14:58:23 -060042 * @param {string} catalog - NDN path
Tyler Scott4d951222015-07-31 14:38:27 -060043 * @param {Object} config - Object of configuration options for a Face.
Tyler Scott93cae872015-07-21 14:58:23 -060044 */
45 function Atmos(catalog, config){
Tyler Scott7d076e22015-07-06 19:21:50 -060046
Tyler Scott93cae872015-07-21 14:58:23 -060047 //Internal variables.
48 this.results = [];
Tyler Scott4e4865a2015-08-06 14:23:21 -060049 this.resultCount = Infinity;
Tyler Scottc55879f2015-07-28 14:56:37 -060050 this.name = null;
51 this.page = 0;
Tyler Scott4e4865a2015-08-06 14:23:21 -060052 this.resultsPerPage = 25;
53 this.retrievedSegments = 0;
Tyler Scotte815d3e2015-07-09 16:56:17 -060054
Tyler Scott93cae872015-07-21 14:58:23 -060055 this.catalog = catalog;
Tyler Scott7d076e22015-07-06 19:21:50 -060056
Tyler Scott93cae872015-07-21 14:58:23 -060057 this.face = new Face(config);
Tyler Scott696d38f2015-08-04 22:41:22 -060058
Tyler Scott93cae872015-07-21 14:58:23 -060059 this.categories = $('#side-menu');
60 this.resultTable = $('#resultTable');
61 this.filters = $('#filters');
Tyler Scotta1530052015-07-24 00:13:28 -060062 this.searchInput = $('#search');
63 this.searchBar = $('#searchBar');
Tyler Scottc55879f2015-07-28 14:56:37 -060064 this.searchButton = $('#searchButton');
Tyler Scott3fc05272015-08-17 18:02:35 -060065 this.resultMenu = $('.resultMenu');
Tyler Scott4d951222015-07-31 14:38:27 -060066 this.alerts = $('#alerts');
Tyler Scott7d076e22015-07-06 19:21:50 -060067
Tyler Scott93cae872015-07-21 14:58:23 -060068 var scope = this;
Tyler Scott7d076e22015-07-06 19:21:50 -060069
Tyler Scott93cae872015-07-21 14:58:23 -060070 this.resultTable.on('click', '.interest-button', function(){
Tyler Scott3fc05272015-08-17 18:02:35 -060071 scope.request(this);
Tyler Scott7d076e22015-07-06 19:21:50 -060072 });
Tyler Scott7d076e22015-07-06 19:21:50 -060073
Tyler Scott3fc05272015-08-17 18:02:35 -060074 $('.requestSelectedButton').click(function(){
75 scope.request(
76 scope.resultTable.find('.resultSelector:checked:not([disabled])')
77 .parent().next().find('.interest-button')
78 );
Tyler Scott93cae872015-07-21 14:58:23 -060079 });
80
Tyler Scott3fc05272015-08-17 18:02:35 -060081 this.filterSetup();
82
Tyler Scottc55879f2015-07-28 14:56:37 -060083 this.searchInput.autoComplete(function(field, callback){
84 scope.autoComplete(field, callback);
85 });
86
Tyler Scotta1530052015-07-24 00:13:28 -060087 this.searchBar.submit(function(e){
Tyler Scott93cae872015-07-21 14:58:23 -060088 e.preventDefault();
Tyler Scott6b810812015-08-11 18:20:05 -060089 scope.pathSearch();
Tyler Scottc55879f2015-07-28 14:56:37 -060090 });
91
92 this.searchButton.click(function(){
93 console.log("Search Button Pressed");
Tyler Scotta1530052015-07-24 00:13:28 -060094 scope.search();
95 });
96
Tyler Scott3fc05272015-08-17 18:02:35 -060097 this.resultMenu.find('.next').click(function(){
Tyler Scottc55879f2015-07-28 14:56:37 -060098 if (!$(this).hasClass('disabled')){
99 scope.getResults(scope.page + 1);
100 }
101 });
Tyler Scott3fc05272015-08-17 18:02:35 -0600102 this.resultMenu.find('.previous').click(function(){
Tyler Scottc55879f2015-07-28 14:56:37 -0600103 if (!$(this).hasClass('disabled')){
104 scope.getResults(scope.page - 1);
105 }
Tyler Scotta1530052015-07-24 00:13:28 -0600106 });
Tyler Scott3fc05272015-08-17 18:02:35 -0600107
108 var rpps = $('.resultsPerPageSelector').click(function(){
109
110 var t = $(this);
111
112 if (t.hasClass('active')){
113 return;
114 }
115
116 rpps.find('.active').removeClass('active');
117 t.addClass('active');
118 scope.resultsPerPage = Number(t.text());
119 scope.getResults(0); //Force return to page 1;
120
Tyler Scott4e4865a2015-08-06 14:23:21 -0600121 });
Tyler Scotta1530052015-07-24 00:13:28 -0600122
123 }
124
Tyler Scott6b810812015-08-11 18:20:05 -0600125 Atmos.prototype.clearResults = function(){
126 this.results = []; //Drop any old results.
127 this.retrievedSegments = 0;
128 this.resultCount = Infinity;
129 this.page = 0;
130 this.resultTable.empty();
131 }
132
133 Atmos.prototype.pathSearch = function(){
134 var value = this.searchInput.val();
135
136 this.clearResults();
137
138 var scope = this;
139
140 this.query(this.catalog, {"??": value},
141 function(interest, data){
142 console.log("Query response:", interest, data);
143
144 var parameters = JSON.stringify({"??": value});
145
146 var ack = data.getName();
147
148 scope.name = new Name(scope.catalog).append("query-results").append(parameters).append(ack.get(-3)).append(ack.get(-2));
149
150 scope.getResults(0);
151
152 },
153 function(interest){
154 console.warn("Request failed! Timeout", interest);
155 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
156 });
157
158 }
159
Tyler Scotta1530052015-07-24 00:13:28 -0600160 Atmos.prototype.search = function(){
Tyler Scotta1530052015-07-24 00:13:28 -0600161
Tyler Scottc55879f2015-07-28 14:56:37 -0600162 var filters = this.getFilters();
Tyler Scotta1530052015-07-24 00:13:28 -0600163
164 console.log("Search started!", this.searchInput.val(), filters);
165
Tyler Scott4d951222015-07-31 14:38:27 -0600166 console.log("Initiating query");
Tyler Scotta1530052015-07-24 00:13:28 -0600167
Tyler Scott6b810812015-08-11 18:20:05 -0600168 this.clearResults();
Tyler Scottc55879f2015-07-28 14:56:37 -0600169
Tyler Scottd90f84e2015-07-27 12:43:04 -0600170 var scope = this;
171
Tyler Scott4d951222015-07-31 14:38:27 -0600172 this.query(this.catalog, filters,
Tyler Scotta1530052015-07-24 00:13:28 -0600173 function(interest, data){ //Response function
174 console.log("Query Response:", interest, data);
175
Tyler Scottd90f84e2015-07-27 12:43:04 -0600176 var parameters = JSON.stringify(filters);
177
178 var ack = data.getName();
179
Tyler Scottb6e329f2015-07-28 16:08:33 -0600180 scope.name = new Name(scope.catalog).append("query-results").append(parameters).append(ack.get(-3)).append(ack.get(-2));
Tyler Scottd90f84e2015-07-27 12:43:04 -0600181
Tyler Scottc55879f2015-07-28 14:56:37 -0600182 scope.getResults(0);
Tyler Scotta1530052015-07-24 00:13:28 -0600183
184 }, function(interest){ //Timeout function
Tyler Scottb6e329f2015-07-28 16:08:33 -0600185 console.warn("Request failed! Timeout");
Tyler Scott4d951222015-07-31 14:38:27 -0600186 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scotta1530052015-07-24 00:13:28 -0600187 });
188
189 }
190
191 Atmos.prototype.autoComplete = function(field, callback){
Tyler Scotta1530052015-07-24 00:13:28 -0600192
Tyler Scottc55879f2015-07-28 14:56:37 -0600193 if (this.searchInput.val().length === 0 && !filters.hasOwnProperty()){
194 if (!this.searchBar.hasClass('has-error')){
195 this.searchBar.addClass('has-error').append('<span class="help-block">A filter or search value is required!</span>');
196 }
197 return;
198 } else {
199 this.searchBar.removeClass('has-error').find('.help-block').fadeOut(function(){$(this).remove()});
200 }
201
Tyler Scottb6e329f2015-07-28 16:08:33 -0600202 var scope = this;
203
Tyler Scott4d951222015-07-31 14:38:27 -0600204 this.query(this.catalog, {"?": field},
Tyler Scotta1530052015-07-24 00:13:28 -0600205 function(interest, data){
Tyler Scottb6e329f2015-07-28 16:08:33 -0600206
207 var ack = data.getName();
208
Tyler Scott9eb6abd2015-08-04 14:48:23 -0600209 var name = new Name(scope.catalog).append('query-results').append(JSON.stringify({"?": field})).append(ack.get(-3)).append(ack.get(-2));
Tyler Scottb6e329f2015-07-28 16:08:33 -0600210
Tyler Scottab822fe2015-08-10 14:38:49 -0600211 var interest = new Interest(name);
212 interest.setInterestLifetimeMilliseconds(5000);
213 interest.setMustBeFresh(true);
214
215 scope.face.expressInterest(interest,
Tyler Scottb6e329f2015-07-28 16:08:33 -0600216 function(interest, data){
Tyler Scott4d951222015-07-31 14:38:27 -0600217
Tyler Scottfe8e4932015-07-28 17:45:45 -0600218 if (data.getContent().length !== 0){
219 var options = JSON.parse(data.getContent().toString().replace(/[\n\0]/g, "")).next.map(function(element){
Tyler Scottfc990392015-08-10 13:48:03 -0600220 return field + element + "/";
Tyler Scottfe8e4932015-07-28 17:45:45 -0600221 });
222 callback(options);
223 }
224
Tyler Scottb6e329f2015-07-28 16:08:33 -0600225 }, function(interest){
226 console.warn("Interest timed out!", interest);
Tyler Scott4d951222015-07-31 14:38:27 -0600227 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scottb6e329f2015-07-28 16:08:33 -0600228 });
229
Tyler Scotta1530052015-07-24 00:13:28 -0600230 }, function(interest){
Tyler Scottb6e329f2015-07-28 16:08:33 -0600231 console.error("Request failed! Timeout", interest);
Tyler Scott4d951222015-07-31 14:38:27 -0600232 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scotta1530052015-07-24 00:13:28 -0600233 });
Tyler Scott93cae872015-07-21 14:58:23 -0600234
Tyler Scott424ee102015-07-14 16:50:41 -0600235 }
236
Tyler Scottc55879f2015-07-28 14:56:37 -0600237 Atmos.prototype.showResults = function(resultIndex) {
Tyler Scott7d076e22015-07-06 19:21:50 -0600238
Tyler Scott3fc05272015-08-17 18:02:35 -0600239 if ($('#results').hasClass('hidden')){
240 $('#results').removeClass('hidden').slideDown();
241 }
242
Tyler Scott4e4865a2015-08-06 14:23:21 -0600243 var results = this.results.slice(this.resultsPerPage * resultIndex, this.resultsPerPage * (resultIndex + 1));
244
Tyler Scott3fc05272015-08-17 18:02:35 -0600245 var resultDOM = $(
246 results.reduce(function(prev, current){
247 prev.push('<tr><td><input class="resultSelector" type="checkbox"></td><td>');
248 prev.push(current);
249 prev.push('</td></tr>');
250 return prev;
251 }, ['<tr><th><input id="resultSelectAll" type="checkbox" title="Select All"> Select</th><th>Name</th></tr>']).join('')
252 );
Tyler Scott7d076e22015-07-06 19:21:50 -0600253
Tyler Scott3fc05272015-08-17 18:02:35 -0600254 resultDOM.find('#resultSelectAll').click(function(){
255 if ($(this).is(':checked')){
256 resultDOM.find('.resultSelector:not([disabled])').prop('checked', true);
257 } else {
258 resultDOM.find('.resultSelector:not([disabled])').prop('checked', false);
259 }
260 });
Tyler Scott7d076e22015-07-06 19:21:50 -0600261
Tyler Scott3fc05272015-08-17 18:02:35 -0600262 this.resultTable.empty().append(resultDOM).slideDown();
263 if (this.resultMenu.hasClass('hidden')){
264 this.resultMenu.removeClass('hidden').slideDown();
265 }
266
267 this.resultMenu.find('.pageNumber').text(resultIndex + 1);
268 this.resultMenu.find('.pageLength').text(this.resultsPerPage * (resultIndex + 1));
Tyler Scott7d076e22015-07-06 19:21:50 -0600269
Tyler Scott4e4865a2015-08-06 14:23:21 -0600270 if (this.resultsPerPage * (resultIndex + 1) >= this.resultCount) {
Tyler Scott3fc05272015-08-17 18:02:35 -0600271 this.resultMenu.find('.next').addClass('disabled');
Tyler Scott4e4865a2015-08-06 14:23:21 -0600272 } else if (resultIndex === 0){
Tyler Scott3fc05272015-08-17 18:02:35 -0600273 this.resultMenu.find('.next').removeClass('disabled');
Tyler Scottc55879f2015-07-28 14:56:37 -0600274 }
Tyler Scott93cae872015-07-21 14:58:23 -0600275
Tyler Scottc55879f2015-07-28 14:56:37 -0600276 if (resultIndex === 0){
Tyler Scott3fc05272015-08-17 18:02:35 -0600277 this.resultMenu.find('.previous').addClass('disabled');
Tyler Scottc55879f2015-07-28 14:56:37 -0600278 } else if (resultIndex === 1) {
Tyler Scott3fc05272015-08-17 18:02:35 -0600279 this.resultMenu.find('.previous').removeClass('disabled');
Tyler Scottc55879f2015-07-28 14:56:37 -0600280 }
Tyler Scott93cae872015-07-21 14:58:23 -0600281
Tyler Scottc55879f2015-07-28 14:56:37 -0600282 }
Tyler Scott93cae872015-07-21 14:58:23 -0600283
Tyler Scottc55879f2015-07-28 14:56:37 -0600284 Atmos.prototype.getResults = function(index){
Tyler Scott93cae872015-07-21 14:58:23 -0600285
Tyler Scott4e4865a2015-08-06 14:23:21 -0600286 if ((this.results.length === this.resultCount) || (this.resultsPerPage * (index + 1) < this.results.length)){
Tyler Scottc55879f2015-07-28 14:56:37 -0600287 //console.log("We already have index", index);
288 this.page = index;
289 this.showResults(index);
290 return;
291 }
Tyler Scott7d076e22015-07-06 19:21:50 -0600292
Tyler Scottc55879f2015-07-28 14:56:37 -0600293 if (this.name === null) {
294 console.error("This shouldn't be reached! We are getting results before a search has occured!");
295 throw new Error("Illegal State");
296 }
Tyler Scott424ee102015-07-14 16:50:41 -0600297
Tyler Scott4e4865a2015-08-06 14:23:21 -0600298 var first = new Name(this.name).appendSegment(this.retrievedSegments++);
Tyler Scottc55879f2015-07-28 14:56:37 -0600299
Tyler Scott4e4865a2015-08-06 14:23:21 -0600300 console.log("Requesting data index: (", this.retrievedSegments - 1, ") at ", first.toUri());
Tyler Scottc55879f2015-07-28 14:56:37 -0600301
302 var scope = this;
303
Tyler Scottab822fe2015-08-10 14:38:49 -0600304 var interest = new Interest(first)
305 interest.setInterestLifetimeMilliseconds(5000);
306 interest.setMustBeFresh(true);
307
308 this.face.expressInterest(interest,
Tyler Scottc55879f2015-07-28 14:56:37 -0600309 function(interest, data){ //Response
310
311 if (data.getContent().length === 0){
Tyler Scott3fc05272015-08-17 18:02:35 -0600312 scope.resultMenu.find('.totalResults').text(0);
313 scope.resultMenu.find('.pageNumber').text(0);
Tyler Scottc55879f2015-07-28 14:56:37 -0600314 console.log("Empty response.");
315 return;
316 }
317
Tyler Scottc55879f2015-07-28 14:56:37 -0600318 var content = JSON.parse(data.getContent().toString().replace(/[\n\0]/g,""));
319
Tyler Scott4e4865a2015-08-06 14:23:21 -0600320 if (!content.results){
Tyler Scott3fc05272015-08-17 18:02:35 -0600321 scope.resultMenu.find('.totalResults').text(0);
322 scope.resultMenu.find('.pageNumber').text(0);
Tyler Scottc55879f2015-07-28 14:56:37 -0600323 console.log("No results were found!");
324 return;
325 }
326
Tyler Scott4e4865a2015-08-06 14:23:21 -0600327 scope.results = scope.results.concat(content.results);
328
329 scope.resultCount = content.resultCount;
330
Tyler Scott3fc05272015-08-17 18:02:35 -0600331 scope.resultMenu.find('.totalResults').text(scope.resultCount);
Tyler Scott4e4865a2015-08-06 14:23:21 -0600332
333 scope.page = index;
334
335 scope.getResults(index); //Keep calling this until we have enough data.
Tyler Scottc55879f2015-07-28 14:56:37 -0600336
337 },
338 function(interest){ //Timeout
Tyler Scott4d951222015-07-31 14:38:27 -0600339 console.error("Failed to retrieve results: timeout", interest);
340 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scottc55879f2015-07-28 14:56:37 -0600341 }
342 );
343
344 }
Tyler Scott7d076e22015-07-06 19:21:50 -0600345
Tyler Scotta1530052015-07-24 00:13:28 -0600346 Atmos.prototype.query = function(prefix, parameters, callback, timeout) {
Tyler Scott7d076e22015-07-06 19:21:50 -0600347
Tyler Scott93cae872015-07-21 14:58:23 -0600348 var queryPrefix = new Name(prefix);
349 queryPrefix.append("query");
Tyler Scott7d076e22015-07-06 19:21:50 -0600350
Tyler Scott93cae872015-07-21 14:58:23 -0600351 var jsonString = JSON.stringify(parameters);
352 queryPrefix.append(jsonString);
Tyler Scott7d076e22015-07-06 19:21:50 -0600353
Tyler Scott93cae872015-07-21 14:58:23 -0600354 var queryInterest = new Interest(queryPrefix);
Tyler Scotta1530052015-07-24 00:13:28 -0600355 queryInterest.setInterestLifetimeMilliseconds(4000);
Tyler Scottab822fe2015-08-10 14:38:49 -0600356 queryInterest.setMustBeFresh(true);
Tyler Scott7d076e22015-07-06 19:21:50 -0600357
Tyler Scotta1530052015-07-24 00:13:28 -0600358 this.face.expressInterest(queryInterest, callback, timeout);
Tyler Scott93cae872015-07-21 14:58:23 -0600359
Tyler Scott93cae872015-07-21 14:58:23 -0600360 }
361
Tyler Scott93cae872015-07-21 14:58:23 -0600362 /**
Tyler Scotta1530052015-07-24 00:13:28 -0600363 * This function returns a map of all the categories active filters.
364 * @return {Object<string, string>}
Tyler Scott93cae872015-07-21 14:58:23 -0600365 */
Tyler Scotta1530052015-07-24 00:13:28 -0600366 Atmos.prototype.getFilters = function(){
Tyler Scott93cae872015-07-21 14:58:23 -0600367 var filters = this.filters.children().toArray().reduce(function(prev, current){
Tyler Scott575c61b2015-07-13 13:42:16 -0600368 var data = $(current).text().split(/:/);
369 prev[data[0]] = data[1];
370 return prev;
Tyler Scotta1530052015-07-24 00:13:28 -0600371 }, {}); //Collect a map<category, filter>.
372 //TODO Make the return value map<category, Array<filter>>
373 return filters;
Tyler Scott93cae872015-07-21 14:58:23 -0600374 }
375
Tyler Scott4d951222015-07-31 14:38:27 -0600376 /**
377 * Creates a closable alert for the user.
378 *
379 * @param {string} message
380 * @param {string} type - Override the alert type.
381 */
382 Atmos.prototype.createAlert = function(message, type) {
383
384 var alert = $('<div class="alert"><div>');
385 alert.addClass(type?type:'alert-info');
386 alert.text(message);
387 alert.append(Atmos.closeButton);
388
389 this.alerts.append(alert);
390 }
Tyler Scott3fc05272015-08-17 18:02:35 -0600391
392 /**
393 * Requests all of the names represented by the buttons in the elements list.
394 *
395 * @param elements {Array<jQuery>} A list of the interestButton elements
396 */
397 Atmos.prototype.request = function(elements){
398
399 var scope = this;
400 $(elements).filter(':not(.disabled)').each(function(){
401 var button = $(this);
402
403 if (button.hasClass('disabled')){
404 console.warn("An attempt to request a disabled element has occured");
405 return;
406 }
407
408 var name = button.text();
409 var interest = new Interest(new Name('/retrieve' + name));
410 scope.face.expressInterest(interest, function(){}, function(){});
411
412 })
413 .append('<span class="badge">Requested!</span>')
414 .addClass('disabled')
415 .addClass('label-success')
416 .parent().prev().find('.resultSelector').prop('disabled', true).prop('checked', false);
417
418 }
419
420 Atmos.prototype.filterSetup = function() {
421 //Filter setup
422
423 var prefix = new Name(this.catalog).append("filters-initialization");
424
425 var scope = this;
426
427 this.getAll(prefix, function(data) { //Success
428 var raw = JSON.parse(data.replace(/[\n\0]/g, '')); //Remove null byte and parse
429
430 console.log("Filter categories:", raw);
431
432 $.each(raw, function(index, object){ //Unpack list of objects
433 $.each(object, function(category, searchOptions) { //Unpack category from object (We don't know what it is called)
434 //Create the category
435 var e = $('<li><a href="#">' + category.replace(/\_/g, " ") + '</a><ul class="subnav nav nav-pills nav-stacked"></ul></li>');
436
437 var sub = e.find('ul.subnav');
438 $.each(searchOptions, function(index, name){
439 //Create the filter list inside the category
440 var item = $('<li><a href="#">' + name + '</a></li>');
441 sub.append(item);
442 item.click(function(){ //Click on the side menu filters
443 if (item.hasClass('active')){ //Does the filter already exist?
444 item.removeClass('active');
445 scope.filters.find(':contains(' + category + ':' + name + ')').remove();
446 } else { //Add a filter
447 item.addClass('active');
448 var filter = $('<span class="label label-default"></span>');
449 filter.text(category + ':' + name);
450
451 scope.filters.append(filter);
452
453 filter.click(function(){ //Click on a filter
454 filter.remove();
455 item.removeClass('active');
456 });
457 }
458
459 });
460 });
461
462 //Toggle the menus. (Only respond when the immediate tab is clicked.)
463 e.find('> a').click(function(){
464 scope.categories.find('.subnav').slideUp();
465 var t = $(this).siblings('.subnav');
466 if ( !t.is(':visible') ){ //If the sub menu is not visible
467 t.slideDown(function(){
468 t.triggerHandler('focus');
469 }); //Make it visible and look at it.
470 }
471 });
472
473 scope.categories.append(e);
474
475 });
476 });
477
478 }, function(interest){ //Timeout
479 scope.createAlert("Failed to initialize the filters!", "alert-danger");
480 console.error("Failed to initialize filters!", interest);
481 });
482
483 }
484
485 Atmos.prototype.getAll = function(prefix, callback, timeout){
486
487 var scope = this;
488 var d = [];
489
490 var request = function(segment){
491
492 var name = new Name(prefix);
493 name.appendSegment(segment);
494
495 var interest = new Interest(name);
496 interest.setInterestLifetimeMilliseconds(1000);
497 interest.setMustBeFresh(true); //Is this needed?
498
499 scope.face.expressInterest(interest, handleData, timeout);
500
501 }
502
503
504 var handleData = function(interest, data){
505
506 d.push(data.getContent().toString());
507
508 if (interest.getName().get(-1).toSegment() == data.getMetaInfo().getFinalBlockId().toSegment()){
509 callback(d.join(""));
510 } else {
511 request(interest.getName().toSegment()++);
512 }
513
514 }
515
516 request(0);
517
518
519 }
520
Tyler Scott4d951222015-07-31 14:38:27 -0600521 Atmos.closeButton = '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';
522
Tyler Scott93cae872015-07-21 14:58:23 -0600523 return Atmos;
524
525})();