@sisu-llc/pki-suit
Version:
Attivio SUIT, the Search UI Toolkit, is a library for creating search clients for searching the Attivio platform.
84 lines (70 loc) • 3.25 kB
JavaScript
var _class, _temp;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
import React from 'react';
import PropTypes from 'prop-types';
import FieldNames from '../api/FieldNames';
import SearchResult from './SearchResult';
import SearchDocument from '../api/SearchDocument';
/**
* A container for showing a list of documents from the search results.
* This comes from the parent Searcher component.
*/
var SearchResults = (_temp = _class = function (_React$Component) {
_inherits(SearchResults, _React$Component);
function SearchResults() {
_classCallCheck(this, SearchResults);
return _possibleConstructorReturn(this, _React$Component.apply(this, arguments));
}
SearchResults.prototype.renderResults = function renderResults() {
var _this2 = this;
var searcher = this.context.searcher;
var response = searcher.state.response;
var offset = searcher.state.resultsOffset;
if (response && response.documents && response.documents.length > 0) {
var documents = response.documents;
var results = [];
documents.forEach(function (document, index) {
var key = document.getFirstValue(FieldNames.ID);
var position = offset + index + 1;
results.push(React.createElement(SearchResult, {
document: document,
format: _this2.props.format,
position: position,
key: key,
showScores: _this2.props.showScores,
entityFields: _this2.props.entityFields,
baseUri: _this2.props.baseUri,
showRatings: _this2.props.showRatings,
showTags: _this2.props.showTags
}));
});
return results;
}
return null;
};
SearchResults.prototype.render = function render() {
var baseStyle = this.props.style ? this.props.style : {};
var s = Object.assign({}, baseStyle, {
listStyle: 'none',
paddingLeft: 0
});
return React.createElement(
'ul',
{ style: s },
this.renderResults()
);
};
return SearchResults;
}(React.Component), _class.defaultProps = {
baseUri: '',
format: 'list',
showScores: false,
entityFields: new Map([['people', 'People'], ['locations', 'Locations'], ['companies', 'Companies']]),
showTags: true,
showRatings: true
}, _class.contextTypes = {
searcher: PropTypes.any
}, _class.displayName = 'SearchResults', _temp);
export { SearchResults as default };