X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=b7f8f4ff17ce42e750a1d40b520a4e79e0a9137d;hb=953b2eba5f596897c7e4373b08d78e35c9941c16;hp=7ea016989edd292c454d8fe45268f2bcdba62610;hpb=5c595265e53d5c4c2b48ae7ff2ed5124c665a7ce;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 7ea0169..b7f8f4f 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -1,51 +1,79 @@ +// ### 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() { - s = [] + var that = this; + + this.team.registerTemplate('CredoImage', '\ +
\ + \ + {{#mkws-first md-thumburl}}\ + {{../md-title}}\ + {{/mkws-first}}\ +
\ +
\ +

{{md-title}}

\ +
\ +'); + + var s = [] s.push(''); // Main panel: encylopaedia and images on the left, topics on the right - s.push(''); + s.push(''); s.push(''); s.push(''); s.push(''); - s.push(''); - s.push(''); - s.push('
'); - s.push('
Credo Entries
'); - s.push(this.subwidget('Records', { /* ### config */ })); - s.push('
'); - s.push(''); - s.push(''); + s.push(sectionRow('entries', 'Credo Entries', + 1 || this.subwidget('Records', { /* ### config */ }))); + s.push(sectionRow('articles', 'Articles', + 1 || this.subwidget('Records', { /* ### config */ }))); + 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 */ }))); - // More TRs for Articles, Books, News, Suggested Resources s.push('
'); - - s.push('
'); - s.push('
Topic Page: ### title
'); - s.push(this.subwidget('Reference')); - s.push('
'); - - s.push('
'); - s.push('
Images
'); - s.push(this.subwidget('Images', { /* ### config */ } )); - s.push('
'); - + s.push(section('encyclopaedia', 'Topic Page: ### 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', + this.subwidget('GoogleImage', { maxrecs: 4, template: 'CredoImage' }))); s.push('
'); - - s.push('
'); - s.push('
Create a Mind Map for ### title
'); - // ### Is there a way to make a mind-map? - s.push('
'); - - s.push('
'); - s.push('
Related Topics
'); - s.push(this.subwidget('Facet', { facet: 'subject' })); - 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' }))); s.push('
'); this.node.html(s.join('')); + + + function section(xclass, title, content) { + var s = []; + s.push('
'); + s.push('
' + title + '
'); + s.push('
' + content + '
'); + s.push('
'); + return s.join(''); + } + + function sectionRow(xclass, title, content) { + var s = []; + s.push(''); + s.push(''); + s.push(section(xclass, title, content)); + s.push(''); + s.push(''); + return s.join(''); + } });