Set HTML title as well.
[mkws-moved-to-github.git] / examples / htdocs / mkws-widget-credo.js
index e66559e..f00abf7 100644 (file)
@@ -5,7 +5,13 @@
 //      http://eofdreams.com/fish.html
 //
 Handlebars.registerHelper('mkws-googleurl', function(obj) {
-  return mkws.getParameterByName('q', obj[0]);
+  if (!obj) {
+    return "obj undefined";
+  } else if (!obj[0]) {
+    return "obj[0] undefined, JSON=" + $.toJSON(obj);
+  } else {
+    return mkws.getParameterByName('q', obj[0]);
+  }
 });
 
 
@@ -37,7 +43,7 @@ mkws.registerWidgetType('Credo', function() {
   s.push('<tr class="front">');
 
   s.push('<td class="main">');
-  s.push(section('encyclopaedia', 'Topic Page: ### title',
+  s.push(section('encyclopaedia', 'Topic Page: <span class="x-mkws-title"/>',
                  this.subwidget('Reference', { _team: 'ref' })));
   // The Images widget needs to be in our team so we can set its template
   s.push(section('image', 'Images',
@@ -45,7 +51,7 @@ mkws.registerWidgetType('Credo', function() {
   s.push('</td>');
 
   s.push('<td class="side">');
-  s.push(section('mindmap', 'Create a Mind Map for ### title',
+  s.push(section('mindmap', 'Create a Mind Map for <span class="x-mkws-title"/>',
                  this.subwidget('Mindmap', { _team: 'main', facet: 'subject' })));
   s.push(section('topics', 'Related Topics',
                  this.subwidget('Facet', { _team: 'main', facet: 'subject' })));
@@ -58,18 +64,27 @@ mkws.registerWidgetType('Credo', function() {
   s.push(sectionRow('entries', 'Credo Entries',
                     this.subwidget('Records', { _team: 'main' })));
   s.push(sectionRow('articles', 'Articles',
-                    1 || this.subwidget('Records', { /* ### config */ })));
+                    this.subwidget('Records', { _team: 'articles', targetfilter: 'categories=articles' })));
   s.push(sectionRow('books', 'Books',
-                    1 || this.subwidget('Records', { /* ### config */ })));
+                    this.subwidget('Records', { _team: 'books', targetfilter: 'categories=books' })));
   s.push(sectionRow('news', 'News',
-                    1 || this.subwidget('Records', { /* ### config */ })));
+                    this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news' })));
   s.push(sectionRow('resources', 'Suggested Resources',
-                    1 || this.subwidget('Records', { /* ### config */ })));
+                    "### Not yet implemented"));
 
   s.push('</table>');
 
   this.node.html(s.join(''));
 
+  // Fill in the titles from the query once widgets have all been prepared
+  var that = this;
+  this.team.queue("ready").subscribe(function() {
+    var query = that.config.query;
+    that.log("got query '" + query + "' from team config");
+    mkws.$('.x-mkws-title').html(query);
+    mkws.$('title').html("MKWS: " + query);
+  });
+
 
   function section(xclass, title, content) {
     var s = [];