A gridsome search plugin to index objects to Algolia
Ported from gatsby-plugin-algolia
You can specify a list of collections to run and how to transform them into an array of objects to index. When you run gridsome build
, it will publish those to Algolia.
Here we have an example with some data that might not be very relevant, but will work with the default configuration of gridsome new
BREAKING CHANGES FROM VERSION 1.x: Read Below
yarn add gridsome-plugin-algolia
npm install gridsome-plugin-algolia -S
First add credentials to a .env file, which you won't commit. If you track this in your file, and especially if the site is open source, you will leak your admin API key. This would mean anyone is able to change anything on your Algolia index.
// DEVELOPING: .env.development
// BUILDING: .env.production
ALGOLIA_APP_ID=XXX
ALGOLIA_ADMIN_KEY=XXX
ALGOLIA_INDEX_NAME=XXX
// gridsome-config.js
const collections = [
{
query: `{
allBlogPost {
edges {
node {
id
title
slug
modified
}
}
}
}`,
transformer: ({ data }) => data.allBlogPost.edges.map(({ node }) => node),
indexName: process.env.ALGOLIA_INDEX_NAME || 'posts', // Algolia index name
itemFormatter: (item) => {
return {
objectID: item.id,
title: item.title,
slug: item.slug,
modified: String(item.modified)
}
}, // optional
matchFields: ['slug', 'modified'], // Array<String> required with PartialUpdates
},
];
module.exports = {
plugins: [
{
use: `gridsome-plugin-algolia`,
options: {
appId: process.env.ALGOLIA_APP_ID,
apiKey: process.env.ALGOLIA_ADMIN_KEY,
collections,
chunkSize: 10000, // default: 1000
enablePartialUpdates: true, // default: false
},
},
],
};
By default all items will be reindexed on every build. To enable only indexing new, changed and deleted items, set enablePartialUpdates
to true
and make sure matchFields
is correct for every collection.
The contentTypeName
field in collections
has been replaced in favor of query
and transformer
. This is to allow greater control over what data you want to fetch from GraphQL before indexing to Algolia.
To migrate the least you should do is the following:
contentTypeName
propertyquery
property containing a plain graphql query to fetch the data you needtransformer
property with a function as value to map the result to a set of items. (Note: The itemFormatter
function will still be called)Q Partial updates not working? All items being reindexed everytime.
A
Strings
or Numbers
. Dates for example are converted to String when pushed to Algolia so they won't match unless you first convert the Date to a string eg.id
that you map to objectID
itemFormatter: (item) => {
return {
objectID: item.id, // Unique id
title: item.title,
slug: item.slug,
modified: String(item.modified) // Date converted to string
}
}