SimpleSearchJS
SimpleSearchJS is a JavaScript module that makes it even easier to consume the Simple Search Service API and enhance your web page.
Once installed the module can be used to query the service and then have the responses automatically parsed, formatted, and placed onto the web page.
Apart from querying the Simple Search Service and returning the response, the SimpleSearchJS module includes some additional UI functionality.
-
Search requests from
input
: The module can be attached to any textinput
tag and automatically perform search requests when the ENTER key pressed (using the value of theinput
). -
Search button: An element (e.g.,
button
,link
, etc) can be provided which would act as the search button and trigger a search. Alternatively, the module can be configured to automatically create the search button and append besides theinput
. -
Facets as list: The search response can be parsed and facets formatted as an unordered list (i.e.,
ul
) and the HTML fragment automatically inserted onto the web page. -
Results as table: The search response can be parsed and results formatted as an HTML
table
(i.e.,ul
) and the fragment automatically inserted onto the web page. -
Results as list: The search response can be parsed and results formatted as an unordered list (i.e.,
ul
) and the HTML fragment automatically inserted onto the web page.
Install
Download and include simplesearch.js
in your HTML file:
<script type="text/javascript" src="simplesearch.js"></script>
Usage
The module can be initialized via JavaScript or using HTML data attributes.
-
HTML data attributes
<input type="text" data-simple-search="http://a-simple-search-service.com" data-search-results="#results .tablewrapper" data-search-list=".resultsListWrapper" data-search-facets="#facetsWrapper">
data-simple-search - (Required) the url for the Simple Search Service to connect to
data-search-results - (Optional) the CSS selector for the element where the search results HTML (table
) fragment should be inserted
data-search-list - (Optional) the CSS selector for the element where the search results HTML (ul
) fragment should be inserted
data-search-facets - (Optional) the CSS selector for the element where the search facets HTML (ul
) fragment should be inserted -
Javascript
var simplesearch = new SimpleSearch(serviceUrl, callbacks, selectors);
serviceUrl - (Required) the url for the Simple Search Service to connect to
callbacks - (Optional) a JavaScript object containing the callback functions to call (e.g, onSuccess, onFail, etc)
selectors - (Optional) a JavaScript object containing the CSS selectors (e.g., resultsTable, facetsList, etc)
Callbacks
-
### onBefore()
The callback is fired right before a search request is made.
-
### onSuccess(results)
Fired when a search request completes successfully. The results argument passed is a JSON object containing the response from the Simple Search Service plus a few additional fields:
{ "data": {}, "fields": [], "facets": [], "rest_uri": "", "time": 170, "paging": { "bookmarks": [], "hasMore": true } }
data - JSON response from the Simple Search Service
fields - an array of available fields and field type (e.g., string, number. etc)
facets - an array of the faceted fields and field type
rest_uri - the URL used to make the request (e.g., http://a-simple-search-service.com/search?q=:)
time - the time (in ms) it took for the request to complete
paging.bookmarks - an array of bookmark IDs
paging.hasMore -true
if there is more content to retrieve -
### onFail(err)
The callback is made when a search request fails or cannot be made. The err argument passed is a JSON object with an
error
andreason
fields. For example:{ "error": "bad_request", "reason": "Page out of bounds: No next page" }
Selectors
Name | Type | Descriptions |
---|---|---|
inputField | string or HTML DOM element | Required - The search input field. It may be an input HTML DOM element or a CSS selector string for the input element. For example, "#searchInput" to select an input with an ID of searchInput |
searchButton | boolean, string, or HTML DOM element | Optional - The search button. It may be an HTML DOM element, a CSS selector string for the element, or a boolean. If true a search button is created and appended beside the input . |
resultsTable | string or HTML DOM element | Optional - Where the search results HTML (table ) fragment is to be inserted. An HTML DOM element or a CSS selector string for the element. |
resultsList | string or HTML DOM element | Optional - Where the search results HTML (ul ) fragment is to be inserted. An HTML DOM element or a CSS selector string for the element. |
facetsList | string or HTML DOM element | Optional - Where the search results facets HTML (ul ) fragment is to be inserted. An HTML DOM element or a CSS selector string for the element. |
API
search()
Searching is automatically performed when the ENTER key is pressed (with focus on the input
) or when the search button is clicked. In addition, a search request can also be triggered programmatically:
simplesearch.search(queryString, limit);
queryString - (Required) the query to perform (e.g., *:*
, city:Boston AND state:MA
, etc.).
limit - (Optional) maximum number of results to return. If omitted the number of results returned depends on the Simple Search Service configuration.
next()
Paging is supported by the module using a Next/Prev page pattern. To get the next page of results:
simplesearch.next();
prev()
Paging is supported by the module using a Next/Previous page pattern. To get the previous page of results:
simplesearch.prev();
Fragments
The HTML fragments generated by the module and inserted into the page are as follows:
Search Results Table
<div class="simplesearch-results-table">
<div class="simplesearch-count">
<span>Showing x - y of z</span>
</div>
<div class="simplesearch-paging">
<button class="simplesearch-prev">Prev</button>
<button class="simplesearch-next">Next</button>
</div>
<table class="simplesearch-table">
<thead>
<tr>
<th>field name</th>
.
.
.
</tr>
</thead>
<tbody>
<tr>
<td><span>value</span></td>
.
.
.
</tr>
.
.
.
</tbody>
</table>
</div>
Search Result Unordered Lists
<div class="simplesearch-results-list">
<div class="simplesearch-count">
<span>Showing x of y</span>
</div>
<ul class="simplesearch-list">
<li class="simplesearch-list-item">
<p>
<span>field name</span>
<span>value</span>
</p>
.
.
.
</li>
.
.
.
</ul>
<div class="simplesearch-paging">
<button class="simplesearch-more">More</button>
</div>
</div>
Facets Unordered Lists
<div class="simplesearch-facets-list">
<div>
<h4 class="simplesearch-facet-key">facet name</h4>
<ul class="simplesearch-facet-value-list">
<li class="simplesearch-facet-value">
<span class="simplesearch-facet-value-name" role="button" data-search-query="facetname:facetvalue">facet value</span>
<span class="simplesearch-facet-value-count">(facet count)</span>
</li>
.
.
.
</ul>
</div>
.
.
.
</div>
Demo
Examples can be found in the /demo
folder of the respository.
Frameworks
The SimpleSearchJS module is vanilla JavaScript and does not require any additional libraries. It can therefore be easily intergrated.
However, for those preferring it, a jQuery plugin is also available. The jQuery plugin (jquery.simplesearch.js
) is simply a wrapper around the vanilla JavaScript module (simplesearch.js
).