diff --git a/demos/search/demo.search.app.js b/demos/search/demo.search.app.js index df2f9bfc..72b5937a 100644 --- a/demos/search/demo.search.app.js +++ b/demos/search/demo.search.app.js @@ -1,25 +1,43 @@ +// (c) Open Knowledge Foundation 2012. Dedicated to the public domain. Please +// use and reuse freely - you don't even need to credit (though a link back to +// ReclineJS.com is always appreciated)! + + +// ## Our main loop - on document ready jQuery(function($) { var $el = $('.search-here'); + // ### Overview + // + // We have a slightly more complex setup than is needed to allow for using + // this demo with different backends + // + // There are 2 alternatives: more complex and a simpler one + // + // If you just want to see how this work skip to the simple case ... + + // ### 1. More complex - use data from a backend configured in query string + // Check for config from url query string - // (this allows us to point to specific data sources backends) var config = recline.View.parseQueryString(decodeURIComponent(window.location.search)); if (config.backend) { + // If we had it hand off to our more complex example setup setupMoreComplexExample(config); return; } - // the simple example case + // ### 2. The simple example case + // + // We will just set up from some example local data (at the bottom of thile file) - // Create our Recline Dataset - // We'll just use some sample local data (see end of this file) + // #### Create our Recline Dataset from sample local data var dataset = new recline.Model.Dataset({ records: sampleData }); - // Set up the search View - - // We give it a custom template for rendering the example records + // #### Custom template + // + // Create a custom template for rendering the records var template = ' \
${{price}}
This demo shows how Recline can be used to build a search app. It includes faceting as well as search. You can find the source javascript here – please feel free to reuse!
+This demo shows how Recline can be used to build a search app. It includes faceting as well as search. You can find the source javascript here (plus prettified version of source for readability) – please feel free to reuse!
The default setup uses local example data but you can also connect directly to any other backend supported by Recline, for example SOLR, ElasticSearch or even a google docs spreadsheet. As an example: here's an example running against the SOLR-style OpenSpending API and here's an example running against a GDocs spreadsheet (Oil spills in the Niger Delta).
demo.search.app.js | |
|---|---|
| (c) Open Knowledge Foundation 2012. Dedicated to the public domain. Please +use and reuse freely - you don't even need to credit (though a link back to +ReclineJS.com is always appreciated)! | |
Our main loop - on document ready | jQuery(function($) {
+ var $el = $('.search-here'); |
Overview+ +We have a slightly more complex setup than is needed to allow for using +this demo with different backends + +There are 2 alternatives: more complex and a simpler one + +If you just want to see how this work skip to the simple case ... | |
1. More complex - use data from a backend configured in query string | |
| Check for config from url query string | var config = recline.View.parseQueryString(decodeURIComponent(window.location.search));
+ if (config.backend) { |
| If we had it hand off to our more complex example setup | setupMoreComplexExample(config);
+ return;
+ } |
2. The simple example case+ +We will just set up from some example local data (at the bottom of thile file) | |
Create our Recline Dataset from sample local data | var dataset = new recline.Model.Dataset({
+ records: sampleData
+ }); |
Custom template+ +Create a custom template for rendering the records | var template = ' \
+ <div class="record"> \
+ <h3> \
+ {{title}} <em>by {{Author}}</em> \
+ </h3> \
+ <p>{{description}}</p> \
+ <p><code>${{price}}</code></p> \
+ </div> \
+ '; |
Set up the search View (using custom template) | var searchView = new SearchView({
+ el: $el,
+ model: dataset,
+ template: template
+ });
+ searchView.render(); |
Optional - we configure the initial query a bit and set up facets | dataset.queryState.set({
+ size: 10
+ },
+ {silent: true}
+ );
+ dataset.queryState.addFacet('Author'); |
Finally - now do the first query+ +After this point the Search View will take over handling queries! | dataset.query();
+}); |
Simple Search View+ +This is a simple bespoke Backbone view for the Search. It Pulls together +various Recline UI components and the central Dataset and Query (state) +object + +It also provides simple support for customization e.g. of template for list of results + + | var SearchView = Backbone.View.extend({
+ initialize: function(options) {
+ this.el = $(this.el);
+ _.bindAll(this, 'render');
+ this.recordTemplate = options.template; |
| Every time we do a search the recline.Dataset.records Backbone +collection will get reset. We want to re-render each time! | this.model.records.bind('reset', this.render);
+ this.templateResults = options.template;
+ }, |
| overall template for this view | template: ' \
+ <div class="controls"> \
+ <div class="query-here"></div> \
+ </div> \
+ <div class="total"><h2><span></span> records found</h2></div> \
+ <div class="body"> \
+ <div class="sidebar"></div> \
+ <div class="results"> \
+ {{{results}}} \
+ </div> \
+ </div> \
+ <div class="pager-here"></div> \
+ ',
+ |
| render the view | render: function() {
+ var results = '';
+ if (_.isFunction(this.templateResults)) {
+ var results = _.map(this.model.records.toJSON(), this.templateResults).join('\n');
+ } else { |
| templateResults is just for one result ... | var tmpl = '{{#records}}' + this.templateResults + '{{/records}}';
+ var results = Mustache.render(tmpl, {
+ records: this.model.records.toJSON()
+ });
+ }
+ var html = Mustache.render(this.template, {
+ results: results
+ });
+ this.el.html(html); |
| Set the total records found info | this.el.find('.total span').text(this.model.recordCount); |
Now setup all the extra mini-widgets+ +Facets, Pager, QueryEditor etc | var view = new recline.View.FacetViewer({
+ model: this.model
+ });
+ view.render();
+ this.el.find('.sidebar').append(view.el);
+
+ var pager = new recline.View.Pager({
+ model: this.model.queryState
+ });
+ this.el.find('.pager-here').append(pager.el);
+
+ var queryEditor = new recline.View.QueryEditor({
+ model: this.model.queryState
+ });
+ this.el.find('.query-here').append(queryEditor.el);
+ }
+}); |
| + + Custom code very specific to this demo | |
| e.g. to provide custom templates for the google doc and openspending examples | |
Handle case where we get data from a specific backend+ +Includes providing custom templates | function setupMoreComplexExample(config) {
+ var $el = $('.search-here');
+ var dataset = new recline.Model.Dataset(config); |
| async as may be fetching remote | dataset.fetch().done(function() {
+ var template = templates[dataset.get('url')] || templates['generic'];
+ var searchView = new SearchView({
+ el: $el,
+ model: dataset,
+ template: template
+ });
+ searchView.render();
+
+ dataset.queryState.set({
+ size: 5
+ },
+ {silent: true}
+ );
+ if (dataset.get('url') in templates) { |
| for gdocs example | dataset.queryState.addFacet('cause');
+ }
+ dataset.query();
+ });
+};
+
+var templates = { |
| generic template function | 'generic': function(record) {
+ var template = '<div class="record"> \
+ <ul> \
+ {{#data}} \
+ <li>{{key}}: {{value}}</li> \
+ {{/data}} \
+ </ul> \
+ </div> \
+ ';
+ var data = _.map(_.keys(record), function(key) {
+ return { key: key, value: record[key] };
+ });
+ return Mustache.render(template, {
+ data: data
+ });
+ },
+ 'http://openspending.org/api/search': function(record) {
+ record['time'] = record['time.label_facet']
+ var template = '<div class="record"> \
+ <h3> \
+ <a href="http://openspending.org/{{record.dataset}}/entries/{{record.id}}">{{record.dataset}} {{record.time}}</a> \
+ – <img src="http://openspending.org/static/img/icons/cd_16x16.png" /> {{amount_formatted}} \
+ </h3> \
+ <ul> \
+ {{#data}} \
+ <li>{{key}}: {{value}}</li> \
+ {{/data}} \
+ </ul> \
+ </div> \
+ ';
+ var data = [];
+ _.each(_.keys(record), function(key) {
+ if (key !='_id' && key != 'id') {
+ data.push({ key: key, value: record[key] });
+ }
+ });
+ return Mustache.render(template, {
+ record: record,
+ amount_formatted: formatAmount(record['amount']),
+ data: data
+ });
+ },
+ 'https://docs.google.com/spreadsheet/ccc?key=0Aon3JiuouxLUdExXSTl2Y01xZEszOTBFZjVzcGtzVVE': function(record) {
+ var template = '<div class="record"> \
+ <h3> \
+ {{record.incidentsite}} – {{record.datereported}} – {{record.estimatedspillvolumebbl}} barrels \
+ </h3> \
+ <ul> \
+ {{#data}} \
+ <li>{{key}}: {{value}}</li> \
+ {{/data}} \
+ </ul> \
+ </div> \
+ ';
+ var data = [];
+ _.each(_.keys(record), function(key) {
+ data.push({ key: key, value: record[key] });
+ });
+ return Mustache.render(template, {
+ record: record,
+ data: data
+ });
+ }
+}
+
+var sampleData = [
+ {
+ title: 'War and Peace',
+ description: 'The epic tale of love, war and history',
+ Author: 'Tolstoy',
+ price: 7.99
+ },
+ {
+ title: 'Anna Karenina',
+ description: 'How things go wrong in love and ultimately lead to suicide. This is why you should not have affairs, girls!',
+ Author: 'Tolstoy',
+ price: 8.50
+ },
+ {
+ title: "Fathers and Sons",
+ description: "Another 19th century Russian novel",
+ Author: "Turgenev",
+ price: 11
+ }
+];
+
+var formatAmount = function (num) {
+ var billion = 1000000000;
+ var million = 1000000;
+ var thousand = 1000;
+ var numabs = Math.abs(num);
+ if (numabs > billion) {
+ return (num / billion).toFixed(0) + 'bn';
+ }
+ if (numabs > (million / 2)) {
+ return (num / million).toFixed(0) + 'm';
+ }
+ if (numabs > thousand) {
+ return (num / thousand).toFixed(0) + 'k';
+ } else {
+ return num.toFixed(0);
+ }
+};
+
+ |