Giter Club home page Giter Club logo

constructorio-ui-autocomplete's Introduction

Constructor.io Autocomplete UI Library

npm MIT licensed

Introduction

This UI Library provides React components that manage fetching and rendering logic for Constructor.io's autosuggest services.

Our storybook docs are the best place to explore the behavior and configuration options for this UI Library.

Autocomplete UI demonstration

Installation

npm i @constructor-io/constructorio-ui-autocomplete

Usage

Using the React Component

The CioAutocomplete component handles state management, data fetching, and rendering logic.

import { CioAutocomplete } from '@constructor-io/constructorio-ui-autocomplete';

function YourComponent() {
  return (
    <div>
      <CioAutocomplete apiKey="key_M57QS8SMPdLdLx4x" onSubmit={(e) => {console.log(e)}} />
    </div>
  );

Using React Hooks

The useCioAutocomplete hook leaves rendering logic up to you, while handling:

  • state management
  • data fetching
  • keyboard navigation
  • mouse interactions
  • focus and submit event handling

An apiKey or cioJsClient must be passed to the useCioAutocomplete hook along with an onSubmit callback function. All other values are optional.

import { useCioAutocomplete } from '@constructor-io/constructorio-ui-autocomplete';

const args = {
  "apiKey": "key_M57QS8SMPdLdLx4x",
  "onSubmit": (submitEvent) => console.dir(submitEvent)
};

function YourComponent() {
  const {
    isOpen,
    sections,
    getFormProps,
    getLabelProps,
    getInputProps,
    getMenuProps,
    getItemProps,
    autocompleteClassName,
  } = useCioAutocomplete(args);

  return (
    <div className={autocompleteClassName}>
      <form {...getFormProps()}>
        <label {...getLabelProps()} hidden>
          Search
        </label>
        <input {...getInputProps()} />
      </form>
      <div {...getMenuProps()}>
        {isOpen && (
          <>
            {sections?.map((section) => (
              <div key={section.indexSectionName} className={section.indexSectionName}>
                <div className='cio-section'>
                  <div className='cio-section-name'>
                    {section?.displayName || section.indexSectionName}
                  </div>
                  <div className='cio-items'>
                    {section?.data?.map((item) => (
                      <div {...getItemProps(item)} key={item?.id}>
                        <div>
                          {item.data?.image_url && (
                            <img
                              width='100%'
                              src={item.data?.image_url}
                              alt=''
                              data-testid='cio-img'
                            />
                          )}
                          {item.groupName ? (
                            <p className='cio-term-in-group'>in {item.groupName}</p>
                          ) : (
                            <p>{item.value}</p>
                          )}
                        </div>
                      </div>
                    ))}
                  </div>
                </div>
              </div>
            ))}
          </>
        )}
      </div>
    </div>
  );
}

Using the Javascript Bundle

This is a framework agnostic method that can be used in any JavaScript project. The CioAutocomplete function provides a simple interface to inject an entire Autocomplete UI into the provided selector. In addition to Autocomplete component props, this function also accepts selector and includeCSS.

import CioAutocomplete from '@constructor-io/constructorio-ui-autocomplete/constructorio-ui-autocomplete-bundled';

CioAutocomplete({
  selector: '#autocomplete-container',
  includeCSS: true, // Include the default CSS styles. Defaults to true.
  apiKey: 'key_Gep3oQOu5IMcNh9A',
  onSubmit: (submitEvent) => console.dir(submitEvent),
  // ... additional arguments
});

Custom Styling

Library defaults

By default, importing react components or hooks from this library does not pull any css into your project.

If you wish to use some starter styles from this library, add an import statement similar to the example import statement below:

import '@constructor-io/constructorio-ui-autocomplete/styles.css';

Note: the path and syntax in this example may change slightly depending on your module bundling strategy

  • These starter styles can be used as a foundation to build on top of, or just as a reference for you to replace completely.
  • To opt out of all default styling, do not import the styles.css stylesheet.
  • All starter styles in this library are scoped within the .cio-autocomplete css selector.
  • These starter styles are intended to be extended by layering in your own css rules
  • If you like, you can override the container's className like so: autocompleteClassName='custom-autocomplete-container'
  • If you like, you can pass additional className(s) of your choosing like so: autocompleteClassName='cio-autocomplete custom-autocomplete-container'

Troubleshooting

Known Issues

Older Javascript environments

The library provides two different builds. CommonJS (cjs) and ECMAScript Modules (mjs)

For ECMAScript Modules (mjs) build. The Javascript version is ESNext which might not be supported by your environment. If that's the case and your environment is using an older Javascript version like ES6 (ES2015), you might get this error.

Module parse failed: Unexpected token (15:32) You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file

To solve this you can import the CommonJS (cjs) build which supports ES6 (ES2015) syntax:

import CioAutocomplete from '@constructor-io/constructorio-ui-autocomplete/cjs'

ESLint

There is a known issue with ESLint where it fails to resolve the paths exposed in the exports statement of NPM packages. If you are receiving the following error, you can safely disable ESLint using // eslint-disable-line for that line.

Unable to resolve path to module '@constructor-io/constructorio-ui-autocomplete/styles.css'

Relevant open issues:

Issue 1868

Issue 1810

Local Development

Development scripts

npm ci                  # install dependencies for local dev
npm run dev             # start a local dev server for Storybook
npm run lint            # run linter

Publishing new versions

Dispatch the Publish workflow in GitHub Actions. You're required to provide two arguments:

  • Version Strategy: major, minor, or patch.
  • Title: A title for the release.

This workflow will automatically:

  1. Bump the library version using the provided strategy.
  2. Create a new git tag.
  3. Create a new GitHub release.
  4. Compile the library.
  5. Publish the new version to NPM.
  6. Publish the new version to our public CDN.
  7. Deploy the Storybook docs to GitHub Pages.
  8. Report the progress on the relevant Slack channel.

ℹ️ Note: Please don't manually increase the package.json version or create new git tags.

The library version is tracked by releases and git tags. We intentionally keep the package.json version at 0.0.0 to avoid pushing changes to the main branch. This solves many security concerns by avoiding the need for branch-protection rule exceptions.

New Storybook Version

Dispatch the Deploy Storybook workflow in GitHub Actions.

ℹ️ Note: This is already done automatically when publishing a new version.

Supporting Docs

Usage examples

constructorio-ui-autocomplete's People

Contributors

actions-user avatar crgee1 avatar deomsj avatar dependabot[bot] avatar esezen avatar gardensgreen avatar guiquintelas avatar hhhindawy avatar jjl014 avatar kagenlh avatar lordvkrum avatar martinrajdl avatar mocca102 avatar mudaafi avatar pedro-lb avatar sblaurock avatar stanlp1 avatar tamagrijr avatar vbartonicek avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

constructorio-ui-autocomplete's Issues

Type errors

Version:

"@constructor-io/constructorio-ui-autocomplete": "^1.16.0",

Getting the following on the latest version:

Could not find a declaration file for module '@constructor-io/constructorio-ui-autocomplete'. '/path/node_modules/@constructor-io/constructorio-ui-autocomplete/lib/mjs/index.js' implicitly has an 'any' type.
There are types at '/path/node_modules/@constructor-io/constructorio-ui-autocomplete/lib/types/index.d.ts', but this result could not be resolved when respecting package.json "exports". The '@constructor-io/constructorio-ui-autocomplete' library may need to update its package.json or typings.

Module not found: Can't resolve './beaconUtils'

Hello:

Version : "@constructor-io/constructorio-ui-autocomplete": "^1.22.0"

Getting the following error:

error ./node_modules/@constructor-io/constructorio-ui-autocomplete/lib/mjs/utils.js:3:0
Module not found: Can't resolve './beaconUtils'

How are you importing the library?
import { CioAutocomplete } from '@constructor-io/constructorio-ui-autocomplete'

What version of Next are you on?
NextJS: 13.4.4

What version of Node are you on?
Nodjs: 20.11.0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.