Svelte Algolia
Utility for server-side Algolia index updates plus a client-side search component for Svelte apps. Only adds a single dependency on client and server: algoliasearch
.
The server-side part of this package was inspired by gatsby-plugin-algolia
.
Usage
There are three steps to setting up svelte-algolia
. First, get it from NPM, then setup your server-side index updates and finally integrate the client-side search component into your UI.
Installation
Install with yarn
yarn add -D svelte-algolia
or (p)npm
npm i -D svelte-algolia
Server Side
-
Create an algoliaConfig
object:
import 'dotenv/config'
function loadPokedex() {
const json = fs.readFileSync(`../package/tests/fixtures/pokedex.json`, `utf8`)
return JSON.parse(json).map(el => ({ ...el, id: el.someUniqAttribute }))
}
const algoliaConfig = {
appId: process.env.ALGOLIA_APP_ID,
apiKey: process.env.ALGOLIA_ADMIN_KEY,
indices: [
{ name: `Pokedex`, getData: loadPokedex },
{ name: `Hitchhiker's Guide`, getData: guideLoader },
],
settings: {
attributesToHighlight: [`name`],
},
}
The getData
function is expected to return an array of objects containing the data you wish to index (a product catalog, blog posts, documentation pages, pokémons or whatever). Each object in the data array should have a key named id
, _id
or objectID
for Algolia to recognize it and overwrite existing data where appropriate.
The settings object applies to all indices. You can also pass a settings object to each index individually which overrides the general one.
-
Pass your config to indexAlgolia
:
import { indexAlgolia } from 'svelte-algolia'
indexAlgolia(algoliaConfig)
You can call this function wherever you'd like to update your indices. Typically, you would include this in every production build of your app.
Config Options
const defaultConfig = {
verbosity: 1,
partialUpdates: false,
matchFields: [],
settings: {},
}
Auto-update Indices during Builds
To use this package as part of a build process (e.g. in a SvelteKit app), simply call indexAlgolia
in your build config:
import { indexAlgolia } from 'svelte-algolia'
const algoliaConfig = {
}
if (process.env.NODE_ENV === `production`) indexAlgolia(algoliaConfig)
Client Side
<Search />
needs your Algolia app's ID and search key to access its search indices as well as a mapping from index to corresponding Svelte-component that should render hits (items matching searches in that index). Each hit component receives a hit
object as prop with all attributes stored in the Algolia index.
<script>
import Search from 'svelte-algolia'
import PokemonHit from '../components/PokemonHit.svelte'
const appId = '0OJ5UL9OJX'
const searchKey = '63f563566cdd6de606e2bb0fdc291994'
</script>
<header>
<nav>{...}</nav>
<Search
{appId}
{searchKey}
indices={{ Pokedex: PokemonHit }}
placeholder="Search Pokedex" />
</header>
For example, the PokemonHit.svelte
component on the demo site looks like this:
<script>
export let hit
</script>
<h2>{@html hit.name}</h2>
<div>
<ul>
<li>Type: {@html hit.type.join(`, `)}</li>
<li>Height: {@html hit.height}</li>
<li>Weight: {@html hit.weight}</li>
<li>Weaknesses: {@html hit.weaknesses.join(`, `)}</li>
</ul>
<img src={hit.img} alt={hit.nameOrig} />
</div>
<style>
/* highlights text matching the search string */
:global(em) {
color: darkcyan;
line-height: 1.2em;
border-radius: 3pt;
font-style: normal;
}
div {
display: flex;
justify-content: space-between;
}
</style>
Substrings in attributes matching the current search string will be wrapped in <em>
which need the {@html ...}
tag to be rendered correctly but can then be styled to highlight why a particular hit matches the current search string. The original value (i.e. without <em>
tags) of every highlighted attribute is available as hit.[attr]Orig
. See hit.nameOrig
above.
Styling
Search.svelte
offers the following CSS variables that can be passed in directly as props:
var(--iconColor)
var(--headingColor)
var(--inputBg)
var(--inputColor)
var(--hitsBgColor, white)
var(--hitsShadow, 0 0 2pt black)
For example:
<Search
indices={{ Pages: SearchHit, Posts: SearchHit }}
{appId} {searchKey}
--hitsBgColor="var(--bodyBg)"
--inputColor="var(--textColor)"
--iconColor="var(--linkColor)" />
The top level element is an aside
with class svelte-algolia
. So you can also style the entire DOM tree below it by defining global styles like
:global(aside.svelte-algolia input button svg) {
}
:global(aside.svelte-algolia div.results section h2) {
}
Examples
Some sites using svelte-algolia
in production:
Using svelte-algolia
yourself? Submit a PR to add your site here!
Want to contribute?
PRs are welcome but best open an issue first to discuss changes.
The repo is split into two workspaces, the package
itself and the demo site
. The app ID and search key .env
were intentionally committed so you can clone this repo and work on it without having to create your own index first. To get a dev server running locally so you can try out changes in package
as you make them, use
git clone https://github.com/janosh/svelte-algolia
cd svelte-algolia/site
sed -i.bak 's/name: `Pokedex`/name: `Pokedex Clone`/' site/svelte.config.js
yarn
yarn dev
Note the sed
command that changes the index name in site/svelte.config.js
from 'Pokedex'
to 'Pokedex Clone'
so you don't accidentally mess up the search index for this demo site while developing.