X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=0d8c3e68b85ef37c06acec3cc2e12d2183f8c82b;hp=5f689e287828bfd3bed7219fc878febe2c4391de;hb=ea01fe1401838b2afade3d628c8b455a61fca8d5;hpb=367c9dcf7040bd02c6c2cf45762879ec78e5e07f diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 5f689e2..0d8c3e6 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -1,3 +1,20 @@ +// The Google Images database returns links like: +// http://images.google.com/url?q=http://eofdreams.com/fish.html&sa=U&ei=RAB-U9XNDo2Dqga1o4L4Bw&ved=0CC4Q9QEwAA&usg=AFQjCNFhRtn6GMevHbpITZ6kfx6rsHV2ow +// This Handlebars helper avoids a pointless redirect by transforming +// this to the URL of the underling page, in this case +// http://eofdreams.com/fish.html +// +Handlebars.registerHelper('mkws-googleurl', function(obj) { + if (!obj) { + return "obj undefined"; + } else if (!obj[0]) { + return "obj[0] undefined, JSON=" + $.toJSON(obj); + } else { + return mkws.getParameterByName('q', obj[0]); + } +}); + + // ### This works inefficiently by having multiple teams all run the // same search against different sets of targets. A much better // approach would be run a single search, with all these panels @@ -6,6 +23,22 @@ mkws.registerWidgetType('Credo', function() { var that = this; + + this.team.registerTemplate('CredoImage', '\ +
\ + \ + {{#mkws-first md-thumburl}}\ + {{../md-title}}\ + {{/mkws-first}}\ +
\ +
\ +

{{{md-title}}}

\ +
\ +'); + + // Inhibit the display of the sole facet's title. + this.team.registerTemplate('facetTitle-Subject', 'doo'); + var s = [] s.push(''); @@ -13,36 +46,51 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); s.push(''); s.push(''); - s.push(sectionRow('entries', 'Credo Entries', - 1 || this.subwidget('Records', { /* ### config */ }))); + s.push(''); + + s.push(sectionRow('entries', 'News', + this.subwidget('Records', { _team: 'news', targetfilter: 'categories=news', perpage: 10 }))); s.push(sectionRow('articles', 'Articles', - 1 || this.subwidget('Records', { /* ### config */ }))); + this.subwidget('Records', { _team: 'articles', targetfilter: 'categories=articles', perpage: 10 }))); s.push(sectionRow('books', 'Books', - 1 || this.subwidget('Records', { /* ### config */ }))); - s.push(sectionRow('news', 'News', - 1 || this.subwidget('Records', { /* ### config */ }))); - s.push(sectionRow('resources', 'Suggested Resources', - 1 || this.subwidget('Records', { /* ### config */ }))); + this.subwidget('Records', { _team: 'books', targetfilter: 'categories=books', perpage: 10 }))); + s.push(sectionRow('news', 'Results from all targets', + this.subwidget('Records', { _team: 'main' }))); s.push('
'); - s.push(section('encyclopaedia', 'Topic Page: ### title', - this.subwidget('Reference'))); + 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 }))); + this.subwidget('GoogleImage', { maxrecs: 3, template: 'CredoImage', target: 'google_images_js' }))); s.push(''); - s.push(section('mindmap', 'Create a Mind Map for ### title', - '### Is there a way to make a mind-map?')); s.push(section('topics', 'Related Topics', - 1 || this.subwidget('Facet', { facet: 'subject' }))); + this.subwidget('Facet', { _team: 'main', facet: 'subject', template: 'CredoFacet' }))); 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 = [];