Socket
Socket
Sign inDemoInstall

apollo-algolia-autocomplete

Package Overview
Dependencies
30
Maintainers
2
Versions
52
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    apollo-algolia-autocomplete

Algolia autocomplete in React


Version published
Weekly downloads
56
increased by166.67%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

Apollo Algolia Autocomplete

This repo contains a custom Algolia autocomplete React component that powers the search bar in various Apollo GraphQL sites.

Installation

npm i apollo-algolia-autocomplete

Demo

https://apollo-algolia.netlify.app/

apollo-algolia-autocomplete

Usage

// App.js
import React from 'react';
import Autocomplete from './components/autocomplete';

function App() {
  return (
    <div>
      ...
      <Autocomplete
        appId={'YOUR_APP_ID'}
        apiKey={'YOUR_API_KEY'}
        currentSource="blog"
        docset="react"
      />
        {/* content that should show up beneath the search bar when the search modal is closed */}
    </div>
  );
}

export default App;

Props

NameDescriptiontypeDefault valueRequired
appIdYour Algolia app IDstring--yes
apiKeyYour Algolia API keystring--yes
currentSourceAlgolia index name ('docs', 'blog', 'odyssey') that you want to appear first in the search resultsstring'docs'no
docsetName of the docset by which you want to filter the documentation resultsstring''no
sourcesAlgolia indices to append to the default Autocomplete sourcesobjectdefaultSources var in Autocomplete.jsno

If a currentSource prop is provided, the search result sources will be sorted to put the currentSource at the top.

Any additional props will be passed to the autocomplete function from @algolia/autocomplete-js.

**This component has the Algolia sources baked in and is therefore not customizable on that front. The only customizable aspect of the Algolia sources is which source results are displayed first (via the currentSource prop)

Custom styling

This package uses the autocomplete-theme-classic to provide some default styling. It also uses vanilla CSS to override some of those defaults to better fit the Apollo brand.

You can find the different class names and CSS variables already being used by autocomplete-theme-classic in the Algolia docs. This will enable you to override any of them with your own styles. Create a .css file with any overrides and import it wherever you're rendering your Autocomplete component.

**Some of this package's custom styles stray a bit from the default Algolia theme. Below are the additional classes that have been added:

TO DO

  • create example site to demo implementation
    • simple Gatsby site at /example
    • use yarn workspaces
  • put this and algolia parsing logic plugin things in same repo
  • odyssey results: only show results for non-internal courses
  • add functionality to the "Can't find what you're looking for?" section
  • optional filtering (press Tab?) -- need to decide what words to allow for filtering
    • used Algolia's optionalFilters option
  • query suggestions
  • odyssey results: include course and lesson name in title
  • restyle scroll bar
  • clean up mobile styling
  • fine tune relevancy (i.e. only show v2 results if explicitly searching for v2, otherwise show v3)
  • padding left section titles
  • preview description text should provide more information than what's on the left results. longer description, title structure/history
  • pills on highlight section should link /refer to something useful
  • we can filter out documentation (as we're in the doc
  • no round corners on reuslts hover highlight
  • placeholder text in search bar should be insightful and guides users on what the can search
  • overall height of overlay could be taller
  • font in search bar could be larger
  • having the remaining search bar from the page visibile behind the overlay looks strange( we should probably hide it)
  • click on query suggestion should fill out value in search bar
  • query suggestions sometimes shows what's is already searched ("client")

Known Bugs 🐛

  • String excerpts for blog records include <p>
  • Excerpts in results list don't highlight queried term
  • Some records have no title
  • Clicking on a query suggestion doesn't fill in the input bar with that term
  • Titles in preview sometimes squish the words together
  • Duplicate results can show up for Odyssey (possibly if there are less results than hitsPerPage? Not sure if also happens for other categories)

UI Ideas

  • breadcrumbs so users can see what section within the docs the search result is in
  • category tags
  • in search results and page previews, have different color for the parts of the text that match the search
  • images for blogs/odyssey?

Keywords

FAQs

Last updated on 17 Dec 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc