Gathering detailed insights and metrics for react-select-async-paginate-sf2
Gathering detailed insights and metrics for react-select-async-paginate-sf2
Gathering detailed insights and metrics for react-select-async-paginate-sf2
Gathering detailed insights and metrics for react-select-async-paginate-sf2
Wrapper above react-select that supports pagination on menu scroll
npm install react-select-async-paginate-sf2
Typescript
Module System
Node Version
NPM Version
57.6
Supply Chain
87.8
Quality
73.9
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
4,455
Last Day
1
Last Week
5
Last Month
37
Last Year
722
MIT License
135 Commits
2 Branches
1 Contributors
Updated on Aug 19, 2019
Minified
Minified + Gzipped
Latest Version
0.4.1
Package Id
react-select-async-paginate-sf2@0.4.1
Unpacked Size
64.76 kB
Size
9.81 kB
File Count
17
NPM Version
6.5.0
Node Version
11.9.0
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-76.2%
5
Compared to previous week
Last Month
-51.3%
37
Compared to previous month
Last Year
27.6%
722
Compared to previous year
2
3
2
Wrapper above react-select
that supports pagination on menu scroll.
react-select | react-select-async-paginate |
---|---|
3.x | ^0.3.2 |
2.x | 0.3.x, 0.2.x |
1.x | 0.1.x |
npm install react-select react-select-async-paginate
or
yarn add react-select react-select-async-paginate
AsyncPaginate
is an alternative of Async
but supports loading page by page. It is wrapper above default react-select
thus it accepts all props of default Select
except isLoading
. And there are some new props:
Required. Async function that take next arguments:
additional
from props, for next is additional
from previous response for current search. null
by default.It should return next object:
{
options: Array,
hasMore: boolean,
additional?: any,
}
It similar to loadOptions
from Select.Async
but there is some differences:
hasMore
for detect end of options list for current search.Not required. Number. Debounce timeout for loadOptions
calls. 0
by default.
Not required. Default additional
for first request for every search.
Not required. Function. By default new options will load only after scroll menu to bottom. Arguments:
Should return boolean.
Not required. Function. By default new loaded options are concat with previous. Arguments:
Should return new options.
Not required. Can take any value. When this prop changed, AsyncPaginate
cleans all cached options.
Ref for take react-select
instance.
Not required. React component that will be used instead of SelectBase
from react-select
.
import AsyncPaginate from 'react-select-async-paginate';
...
/*
* assuming the API returns something like this:
* const json = {
* results: [
* {
* value: 1,
* label: 'Audi',
* },
* {
* value: 2,
* label: 'Mercedes',
* },
* {
* value: 3,
* label: 'BMW',
* },
* ],
* has_more: true,
* };
*/
async function loadOptions(search, loadedOptions) {
const response = await fetch(`/awesome-api-url/?search=${search}&offset=${loadedOptions.length}`);
const responseJSON = await response.json();
return {
options: responseJSON.results,
hasMore: responseJSON.has_more,
};
}
<AsyncPaginate
value={value}
loadOptions={loadOptions}
onChange={setValue}
/>
import AsyncPaginate from 'react-select-async-paginate';
...
async function loadOptions(search, loadedOptions, { page }) {
const response = await fetch(`/awesome-api-url/?search=${search}&page=${page}`);
const responseJSON = await response.json();
return {
options: responseJSON.results,
hasMore: responseJSON.has_more,
additional: {
page: page + 1,
},
};
}
<AsyncPaginate
value={value}
loadOptions={loadOptions}
onChange={setValue}
additional={{
page: 1,
}}
/>
You can use reduceGroupedOptions
util to group options by label
key.
import AsyncPaginate, { reduceGroupedOptions } from 'react-select-async-paginate';
/*
* assuming the API returns something like this:
* const json = {
* options: [
* label: 'Cars',
* options: [
* {
* value: 1,
* label: 'Audi',
* },
* {
* value: 2,
* label: 'Mercedes',
* },
* {
* value: 3,
* label: 'BMW',
* },
* ]
* ],
* hasMore: true,
* };
*/
...
<AsyncPaginate
{...otherProps}
reduceOptions={reduceGroupedOptions}
/>
You can use AsyncPaginateBase
component.
import React, { useState } from 'react';
import { AsyncPaginateBase } from 'react-select-async-paginate';
...
async function loadOptions(search, loadedOptions) {
const response = await fetch(`/awesome-api-url/?search=${search}&offset=${loadedOptions.length}`);
const responseJSON = await response.json();
return {
options: responseJSON.results,
hasMore: responseJSON.has_more,
};
}
const MyWrapper = ({
value,
onChange,
}) => {
const [inputValue, onInputChange] = useState('');
const [menuIsOpen, setMenuIsOpen] = useState(false);
const onMenuOpen = () => {
setMenuIsOpen(true);
};
const onMenuClose = () => {
setMenuIsOpen(false);
};
return (
<AsyncPaginate
value={value}
loadOptions={loadOptions}
onChange={onChange}
inputValue={inputValue}
onInputChange={onInputChange}
menuIsOpen={menuIsOpen}
onMenuOpen={onMenuOpen}
onMenuClose={onMenuClose}
/>
);
};
Usage of replacing components is similar with react-select
, but there is one difference. If you redefine MenuList
you should wrap it with wrapMenuList
for workaround of some internal bugs of react-select
.
import AsyncPaginate, { wrapMenuList } from 'react-select-async-paginate';
...
const MenuList = wrapMenuList(CustomMenuList);
<AsyncPaginate
{...otherProps}
components={{
...otherComponents,
MenuList,
}}
/>
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
115 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-23
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More