(function() { var oldResponse = $.suggest.suggest.prototype.response; var typeToIncludedTypes = {}; var resortByType = function(data, type) { var schemaPrefixes = [ type + "/" ]; var includedTypes = typeToIncludedTypes[type]; for (var i = 0; i < includedTypes.length; i++) { schemaPrefixes.push(includedTypes[i] + "/"); } var results = "result" in data ? data.result : []; var entries1 = []; var entries2 = []; for (var i = 0; i < results.length; i++) { var result = results[i]; var matched = false; for (var j = 0; j < schemaPrefixes.length; j++) { var schemaPrefix = schemaPrefixes[j]; if (result.id.substring(0, schemaPrefix.length) == schemaPrefix) { matched = true; break; } } if (matched) { entries1.push(result); } else { entries2.push(result); } } data.result = entries1.concat(entries2); }; /* * Property suggest */ $.suggest( "suggestP", $.extend( true, {}, $.suggest.suggest.prototype, { request: function(val, start) { if (this.ac_xhr) { this.ac_xhr.abort(); this.ac_xhr = null; } var self = this; var o = this.options; var data = { query: val }; if (start) { data.start = start; } if ("schema" in o) { data.schema = o.schema; } $.extend(data, o.ac_param); var baseUrl = Gridworks.gridworksHelperService + "suggest_property"; var url = baseUrl + "?" + $.param(data), cached = $.suggest.cache[url]; if (cached) { this.response(cached, start ? start : -1, true); return; } clearTimeout(this.request.timeout); this.request.timeout = setTimeout(function() { self.ac_xhr = $.ajax({ url: baseUrl, data: data, beforeSend: function() { var calls = self.input.data("request.count.suggest") || 0; if (!calls) { self.trackEvent(self.name, "start_session"); } calls += 1; self.trackEvent(self.name, "request", "count", calls); self.input.data("request.count.suggest", calls); }, success: function(data) { self.response(data, start ? start : -1); }, error: function(xhr) { self.trackEvent(self.name, "request", "error", {url:this.url, response: xhr ? xhr.responseText : ''}); }, complete: function(xhr) { if (xhr) { self.trackEvent(self.name, "request", "tid", xhr.getResponseHeader("X-Metaweb-TID")); } }, dataType: "jsonp", cache: true }); }, o.xhr_delay); }, create_item: function(data, response_data) { var css = this.options.css; var li = $("
  • ").addClass(css.item); var name = $("
    ") .addClass(css.item_name) .append( $("
  • ").addClass(css.item); var name = $("
    ") .addClass(css.item_name) .append( $("