![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@bsara/react-filter
Advanced tools
A simple React component used for array filtering.
A simple React component used for array filtering.
NOTE: This component uses a for-loop for filtering rather than the native
Array
'sfilter
function. This means that filtering will be more performant (see jsperf test for details).
$ npm i --save @bsara/react-filter
import React from 'react';
import Filter from '@bsara/react-filter';
export default function MyComponent(props) {
return (
{/* ... */}
<Filter
items={props.items}
predicate={_predicate}
predicateArg={props.predicateArg}
render={(filteredItems) => (
// Render filtered items...
)} />
{/* ...or... */}
<Filter items={props.items}
predicate={_predicate}
predicateArg={props.predicateArg}>
{(filteredItems) => (
// Render filtered items...
)}
</Filter>
{/* ... */}
);
}
function _predicate(item, index, predicateArg) {
// Determine if item should be included in filtered list...
}
items ?Array
Array of items to be filtered and passed to render
prop.
render(filteredItems) or children(filteredItems) !Function
- REQUIRED
Render function (or function as child) called after items
filtering is complete.
predicate(item, itemIndex[, predicateArg]) !Function
- REQUIRED
Function to be called for each item in items
. Return true
to include item
in the
resulting filtered items list. Return false
to exclude item
from the resulting
filtered items list.
predicateArg ?*
Parameter to be passed as an extra argument in predicate
function. This prop is not
required and is provided solely for convenience.
skip ?Boolean
When true
, skips filtering and the value of items
prop will be passed to render
,
unsorted. This is useful in the case where sorting may only be conditionally needed.
ISC License (ISC)
Copyright (c) 2019, Brandon D. Sara (https://bsara.dev/)
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
FAQs
A simple React component used for array filtering.
The npm package @bsara/react-filter receives a total of 0 weekly downloads. As such, @bsara/react-filter popularity was classified as not popular.
We found that @bsara/react-filter 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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.