Display basename when no readable target name
authorJakub Skoczen <jakub@indexdata.dk>
Thu, 3 Mar 2011 11:08:11 +0000 (12:08 +0100)
committerJakub Skoczen <jakub@indexdata.dk>
Mon, 7 Mar 2011 09:47:23 +0000 (10:47 +0100)
Hotfix for now -- the proper solution would be to either pass
target name in the hash or have some lookup structure (possibly
generated by 'bytarget')

mkdru.theme.js

index 5af43ee..034b403 100644 (file)
@@ -124,13 +124,17 @@ Drupal.theme.prototype.mkdruFacet = function (terms, facet, max, selections) {
     html += '</a><span> (' + terms[i].freq
         + ')</span><br/>';
   }
-  //TODO, meed to look up target name from ID
   if (terms.length == 0 && selections && selections.length) {
     for (var i=0; i<selections.length; i++) {
       if (selections[i]) {
+        // since we have no target name (only id) go for the basename
+        // FIXME get the proper target name
+        var name = facet == "source" ? selections[i].replace(/.*[\/\\]/, "")
+          .replace(/\?.*/, '')
+          : selections[i];
         html += '<a class="cross" href="'
           + mkdru.removeLimit(facet, selections[i])
-          + '"><strong>'+selections[i]+'</strong></a><span> (0)</span><br/>';
+          + '"><strong>'+name+'</strong></a><span> (0)</span><br/>';
       }
     } 
   }