blob: 73700be5cb946b9ff8f803ae7d6950fcc5e87a53 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
(function (callback) {
if (typeof define === 'function' && define.amd) {
define(['core/AbstractWidget'], callback);
}
else {
callback();
}
}(function () {
(function ($) {
AjaxSolr.ResultWidget = AjaxSolr.AbstractWidget.extend({
afterRequest: function () {
$(this.target).empty();
for (var i = 0, l = this.manager.response.response.docs.length; i < l; i++) {
var doc = this.manager.response.response.docs[i];
$(this.target).append(this.template(doc));
}
},
template: function (doc) {
var snippet = '';
if (doc.data.length > 300) {
snippet += doc.source + ' ' + doc.data.substring(0, 300);
snippet += '<span style="display:none;">' + doc.data.substring(300);
snippet += '</span> <a href="#" class="more">more</a>';
}
else {
snippet += doc.source + ' ' + doc.data;
}
var output = '<div><h2>' + doc.type + '</h2>';
output += '<p id="links_' + doc.id + '" class="links"></p>';
output += '<p>' + snippet + '</p></div>';
return output;
}
});
})(jQuery);
}));