X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=f00abf736afdd39ecfc6227cea4a9ea6eaa71549;hb=1bb66f54c1f55f02536aebcb497a26fdc2d10fb0;hp=b7f8f4ff17ce42e750a1d40b520a4e79e0a9137d;hpb=953b2eba5f596897c7e4373b08d78e35c9941c16;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index b7f8f4f..f00abf7 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 @@ -9,7 +26,7 @@ mkws.registerWidgetType('Credo', function() { this.team.registerTemplate('CredoImage', '\
\ - \ + \ {{#mkws-first md-thumburl}}\ {{../md-title}}\ {{/mkws-first}}\ @@ -26,7 +43,7 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); - s.push(section('encyclopaedia', 'Topic Page: ### title', + s.push(section('encyclopaedia', 'Topic Page: ', 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', @@ -34,29 +51,40 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); - s.push(section('mindmap', 'Create a Mind Map for ### title', - '### Is there a way to make a mind-map?')); + s.push(section('mindmap', 'Create a Mind Map for ', + this.subwidget('Mindmap', { _team: 'main', facet: 'subject' }))); s.push(section('topics', 'Related Topics', - this.subwidget('Facet', { facet: 'subject' }))); + this.subwidget('Facet', { _team: 'main', facet: 'subject' }))); s.push(''); s.push(''); + s.push('
'); + s.push(sectionRow('entries', 'Credo Entries', - 1 || this.subwidget('Records', { /* ### config */ }))); + 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(''); 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 = []; @@ -77,3 +105,8 @@ mkws.registerWidgetType('Credo', function() { return s.join(''); } }); + + +mkws.registerWidgetType('Mindmap', function() { + this.node.html("### We do not yet have a Mindmap widget"); +});