All Projects → AddSearch → search-ui

AddSearch / search-ui

Licence: MIT license
JavaScript library to develop Search UIs for the web

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to search-ui

musicologist
Music advice from a conversational interface powered by Algolia
Stars: ✭ 19 (+18.75%)
Mutual labels:  instant-search, search-interface
Search Ui
Search UI. Libraries for the fast development of modern, engaging search experiences.
Stars: ✭ 1,294 (+7987.5%)
Mutual labels:  search-interface, searchbar
instantsearch-android-examples
Example apps built with algolia/instantsearch-android
Stars: ✭ 60 (+275%)
Mutual labels:  instant-search, search-interface
Structured Filter
jQuery UI widget for structured queries like "Contacts where Firstname starts with A and Birthday before 1/1/2000 and State in (CA, NY, FL)"...
Stars: ✭ 213 (+1231.25%)
Mutual labels:  search-interface, searchbar
Modernsearchbar
The famous iOS search bar with auto completion feature implemented.
Stars: ✭ 167 (+943.75%)
Mutual labels:  autocomplete, searchbar
S2s
Coding time Compile. A tool to write code fastest.
Stars: ✭ 254 (+1487.5%)
Mutual labels:  autocomplete
react-search-autocomplete
A search box that filters the provided array of objects
Stars: ✭ 152 (+850%)
Mutual labels:  autocomplete
Openautocomplete
OpenAutoComplete -- CLI autocomplete specification
Stars: ✭ 249 (+1456.25%)
Mutual labels:  autocomplete
Autocomplete
Blazing fast and lightweight autocomplete widget without dependencies. Only 1KB gzipped. Demo:
Stars: ✭ 244 (+1425%)
Mutual labels:  autocomplete
shell.how
Explain shell commands using next-generation autocomplete Fig.
Stars: ✭ 237 (+1381.25%)
Mutual labels:  autocomplete
react-autocomplete-tags
React Autocomplete Tags
Stars: ✭ 17 (+6.25%)
Mutual labels:  autocomplete
google-it-telegram-bot
🤖 @Google_itBot 🔎 Search and share LINKS/IMAGES/VIDEOS in inline mode
Stars: ✭ 40 (+150%)
Mutual labels:  search-interface
zsh-yarn-completions
Yarn completions for Z-shell that supports yarn workspaces
Stars: ✭ 35 (+118.75%)
Mutual labels:  autocomplete
vue-thailand-address-autocomplete
🇹🇭 Autocomplete ที่อยู่ในประเทศไทย
Stars: ✭ 49 (+206.25%)
Mutual labels:  autocomplete
Inquirer Autocomplete Prompt
Autocomplete prompt for inquirer
Stars: ✭ 250 (+1462.5%)
Mutual labels:  autocomplete
react-native-autocomplete-dropdown
Dropdown Item picker with search and autocomplete (typeahead) functionality for react native
Stars: ✭ 87 (+443.75%)
Mutual labels:  autocomplete
Academic Phrases
Bypass that mental block when writing your papers.
Stars: ✭ 244 (+1425%)
Mutual labels:  autocomplete
zim-plugin-instantsearch
Search as you type in Zim, in similar manner to OneNote Ctrl+E.
Stars: ✭ 32 (+100%)
Mutual labels:  instant-search
AzSearchStore
A UI state management library to build js apps against Azure Search
Stars: ✭ 23 (+43.75%)
Mutual labels:  search-interface
combobox-nav
Attach combobox navigation behavior to <input> or <textarea>.
Stars: ✭ 76 (+375%)
Mutual labels:  autocomplete

AddSearch Search UI Library

Use Search UI library to create fast, mobile-friendy, and cross-browser compatible search solutions quickly and effortlessly.

Search UI gif

Open the demo

Quick example

<!-- Libraries -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/addsearch-js-client.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/addsearch-search-ui.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/addsearch-search-ui.min.css" />

<!-- Containers for UI components-->
<div id="searchfield-container"></div>
<div id="results-container"></div>
<div id="pagination-container"></div>

<script>
  // AddSearch JS client instance
  var client = new AddSearchClient('YOUR PUBLIC SITEKEY');

  // Search UI instance
  var searchui = new AddSearchUI(client);

  // UI components
  searchui.searchField({
    containerId: 'searchfield-container',
    placeholder: 'Keyword..',
    button: 'Search'
  });

  searchui.searchResults({
    containerId: 'results-container'
  });
  
  searchui.pagination({
    containerId: 'pagination-container'
  });
  
  // Start after all components are added
  searchui.start();
</script>

Examples

Basic example

Advanced example with many components

See more examples

Search UI instance and configuration

To create a Search UI instance, call the constructor new AddSearchUI(client, conf) with the mandatory AddSearchClient (v0.3.0 or newer) parameter and an optional configuration parameter:

var client = new AddSearchClient('YOUR PUBLIC SITEKEY');

var conf = {
  debug: true
};

var searchui = new AddSearchUI(client, conf);

The configuration object can contain following values:

Key Possible values Default value Description
debug boolean false Log events to console and enable Redux DevTools
analyticsCallback function n/a A function to call when an analytics event occurs. Read more
baseFilters object null A filter object that is applied to all searches under the hood. The user can't disable baseFilters
collectAnalytics boolean true Control if analytics events are collected at all
matchAllQuery boolean false Execute "match all" query when the Search UI is started
onFilterChange function n/a Function to call when active filters are changed (for conditional visibility)
searchResultsPageUrl String null Redirect the user to a separate search results page, instead of showing search results on the current page
searchParameter String "search" Name of the search parameter which is added to the URL, by default the library adds "?search="
updateBrowserHistory boolean true Set this value to false for a second/third searchui's instance to prevent conflict in browser's URL
fieldForInstantRedirect String n/a Checking if the search keyword is matching with any search result's custom field's value, then redirect users to the matched page. E.g. custom_fields.sku

After all UI components have been added to the SearchUI object, the start function must be called:

  searchui.start();

Components

Search field

The search field. Can include a button to execute the search.

  searchui.searchField({
    containerId: 'searchfield',
    placeholder: 'Keyword..',
    button: 'Search'
  });

Settings that can be passed to the searchField function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for the search bar
autofocus boolean true Focus the input field automatically when the page is loaded
button String n/a Add a button to execute the search. The value of this field is the Button's label text
placeholder String n/a Search field's placeholder text
searchAsYouType boolean false Execute search after every keystroke
icon boolean true Show search icon
ignoreAutocomplete boolean false Don't show the autocomplete component if something is typed to this field (in case you have multiple fields)
ignoreSearchResultsPageUrl boolean false Don't redirect the user to a search results page from this field (in case you have multiple fields)
onfocusAutocompleteMatchAllQuery boolean false If true, execute match all query for autocomplete box when this field is empty and focused
template String Default template Override the default template with a custom Handlebars template
fieldForInstantRedirect String n/a This setting is deprecated, use it in Search UI Configuration instead
selectorToBind String n/a CSS selector of the existing search input field to be used. If this setting is defined, Search UI won't be creating a search input field, instead it will bind all relating functionalities to the input field defined by this selector.
buttonSelector String n/a CSS selector of the existing search button. This setting is applicable only when "selectorToBind" is defined

Autocomplete

Show suggested keyword, search results, or both under the search field. The default autocomplete template supports search suggestions that must be enabled from the AddSearch Dashboard before using the feature. Create your own template if you want to to show search results or more advanced views.

  searchui.autocomplete({
    containerId: 'autocomplete',
    sources: [
      {
        type: AddSearchUI.AUTOCOMPLETE_TYPE.SUGGESTIONS
      }
    ]
  });

Settings that can be passed to the autocomplete function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for the autocomplete dropdown
categoryAliases Object n/a A map of category aliases used by the categorySelectionFunction
categorySelectionFunction Function defaultCategorySelectionFunction A function to select and format the category information on the bottom of each search result
hideAutomatically boolean true Hide the autocomplete dropdown when the search field is blurred
onShow function n/a A function to call when the autocomplete is shown. Called as the container as parameter
template String Default template Override the default template with a custom Handlebars template
infiniteScrollElement object n/a A scrollable container with overflow: auto; around the autocomplete box (for AddSearchUI.AUTOCOMPLETE_TYPE.SEARCH)
sources Array n/a Array of data sources

The sources array can contain objects with the following fields:

Key Possible values Default value Description
type AddSearchUI.AUTOCOMPLETE_TYPE.SUGGESTIONS, AddSearchUI.AUTOCOMPLETE_TYPE.SEARCH, AddSearchUI.AUTOCOMPLETE_TYPE.CUSTOM_FIELDS n/a Fetch search suggestions or search results
client AddSearch JS Client instance Client passed to the AddSearchUI constructor Use a custom client to use specific filters or different search index
collectSearchAnalytics boolean false If enabled and the type of this source is SEARCH, save the number of searches to analytics
jsonKey String n/a If the type is AddSearchUI.AUTOCOMPLETE_TYPE.SEARCH, the Handlebars template can access the results from the JSON object searchResults.<jsonKey>
field String n/a If the type is AddSearchUI.AUTOCOMPLETE_TYPE.CUSTOM_FIELDS, choose a custom field, then its value will be used to generate suggestion terms

Search results

Actual search results.

  searchui.searchResults({
    containerId: 'searchresults'
  });

Settings that can be passed to the searchResults function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for search results
categoryAliases Object n/a A map of category aliases used by the categorySelectionFunction
categorySelectionFunction Function defaultCategorySelectionFunction A function to select and format the category information on the bottom of each search result
template String Default template Override the default template with a custom Handlebars template for search results
template_resultcount String Default template Override the default template with a custom Handlebars template for "Number of results"
template_noresults String Default template Override the default template with a custom Handlebars template for "No search results found"
template_image String Default template Override the default template with a custom Handlebars template for the featured image shown with search results

If you are customising the default search result template, make sure your links still include the data-analytics-click="{{id}}" attribute, otherwise your analytics will not report clicks or CTR correctly.

Pagination

Pagination. Typically below search results.

  searchui.pagination({
    containerId: 'pagination'
  });

Settings that can be passed to the pagination function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for the paging
template String Default template Override the default template with a custom Handlebars template
onResultsScrollTo "top", "no scrolling" "top" Set a scrolling behavior when navigate to a new page of results

To change the number of results shown per page, use AddSearch JS client's setPaging function

Load more results

Button to load more results or an infinite scroll implementation.

  searchui.loadMore({
    containerId: 'loadmore',
    type: AddSearchUI.LOAD_MORE_TYPE.BUTTON
  });

Settings that can be passed to the loadMore function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for the component
template String Default template Override the default template with a custom Handlebars template
type AddSearchUI.LOAD_MORE_TYPE.BUTTON, AddSearchUI.LOAD_MORE_TYPE.INFINITE_SCROLL n/a Require user clicking "More results" button or load automatically on scroll bottom
infiniteScrollElement object n/a If the type is INFINITE_SCROLL, this is the scrollable element. Can be window or an HTML element with overflow: auto;

To change the number of results shown per page, use AddSearch JS client's setPaging function. The same Search UI can have the pagination component for desktop view and loadMore for mobile.

Sort by

Component to change the order of search results.

  searchui.sortBy({
    containerId: 'sortby',
    options: [
      {
        label: 'Sort by relevance',
        sortBy: 'relevance',
        order: 'desc'
      },
      {
        label: 'Oldest first',
        sortBy: 'date',
        order: 'asc'
      },
      {
        label: 'Most expensive first',
        sortBy: 'custom_fields.price',
        order: 'desc'
      },
      {
        label: 'Multiple sorting parameters',
        sortBy: ['custom_fields.plan_name', 'date'],
        order: ['desc', 'desc']
      }
    ]
  });

Settings that can be passed to the sortBy function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for the paging
template String Default template Override the default template with a custom Handlebars template
type AddSearchUI.SORTBY_TYPE.SELECT_LIST, AddSearchUI.SORTBY_TYPE.RADIO_GROUP Select list "Sort by" menu shown as select list or as a radio button group

The options array can contain objects with following fields:

Key Possible values Default value Description
label String, Array n/a Label text to show
sortBy relevance, date, custom_field n/a The field to sort the search results by
order desc, asc desc Ascending order (a-z or 1-9) or descending order (z-a, 9-1)

Filters

Components to let the user filter search results by URL patterns or custom field values.

  searchui.filters({
    containerId: 'filters',
    type: AddSearchUI.FILTER_TYPE.CHECKBOX_GROUP,
      options: {
        appleProducts: {
          label: 'Apple products',
          filter: {'custom_fields.brand': 'apple'}
        }
    }
  });

Settings that can be passed to the filters function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for filters
type AddSearchUI.FILTER_TYPE.CHECKBOX_GROUP, AddSearchUI.FILTER_TYPE.RADIO_GROUP, AddSearchUI.FILTER_TYPE.SELECT_LIST, AddSearchUI.FILTER_TYPE.TABS, AddSearchUI.FILTER_TYPE.TAGS, AddSearchUI.FILTER_TYPE.RANGE n/a Component's type
template String Default templates Override the default template with a custom Handlebars template
clearOtherFilters boolean false Clear all other filters when the value of this filter changes. Works with RADIO_GROUP, SELECT_LIST, and TABS filters
setSorting Object n/a Set sorting when the value of this filter changes. The object must contain field and order. Works with RADIO_GROUP, SELECT_LIST, and TABS filters.
options Object n/a Object containing filtering options

The options object can contain multiple filtering options. If the type is Tabs, Select list, or Radio group, just one of the options can be activated at any given time. If the filter type is Checkbox or Tags, multiple filters can be activated. The option key (appleProducts in the example above) is shared across filter components. All filters with the same key are enabled and disabled simultaneously. Because of this, you can have several filter components controlling the same filter. For example, radio button list on desktop view and a select list on mobile.

Fields in options:

Key Possible values Default value Description
label String n/a Label shown for the user
filter Object n/a Filter object.

The options object is not applicable if the filter type is AddSearchUI.FILTER_TYPE.RANGE, but following settings should be passed to the filters function:

Key Possible values Default value Description
label String n/a Label shown above range filter. For example, "Select price range"
labelShort String n/a Short label shown in the activeFilters component. For example, "Price"
validator String n/a Regular expression to validate the input. For example, ^[\\d]*$ for numeric field

Facets

Display facets and let the user filter results by facets (i.e. dynamic property filters).

  searchui.facets({
    containerId: 'facets'
  });

Before using this component, add appropriate facets to your client instance so the information is fetched from the search index:

  client.addFacetField('custom_fields.brand');

Settings that can be passed to the facets function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for facets
facetsFilter function n/a Custom JS function that receives facets in an array, removes some of them, and returns a filtered facet array
field String n/a Same field that you passed to the JS client. E.g. custom_fields.brand
sticky boolean false Show all options even if a facet is selected. Options are reset on keyword change
advancedSticky boolean false Similar to sticky, extra search queries are made to update other facet groups. Enabling this setting would use quite an amount of search query usage in your subscription plan
template String Default template Override the default template with a custom Handlebars template

Hierarchical Facets

Display hierarchical facets and let the user filter results by facets. In addition, user can drill down each facets and select more specific values. (i.e. dynamic property filters). By default, hierarchical facet is sticky. Currently, this component does not support historical URL, refreshing the page will lose the current state of the facet group.

  searchui.hierarchicalFacets({
    containerId: 'hierarchical-facets-container',
    fields: [
      'custom_fields.nested_facet_lvl_0',
      'custom_fields.nested_facet_lvl_1',
      'custom_fields.nested_facet_lvl_2',
      'custom_fields.nested_facet_lvl_3'
    ]
  });

Before using this component, add appropriate hierarchical facets to your client instance so the information is fetched from the search index:

  client.addHierarchicalFacetSetting([
    {
      "fields": [
       "custom_fields.nested_facet_lvl_0",
        "custom_fields.nested_facet_lvl_1",
       "custom_fields.nested_facet_lvl_2",
        "custom_fields.nested_facet_lvl_3"
      ],
      "sortOrder": "COUNT_DESC_NAME_ASC"
    }
  ]);

Settings that can be passed to the facets function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for facets
fields String n/a Define a list of custom fields in hierarchical order (top level facet is placed first).
template String Default template Override the default template with a custom Handlebars template

Range Facets

Display range facets of a given custom field and let the user filter results by different range buckets. By default, range facet is sticky. This feature uses extra search queries to fetch min-max values of the custom field.

  client.addStatsField('custom_fields.price');
  searchui.rangeFacets({
    containerId: 'rangeFacetsContainer',
    field: 'custom_fields.price',
    maxNumberOfRangeBuckets: 7
  });

Settings that can be passed to the rangeFacets function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for facets
field String n/a A numeric custom field to use as a facet. E.g. custom_fields.price
maxNumberOfRangeBuckets integer 5 Maximum number of buckets that will be displayed. If a bucket is empty, it will be hidden
template String Default template Override the default template with a custom Handlebars template

alt text

Active filters

Show active filters and facets. Let user remove specific filters or clear everything,

  searchui.activeFilters({
    containerId: 'activefilters'
  });

Settings that can be passed to the activeFilters function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for active filters list
clearAll boolean true Show "clear all filters" button if more than one filter is active
template String Default template Override the default template with a custom Handlebars template

Segmented search results

Show multiple search results lists from several indices or with different filters.

  searchui.segmentedSearchResults({
    containerId: 'segment1',
    client: segmentClient,
    template: segmentTemplate
  });

Settings that can be passed to the segmentedSearchResults function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for this component
client AddSearch JS Client instance n/a Client with appropriate filters/settings for this segment
template String n/a Handlebars template for this segment

Frequently bought together

Show frequently bought together items given the product ID.

  searchui.recommendations({
    containerId: 'recommendation-container',
    type: AddSearchUI.RECOMMENDATION_TYPE.FREQUENTLY_BOUGHT_TOGETHER,
    configurationKey: 'config1',
    getProductIdFunction: function() {
      return new URLSearchParams(window.location.search).get('prod');
    },
    ignoreFetchOnStart: false
  });

Settings that can be passed to the segmentedSearchResults function:

Key Possible values Default value Description
containerId String n/a ID of the HTML element that will act as a container for this component
type AddSearchUI.RECOMMENDATION_TYPE.FREQUENTLY_BOUGHT_TOGETHER n/a Type of recommendation
ignoreFetchOnStart boolean false If enabled, recommendation won't be fetched unless call searchui.fetchRecommendation(<containerId>)
template String n/a Handlebars template for this segment

General functions

Execute search

Execute a search query with a specific keyword. Common use cases include links of most popular keywords: Clicking the keyword executes the search.

  searchui.search(keyword);

Clear search

Clear the keyword and enabled filters.

  searchui.clear();

Hide autocomplete

Hide the autocomplete component. For example, a "close" button inside the autocomplete modal would call this function.

  searchui.hideAutocomplete();

Register a custom Handlebars helper

Handlebars Helpers can be used to implement functionality that is not part of the Handlebars language itself. Read more at handlebarsjs.js.

  // This function can be called in a Handlebars template: {{toUpperCase "foo"}}
  searchui.registerHandlebarsHelper('toUpperCase', function(param) {
    return param.toUpperCase();
  });

Register a custom Handlebars partial

Handlebars allows for template reuse through partials. Partials are normal Handlebars templates that may be called directly by other templates. Read more at handlebarsjs.js.

  // This function can be called in a Handlebars template: {{toUpperCase "foo"}}
  var partialTemplate = `Print this line in main template.`;
  searchui.registerHandlebarsPartial('myPartial', partialTemplate);
  // Calling the partial in main template
  {{> myPartial}}

Analytics

This library sends analytics events to AddSearch Analytics Dashboard when:

  • Search results are returned
  • No results were found
  • A result was clicked

You can add integration for third party analytics software by passing a custom analyticsCallback function in AddSearchClient constructor's configuration object. This function is called with a single parameter containing one of the following JSON objects:

Search results received:

{
  action: 'search', 
  keyword: 'keyword', 
  numberOfResults: 10, // If 0, no results were found
  processingTimeMs: 21 // Time it took to process the query and return search results (in milliseconds)
}

In search-as-you-type implementations the search event is sent after 2,5 second delay in typing or if a result is clicked within this debounce time.

Search result clicked:

{
  action: 'click', 
  keyword: 'keyword', 
  documentId: '...', // Hit's 32-char identifier
  position: 1 // Position of the clicked result. The first result being 1
}

To save clicks reliably before the user's browser leaves the page, it's recommended to use the navigator.sendBeacon method.

Supported web browsers

This library is tested on

  • Chrome
  • Firefox
  • Edge
  • Safari 6.1+
  • Internet Explorer 11

Development

To modify this library, clone the repository and follow these steps:

Install dependencies

npm install

Code

Re-compile when source files change while developing

npm run watch

Run tests

Run automated tests

npm test

Run automatically when tests change

npm run test -- --watch

Build for production

Build a production bundle. The file is saved under the dist/ folder

npm run build

Support

Feel free to send any questions, ideas, and suggestions at [email protected] or visit addsearch.com for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].