This library is an Afosto instant search javascript widget. With this widget you can easily implement Afosto instant search on your website.
# Install with Yarn
yarn add @afosto/instant-search-widget
# Install with NPM
npm install @afosto/instant-search-widget
This library supports the last two versions of major browsers (Chrome, Edge, Firefox, Safari).
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@afosto/instant-search-widget@latest/dist/afosto-instant-search-widget.min.css" />
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/@afosto/instant-search-widget@latest/dist/afosto-instant-search-widget.min.js"></script>
To use the widget you will need an Afosto Instant Search search engine. Don't have one yet? Sign up on Afosto.com and follow the guides in our documentation.
First you initialize the Afosto search widget with your search engine key. This search engine key can be found in the Afosto app.
import { AfostoInstantSearchWidget } from '@afosto/instant-search-widget';
import '@afosto/instant-search-widget/dist/afosto-instant-search-widget.min.css';
AfostoInstantSearchWidget.init('my-search-engine-key');
const { AfostoInstantSearchWidget } = require('@afosto/instant-search-widget');
AfostoInstantSearchWidget.init('my-search-engine-key');
<script>
document.addEventListener('DOMContentLoaded', function() {
AfostoInstantSearchWidget.init('my-search-engine-key');
});
</script>
Add an element to your website with a data attribute as shown below.
<button data-af-instant-search>Toggle widget</button>
The default language used for this widget is English. To use other languages you need to include/import the i18n locale files or add custom messages.
Important: Load the i18n locale files after the widget.
import { AfostoInstantSearchWidget } from '@afosto/instant-search-widget';
import nl from '@afosto/instant-search-widget/i18n/nl';
import en from '@afosto/instant-search-widget/i18n/en';
AfostoInstantSearchWidget.addMessages('nl', nl);
AfostoInstantSearchWidget.addMessages('en', en);
<script src="https://cdn.jsdelivr.net/npm/@afosto/instant-search-widget@latest/dist/afosto-instant-search-widget.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@afosto/instant-search-widget@latest/dist/i18n/en.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@afosto/instant-search-widget@latest/dist/i18n/nl.js"></script>
Setup the locale on widget initialization.
// Set the locale for the widget. For this to work properly you need to include the i18n locale files.
AfostoInstantSearchWidget.init('my-search-engine-key', {
locale: 'en',
});
Or change the locale of the widget dynamically.
AfostoInstantSearchWidget.setLocale('en');
If you would like to use your own translation messages, use the addMessages functionality.
Note: For the available messages check the DEFAULT_TRANSLATIONS constant.
// Don't forget to pay attention to the variables in the translation messages.
AfostoInstantSearchWidget.addMessages('en', {
close: 'Close',
filters: {
closeFilters: 'Close',
noResults: 'No results',
reset: 'Clear filters',
showMore: 'Show more',
showLess: 'Show less',
title: 'Filters',
},
hitsPerPage: {
optionsLabel: '{value} results',
},
search: {
placeholder: 'Search...',
resetTitle: 'Clear your search query.',
submitTitle: 'Submit your search query.',
},
stats: {
resultsLabel: '{value} results found',
},
});
It is possible to set an initial search state. With it, you can define the initial state of filters and the query. For a reference of the available options within the searchState, check the documentation.
AfostoInstantSearchWidget.init('my-search-engine-key', {
searchState: {
// set te initial query to 'phone'
query: 'phone',
// set the brand filter to initial option 'Apple'
refinementList: {
brand: ['Apple'],
},
// set the range filter price to initial range between 20 and 500
range: {
price: {
min: 20,
max: 500
}
},
},
});
The widget is fully customizable with CSS. The layout is built with CSS grid and grid-areas. That means you can move parts of the widget to different place or hide them completely. Check out this article for more explanation on how to customize the widget: Lightning fast search widget with Afosto Instant Search
You can also check this demo from the article. It has a different layout and a dark theme.
Afosto Instant Search Widget customization demo
https://plantcareforbeginners.com/
https://www.dekorenbeurs.nl/
- Node >= 14
This project is licensed under the terms of the MIT license.