Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@graphcommerce/algolia-search
Advanced tools
Implementation of Algolia Instant Search inside Graphcommerce. Add client or server side product, category and pages search to your project!
Implementation of Algolia Instant Search inside Graphcommerce. Add client or server side product, category and pages search to your project!
@graphcommerce/next-ui
in your package.json.yarn add @graphcommerce/algolia-search@1.2.3
(replace 1.2.3 with the
version of the step above)This plugin contains different app and storefront configuration values.
App configuration values:
Storefront configuration values:
react-instantsearch-hooks-server
package to your projectyarn add react-instantsearch-hooks-server
or
npm install react-instantsearch-hooks-server
SearchResultProps
typetype SearchResultProps = DefaultPageQuery &
ProductListQuery &
ProductFiltersQuery &
CategorySearchQuery & {
filterTypes: FilterTypes
params: ProductListParams
+ serverState?: unknown
}
getServerState
method from the react-instantsearch-hooks-server
package to the imports of your search page...
import { getServerState } from 'react-instantsearch-hooks-server'
...
getServerState
method to the serverState
attribute inside of the return statement.return {
props: {
...(await page).data,
...(await products).data,
...(await filters).data,
...(await categories)?.data,
...(await layout)?.data,
filterTypes: await filterTypes,
params: productListParams,
up: { href: '/', title: 'Home' },
apolloState: await conf.then(() => client.cache.extract()),
+ serverState: await getServerState(<SearchContext />, {
+ renderToString,
+ }),
},
revalidate: 60 * 20,
}
serverState
to the SearchContext
component.+ const { products, categories, params, filters, filterTypes, serverState } = props
const search = params.url.split('/')[1]
const totalSearchResults = (categories?.items?.length ?? 0) + (products?.total_count ?? 0)
const noSearchResults = search && (!products || (products.items && products?.items?.length <= 0))
return (
<>
<PageMeta
title={
search
? i18n._(/* i18n */ 'Results for ‘{search}’', { search })
: i18n._(/* i18n */ 'Search')
}
metaRobots={['noindex']}
canonical='/search'
/>
+ <SearchContext serverProps={serverState}>
FAQs
❗️❗️ NOT SUPPORTED: Does not work with productFiltersPro and does not work with ProductListLayout/\* components. No further development will be done. Please use [@graphcommerce/algolia-products](../algolia-products/README.md) ❗️❗️
We found that @graphcommerce/algolia-search demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.