Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-structured-query-search

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-structured-query-search

react-structured-query-search

  • 1.0.0-alpha.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
increased by25%
Maintainers
1
Weekly downloads
 
Created
Source

react-structured-query-search 🎉

NPM JavaScript Style Guide

react-structured-query-search is a javascript library that provides autocomplete search queries.
This was inspired by visualsearch and react-structured-filter

This plugin is written on top of react-structured-filter, which has been revamped to add React 16 support and the existing code has been overriden to support New features.

You can use all the react-typeahead, react-structured-filter API(options) as they are.

🎉🎊 New Features 🎊🎉

  • Ajax support to retrieve values.
  • Allows user to send values for Category in Array<String> or Array<Object>
  • Allows user to pass custom loader component.
  • Allows user to customize the header of dropdown (categories, operators, values).
  • Allows user to enable/disable operators in search.
  • Allows user to perform category-value search without operator (if isAllowOperator is false).
  • Switch between unique/duplicate categories (key).
  • Switch between unique/duplicate values
  • Allows user to send custom operators list.
  • Allows user to render custom tag(token) Component or the tag(token) Item.
  • Allows user to update Options(props) on runtime.

Install

npm install --save react-structured-query-search

Usage (Example Code) (Demo)

If you want to use Tokenizer then you either import as follows:

import ReactStructuredQuerySearch from "react-structured-query-search";
or
import {Tokenizer} from "react-structured-query-search";

If you want to use Typeahead then you have to import as follows:

import {Typeahead} from "react-structured-query-search";

API

New flexible modification options

ParameterTypeDefaultDescription
categoryHeaderString, Component"Category"Allows user the change the header title of Category
operatorHeaderString, Component"Operator"Allows user the change the header title of Operator
valueHeaderString, Component"Value"Allows user the change the header title of Value
isAllowOperatorBooleanfalseAllows user to enable/disable operators in search
loadingRenderfunction, Component"Loading...."Show custom loader when values are retrieved using Ajax
fuzzySearchEmptyMessageString"No result found"This message is shown when dropdown doesn't have search value
updateOptionsfunctionAllows user to update the Options(props) at runtime, this function is called before onTokenRemove and onTokenAdd
renderTokensfunctionAllows user to render custome Token Component
renderTokenItemfunctionAllows user to render custome Token Item
renderSearchItemfunctionAllows user to render custome value

props.options (Data attributes)

ParameterTypeDefaultRequiredDescription
categoryStringrequiredName of the first thing the user types.
typeStringtextThis can be one of the following:
  • text: Arbitrary text for the value. No autocomplete options.
    • Operator choices will be: "==", "!=", "contains", "!contains".
  • textoptions: You must additionally pass an options value.
    • Operator choices will be: "==", "!=".
  • number: Arbitrary text for the value. No autocomplete options.
    • Operator choices will be: "==", "!=", "<", "<=", ">", ">=".
  • date: Shows a calendar and the input must be of the form "YYYY-MM-DD".
    • Operator choices will be: "==", "!=", "<", "<=", ">", ">=".
operatorArray, functionrequired, if isAllowOperator prop is set to trueIf this attribute is added then it would ignore the type check as described in type parameter and it would accept what you have passed
optionsArray, function, Promiserequired, if type="textoptions"Get the value according to selected category
isAllowCustomValueBooleanfalse
When this parameter is set to true, it allows you to send multiple custom values for type=textoptions
isAllowDuplicateCategoriesBooleantrueSwitch between unique/duplicate categories (key)
isAllowDuplicateOptionsBooleanfalseSwitch between unique/duplicate values
fuzzySearchKeyAttributeStringnameIf Category (options)values are Array<Object> then By default fuzzy search look for name attribute inside options(values) but you can change that attribut lookup key using fuzzySearchKeyAttribute

For more details: react-typeahead

Tokenizer (props)

ParameterTypeDefaultDescription
optionsArray[]An array supplied to the filter function.
maxVisibleNumberLimit the number of options rendered in the results list.
resultsTruncatedMessageStringIf maxVisible is set, display this custom message at the bottom of the list of results when the result are truncated.
nameStringThe name for HTML forms to be used for submitting the tokens' values array.
customClassesObjectAllowed Keys:
  • input
  • results
  • listItem
  • listAnchor
  • hover
  • typeahead
  • resultsTruncated
  • token
An object containing custom class names for child elements. Useful for integrating with 3rd party UI kits.
placeholderStringPlaceholder text for the typeahead input.
disabledBooleanSet to true to add disable attribute in the <input> or <textarea> element.
inputPropsObjectProps to pass directly to the <input> element.
onKeyDownFunctionEvent handler for the keyDown event on the typeahead input.
onKeyPressFunctionEvent handler for the keyPress event on the typeahead input.
onKeyUpFunctionEvent handler for the keyUp event on the typeahead input.
onBlurFunctionEvent handler for the blur event on the typeahead input.
onFocusFunctionEvent handler for the focus event on the typeahead input.
defaultSelectedArrayA set of values of tokens to be loaded on first render.
onTokenRemoveFunction`Event handler triggered whenever a token is removed.
onTokenAddFunctionEvent handler triggered whenever a token is added.
Params: (addedToken)
displayOptionString, Function
  • A function to map an option onto a string for display in the list. Receives (option, index) where index is relative to the results list, not all the options. Can either return a string or a React component.
  • If provided as a string, it will interpret it as a field name and use that field from each option object.
filterOptionString, Function
  • A function to filter the provided options based on the current input value. For each option, receives (inputValue, option). If not supplied, defaults to fuzzy string matching.
  • If provided as a string, it will interpret it as a field name and use that field from each option object.
searchOptionsFunctionA function to filter, map, and/or sort the provided options based on the current input value.
Receives (inputValue, options).
If not supplied, defaults to fuzzy string matching.
Note: the function can be used to store other information besides the string in the internal state of the component.
Make sure to use the displayOption, inputDisplayOption, and formInputOption props to extract/generate the correct format of data that each expects if you do this.
inputDisplayOptionString, FunctionA function that maps the internal state of the visible options into the value stored in the text value field of the visible input when an option is selected.
Receives (option).
If provided as a string, it will interpret it as a field name and use that field from each option object.
If no value is set, the input will be set using displayOption when an option is selected.
formInputOptionString or FunctionA function to map an option onto a string to include in HTML forms as a hidden field (see props.name). Receives (option) as arguments. Must return a string.
If specified as a string, it will interpret it as a field name and use that field from each option object.
If not specified, it will fall back onto the semantics described in props.displayOption.
defaultClassNamesbooleantrueIf false, the default classNames are removed from the tokenizer and the typeahead.
showOptionsWhenEmptybooleanfalseIf true, options will still be rendered when there is no value.

Typeahead (props)

ParameterTypeDefaultDescription
optionsArray[]An array supplied to the filtering function. Can be a list of strings or a list of arbitrary objects. In the latter case, filterOption and displayOption should be provided.
defaultValueStringA default value used when the component has no value. If it matches any options a option list will show.
props.valueStringSpecify a value for the text input.
maxVisibleNumber
resultsTruncatedMessageString
customClassesObject
placeholderStringPlaceholder text for the typeahead input.
disabledBooleanSet to true to add disable attribute in the <input> or <textarea> element
textareaBooleanSet to true to use a <textarea> element rather than an <input> element
inputPropsObject
onKeyDownFunctionEvent handler for the keyDown event on the typeahead input.
onKeyPressFunctionEvent handler for the keyPress event on the typeahead input.
onKeyUpFunctionEvent handler for the keyUp event on the typeahead input.
onBlurFunctionEvent handler for the blur event on the typeahead input.
onFocusFunctionEvent handler for the focus event on the typeahead input.
onOptionSelectedFunctionEvent handler triggered whenever a user picks an option.
filterOptionString, FunctionA function to filter the provided options based on the current input value. For each option, receives (inputValue, option). If not supplied, defaults to fuzzy string matching. If provided as a string, it will interpret it as a field name and fuzzy filter on that field of each option object.
displayOptionString, Function
  • A function to map an option onto a string for display in the list. Receives (option, index) where index is relative to the results list, not all the options. Must return a string.
  • If provided as a string, it will interpret it as a field name and use that field from each option object.
formInputOptionString, FunctionA function to map an option onto a string to include in HTML forms (see props.name). Receives (option) as arguments. Must return a string.
  • If specified as a string, it will interpret it as a field name and use that field from each option object.
  • If not specified, it will fall back onto the semantics described in props.displayOption.
This option is ignored if you don't specify the name prop. It is required if you both specify the name prop and are using non-string options. It is optional otherwise.
defaultClassNamesbooleantrueIf false, the default classNames are removed from the typeahead.
customListComponentReact ComponentA React Component that renders the list of typeahead results. This replaces the default list of results.
This component receives the following props :

Passed through

  • props.displayOptions
  • props.customClasses
  • props.onOptionSelected

Created or modified

  • props.options- This is the Typeahead's props.options filtered and limited to Typeahead.props.maxVisible.
  • props.selectionIndex- The index of the highlighted option for rendering
showOptionsWhenEmptybooleanfalseIf true, options will still be rendered when there is no value.
allowCustomValuesbooleanIf true, custom tags can be added without a matching typeahead selection

How to Contribute

Setting Up

Please run npm install in the root and example folders. then do the following:

  • Go to root folder and run npm start after this
  • Go to example folder and run npm run link (only for first time)
  • Go to example folder and run npm start it would run the plugin from link which we have created.

Now, anytime you make a change to your library in src/ or to the example app's example/src create-react-app will live-reload your local dev server so you can iterate on your component in real-time.

License

MIT © kevalbhatt

FAQs

Package last updated on 15 May 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc