Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-structured-query-search
Advanced tools
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.
Array<String>
or Array<Object>
npm install --save react-structured-query-search
If you want to use Tokenizer
then you either import as follows:
import ReactStructuredQuerySearch from "react-structured-query-search";
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";
Parameter | Type | Default | Description |
---|---|---|---|
categoryHeader | String, Component | "Category" | Allows user the change the header title of Category |
operatorHeader | String, Component | "Operator" | Allows user the change the header title of Operator |
valueHeader | String, Component | "Value" | Allows user the change the header title of Value |
isAllowSearchDropDownHeader | Boolean | "true" | Allows user to enable/disable search drop-down header |
isAllowOperator | Boolean | false | Allows user to enable/disable operators in search |
loadingRender | function, Component | "Loading...." | Show custom loader when values are retrieved using Ajax |
fuzzySearchEmptyMessage | String | "No result found" | This message is shown when dropdown doesn't have search value |
updateOptions | function | Allows user to update the Options(props) at runtime, this function is called before onTokenRemove and onTokenAdd | |
defaultSelected | function, Array | [] | Allows user to initialize the search with selected values |
renderTokens | function | Allows user to render custome Token Component | |
renderTokenItem | function | Allows user to render custome Token Item | |
renderSearchItem | function | Allows user to render custome value |
Parameter | Type | Default | Required | Description |
---|---|---|---|---|
category | String | required | Name of the first thing the user types. | |
type | String | text | This can be one of the following:
| |
operator | Array, function | required, if isAllowOperator prop is set to true | If this attribute is added then it would ignore the type check as described in type parameter and it would accept what you have passed | |
options | Array, function, Promise | required, if type="textoptions" | Get the value according to selected category | |
isAllowCustomValue | Boolean | false | When this parameter is set to true , it allows you to send multiple custom values for type=textoptions | |
isAllowDuplicateCategories | Boolean | true | Switch between unique/duplicate categories (key) | |
isAllowDuplicateOptions | Boolean | false | Switch between unique/duplicate values | |
fuzzySearchKeyAttribute | String | name | If 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
Parameter | Type | Default | Description |
---|---|---|---|
options | Array | [] | An array supplied to the filter function. |
maxVisible | Number | Limit the number of options rendered in the results list. | |
resultsTruncatedMessage | String | If maxVisible is set, display this custom message at the bottom of the list of results when the result are truncated. | |
name | String | The name for HTML forms to be used for submitting the tokens' values array. | |
customClasses | Object | Allowed Keys:
An object containing custom class names for child elements. Useful for integrating with 3rd party UI kits. | |
placeholder | String | Placeholder text for the typeahead input. | |
disabled | Boolean | Set to true to add disable attribute in the <input> or <textarea> element. | |
inputProps | Object | Props to pass directly to the <input> element. | |
onKeyDown | Function | Event handler for the keyDown event on the typeahead input. | |
onKeyPress | Function | Event handler for the keyPress event on the typeahead input. | |
onKeyUp | Function | Event handler for the keyUp event on the typeahead input. | |
onBlur | Function | Event handler for the blur event on the typeahead input. | |
onFocus | Function | Event handler for the focus event on the typeahead input. | |
defaultSelected | Array | A set of values of tokens to be loaded on first render. | |
onTokenRemove | Function | `Event handler triggered whenever a token is removed. | |
onTokenAdd | Function | Event handler triggered whenever a token is added. Params: (addedToken) | |
displayOption | String , Function |
| |
filterOption | String , Function |
| |
searchOptions | Function | A function to filter, map, and/or sort the provided options based on the current input value. Receives If not supplied, defaults to fuzzy string matching. (inputValue, options) .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. | |
inputDisplayOption | String , Function | A 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. | |
formInputOption | String or Function | A 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 . | |
defaultClassNames | boolean | true | If false, the default classNames are removed from the tokenizer and the typeahead. |
showOptionsWhenEmpty | boolean | false | If true, options will still be rendered when there is no value. |
Parameter | Type | Default | Description |
---|---|---|---|
options | Array | [] | 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. |
defaultValue | String | A default value used when the component has no value. If it matches any options a option list will show. | |
props.value | String | Specify a value for the text input. | |
maxVisible | Number | ||
resultsTruncatedMessage | String | ||
customClasses | Object | ||
placeholder | String | Placeholder text for the typeahead input. | |
disabled | Boolean | Set to true to add disable attribute in the <input> or <textarea> element | |
textarea | Boolean | Set to true to use a <textarea> element rather than an <input> element | |
inputProps | Object | ||
onKeyDown | Function | Event handler for the keyDown event on the typeahead input. | |
onKeyPress | Function | Event handler for the keyPress event on the typeahead input. | |
onKeyUp | Function | Event handler for the keyUp event on the typeahead input. | |
onBlur | Function | Event handler for the blur event on the typeahead input. | |
onFocus | Function | Event handler for the focus event on the typeahead input. | |
onOptionSelected | Function | Event handler triggered whenever a user picks an option. | |
filterOption | String , 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 fuzzy filter on that field of each option object. | |
displayOption | String , Function |
| |
formInputOption | String , Function | A function to map an option onto a string to include in HTML forms (see props.name ). Receives (option) as arguments. Must return a string.
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. | |
defaultClassNames | boolean | true | If false, the default classNames are removed from the typeahead. |
customListComponent | React Component | A React Component that renders the list of typeahead results. This replaces the default list of results. This component receives the following props : Passed through
Created or modified
| |
showOptionsWhenEmpty | boolean | false | If true, options will still be rendered when there is no value. |
allowCustomValues | boolean | If true, custom tags can be added without a matching typeahead selection |
Please run npm install
in the root and example folders. then do the following:
npm start
after thisnpm run link
(only for first time)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.
MIT © kevalbhatt
FAQs
react-structured-query-search
The npm package react-structured-query-search receives a total of 6 weekly downloads. As such, react-structured-query-search popularity was classified as not popular.
We found that react-structured-query-search demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.