X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=8d9a0b07c90a29119e745666198f1bf0f2353c01;hb=4fd5d3981045a546f3f6c4bd17a54a6e530d122d;hp=24ba951ff1624e34b11a3bf10175e68eca4b2972;hpb=3244ec23b67b2bb3ab9c27fb1ed5418d9d4671f5;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 24ba951..8d9a0b0 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -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,16 +43,14 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); - s.push(section('encyclopaedia', 'Topic Page: ### title', - this.subwidget('Reference', { _team: 'ref' }))); + s.push(section('encyclopaedia', 'Topic Page: ', + this.subwidget('Reference', { _team: 'ref', paragraphs: 1 }))); // The Images widget needs to be in our team so we can set its template s.push(section('image', 'Images', this.subwidget('GoogleImage', { maxrecs: 4, template: 'CredoImage' }))); s.push(''); s.push(''); - s.push(section('mindmap', 'Create a Mind Map for ### title', - this.subwidget('Mindmap', { _team: 'main', facet: 'subject' }))); s.push(section('topics', 'Related Topics', this.subwidget('Facet', { _team: 'main', facet: 'subject' }))); s.push(''); @@ -63,13 +67,27 @@ mkws.registerWidgetType('Credo', function() { this.subwidget('Records', { _team: 'books', targetfilter: 'categories=books' }))); s.push(sectionRow('news', 'News', this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news' }))); - s.push(sectionRow('resources', 'Suggested Resources', - "### Not yet implemented")); s.push(''); 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 = toTitleCase(that.config.query); + that.log("got query '" + query + "' from team config"); + mkws.$('.x-mkws-title').html(query); + mkws.$('title').html("MKWS: " + query); + + // Derived from http://stackoverflow.com/questions/196972/convert-string-to-title-case-with-javascript + function toTitleCase(str) { + return str.replace(/\w\S*/g, function(txt) { + return txt.charAt(0).toUpperCase() + txt.substr(1); + }); + } + }); + function section(xclass, title, content) { var s = []; @@ -90,8 +108,3 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); - - -mkws.registerWidgetType('Mindmap', function() { - this.node.html("### We do not yet have a Mindmap widget"); -});