npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-algolia-hoc

v1.0.0

Published

Simple higher order component for algolia search

Downloads

7

Readme

react-algolia-hoc

Simple higher order component to use with algolia search engine.

Also works great with algolia places.

wercker status npm

Demo

Some examples with fancy styling

... or others more bare bone with less noise.

Motivation

Algolia provides an awesome library of component to build on top of their API.

This is a great option to consider, but you may want to use just what you need.

Also you might find the module hard to integrate with your tool chain.

Especially algolia places which bundles a lot of stuff ( including a version of jQuery, :{ ). Pretty bad for ssr.

Usage

The hoc holds the query in it's state, it provides a way to change it, and will request the results when it does change.

import { withAlgolia } from 'react-algolia-hoc'

// dumb component,
// expect to receive a list of hit, a callback to change the query, and the current query
const App = ({ hits, query, onQueryChange }) => (
  <div>
    <input
      type="text"
      value={query}
      onChange={e => onQueryChange(e.target.value)}
    />
    <ul>{hits.map(({ title }) => <li>{title}</li>)}</ul>
  </div>
)

// wrap the dumb component with the hoc
const config = {
  indexName: 'movies',
  ALGOLIA_APP_ID,
  ALGOLIA_API_KEY,
}
const StateFulApp = withAlgolia(config)(App)

Advanced usage

request status

The hoc also provides the props pending which is true while a request is being processed.

It also provides loadMore callback to load more result from the same query, as well as props haveMore and nbHits.

filtering

Algolia supports complex filtering doc.

The hoc also provides a filters property, as well a onFiltersChange to handle this case.

filters is a string in a custom query language. It is super powerful but building the string can be tricky.

The library provides a utility function to parse / stringify a basic filters.

places

The places hoc have the same logic, it does not support filtering, nor loading more.

It gives places as returned by Algolia, which have a very loose type. I recommend to use the utility parseAddress function, which mimics what the official Algolia places library does.

API

withAlgolia

the hoc accepts as config:

  • indexName : string
  • ALGOLIA_APP_ID : string
  • ALGOLIA_API_KEY : string
  • hitsPerPage ?: number
  • delay ?: delay debounce delay on the onFilterChange, default to 100 ( ms )

The component accepts as props:

  • indexName : string will overwrite the config. /!\ at initialization only

The hoc injects as props:

  • pending : boolean
  • query : string
  • filters : string | null
  • hits : Hit[] hit is whatever is in your index
  • nbHits : number
  • haveMore : boolean
  • onQueryChange : (query: string ) => void
  • onFilterChange : (filters: string | null) => void

withAlgoliaPlaces

the hoc accepts as config:

  • ALGOLIA_APP_ID : string
  • ALGOLIA_API_KEY : string
  • hitsPerPage ?: number
  • delay ?: delay debounce delay on the onFilterChange, default to 100 ( ms )
  • useDeviceLocation ?: boolean request device location permission to narrow the search
  • language ?: string language of the search, default to 'en'

The hoc injects as props:

  • pending : boolean
  • query : string
  • hits : Hit[] hit is whatever is in your index
  • onQueryChange : (query: string ) => void