X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=d0cbfe2815d65ada853ae17643c356ba5681c0a6;hb=33ace780f38dcd06a5d32dab0b54dc66e19da05d;hp=2bb1b1a76afd7999a1258fa39ad61e9206fa8bef;hpb=b8b83eb490e89e99620c933648147e11af9c0e12;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 2bb1b1a..d0cbfe2 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -1,5 +1,24 @@ +// ### 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 +// members of the same team, but picking out only the results relevant +// to them. That will be more work. + mkws.registerWidgetType('Credo', function() { var that = this; + + this.team.registerTemplate('CredoImage', '\ +
\ + \ + {{#mkws-first md-thumburl}}\ + {{../md-title}}\ + {{/mkws-first}}\ +
\ +
\ +

{{md-title}}

\ +
\ +'); + var s = [] s.push(''); @@ -8,30 +27,31 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); s.push(''); s.push(sectionRow('entries', 'Credo Entries', - this.subwidget('Records', { /* ### config */ }))); + this.subwidget('Records', { _team: 'main' }))); s.push(sectionRow('articles', 'Articles', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('books', 'Books', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('news', 'News', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('resources', 'Suggested Resources', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push('
'); s.push(section('encyclopaedia', 'Topic Page: ### title', - this.subwidget('Reference'))); + 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', - this.subwidget('Images', { /* ### config */ }))); + this.subwidget('GoogleImage', { maxrecs: 4, template: 'CredoImage' }))); 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', - this.subwidget('Facet', { facet: 'subject' }))); + this.subwidget('Facet', { _team: 'main', facet: 'subject' }))); s.push('
');