In urlFragment, break creation of temporary state in two.
[mkws-moved-to-github.git] / src / mkws-widget-facets.js
1 mkws.registerWidgetType('facets', function() {
2   // Initially hide the facets; display when we get results
3   var that = this;
4   var team = this.team;
5
6   this.team.queue("searchtriggered").subscribe(function() {
7     var op = that.config.newsearch_opacity;
8     if (op !== undefined) { that.node.fadeTo(500, op); }
9   });
10
11   team.queue("facets").subscribe(function(data) {
12     that.node.stop();
13     that.node.css('opacity', 1);
14     that.node.addClass("active");
15   });
16
17   var template = team.loadTemplate(this.config.template || "facets");
18   this.node.html(template({
19     team: team.name(),
20     facets: this.config.facets
21   }));
22   this.autosearch();
23 });
24
25
26 mkws.registerWidgetType('facet', function() {
27   var facetConfig = {
28     xtargets: [ "Sources",  16, false ],
29     subject:  [ "Subjects", 10, true ],
30     author:   [ "Authors",  10, true ]
31   }
32   var that = this;
33   var team = this.team;
34   var name = that.config.facet;
35   var ref = facetConfig[name] || [ "Unknown", 10, true ];
36   var caption = this.config['facet_caption_' + name] || ref[0];
37   var max     = parseInt(this.config['facet_max_' + name] || ref[1]);
38   var pzIndex = ref[2] ? name : null;
39
40   that.toString = function() {
41     return '[Widget ' + team.name() + ':' + that.type + '(' + name + ')]';
42   };
43
44   team.queue("facets").subscribe(function(data) {
45     data = data[name];
46     var terms = [];
47     var teamName = team.name();
48     for (var i = 0; i < data.length && i < max; i++) {
49       var linkdata = "";
50       var action = "";
51       if (!pzIndex) {
52         // Special case: target selection
53         linkdata += ('target_id='+data[i].id+' ');
54         if (!team.targetFiltered(data[i].id)) {
55           action = 'mkws.limitTarget(\'' + teamName + '\', this.getAttribute(\'target_id\'),this.firstChild.nodeValue)';
56         }
57       } else {
58         action = 'mkws.limitQuery(\'' + teamName + '\', \'' + pzIndex + '\', this.firstChild.nodeValue)';
59       }
60       linkdata += 'onclick="' + action + ';return false;"';
61       terms.push({
62         term: data[i].name,
63         count: data[i].freq,
64         linkdata: linkdata
65       }); 
66     }
67     // configured template > facet specific template > default facet template
68     var template;
69     if (that.config.template) {
70       template = team.loadTemplate(that.config.template);
71     } else {
72       template = team.loadTemplate("facet-" + name);
73       if (template) {
74         that.info("Using facet-" + name + " template.")
75       } else {
76         that.info("No " + name + " specific template, using default.")
77         template = team.loadTemplate("facet");
78       }
79     }
80     that.node.html(template({
81       name: name,
82       caption: caption,
83       terms: terms
84     }));
85   });
86   this.autosearch();
87 });