Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@constructor-io/constructorio-ui-autocomplete
Advanced tools
Constructor.io Autocomplete UI library for web applications
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.
npm i @constructor-io/constructorio-ui-autocomplete
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>
);
The useCioAutocomplete
hook leaves rendering logic up to you, while 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>
);
}
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
});
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
styles.css
stylesheet..cio-autocomplete
css selector.autocompleteClassName='custom-autocomplete-container'
autocompleteClassName='cio-autocomplete custom-autocomplete-container'
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:
npm ci # install dependencies for local dev
npm run dev # start a local dev server for Storybook
npm run lint # run linter
Dispatch the Publish workflow in GitHub Actions. You're required to provide two arguments:
major
, minor
, or patch
.This workflow will automatically:
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.
Dispatch the Deploy Storybook workflow in GitHub Actions.
FAQs
Constructor.io Autocomplete UI library for web applications
We found that @constructor-io/constructorio-ui-autocomplete 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.