
Security News
minimatch Patches 3 High-Severity ReDoS Vulnerabilities
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.
@paprika/filter
Advanced tools
Filter
yarn add @paprika/filter
or with npm:
npm install @paprika/filter
| Prop | Type | required | default | Description |
|---|---|---|---|---|
| numberApplied | number | false | 0 | |
| children | node | false | null | |
| columns | arrayOf | true | - | |
| data | arrayOf | false | null | |
| maxFiltersAllowed | number | false | 9999 | |
| onAddFilter | func | true | - | |
| onApply | func | true | - | |
| onCancel | func | false | () => {} | |
| onChangeOperator | func | false | null | |
| onClear | func | false | () => {} | |
| operator | [ Filter.operator.AND, Filter.operator.OR] | false | Filter.operator.AND | |
| rulesByType | objectOf | false | Filter.defaultRulesByType | |
| zIndex | number | false | undefined |
| Prop | Type | required | default | Description |
|---|---|---|---|---|
| columnId | string | true | - | |
| id | [string,number] | false | null | |
| index | number | true | - | |
| onChangeFilter | func | true | - | |
| onDeleteFilter | func | true | - | |
| renderValueField | func | false | null | |
| rule | string | true | - | |
| value | [string,bool,array,number] | true | - |
import Filter from "@paprika/filter";
<Filter
columns={columnsSettings}
data={data}
numberApplied={1}
onAddFilter={() => {}}
onApply={() => {}}
onCancel={() => {}}
onChangeOperator={() => {}}
onClear={() => {}}
>
<Filter.Item
columnId="name"
id={1234}
index={0}
type="TEXT"
rule="CONTAINS"
value="abc"
onChangeFilter={() => {}}
onRemoveFilter={() => {}}
/>
</Filter>;
Please note that the built-in filter functions only work with flat data arrary. Please pass in a flattened array if you want to use the built-in feature. If you want to use your own filter algorithm you can still use the hook, just do not pass in the data property and ignore the filteredData in the returned value.
const { filteredData, filters, getFilterProps, getFilterItemProps } = useFilter({ columns, rulesByType, data });
const handleDeleteFilter = filterId => () => {
onDeleteFilter(filterId);
};
const handleChangeFilter = filterId => params => {
onChangeFilter({ ...params, id: filterId });
};
return (
<Filter {...getFilterProps()} columns={columnsSettings} data={data}>
{filters.map((filter, index) => (
<Filter.Item
{...getFilterItemProps()}
columnId={filter.columnId}
id={filter.id}
index={index}
key={filter.id}
type={filter.type}
rule={filter.rule}
value={filter.value}
/>
))}
</Filter>
// display filteredData
);
AND and OR by setting the onChangeOperator prop to null and including the operator to use.FAQs
Filter
The npm package @paprika/filter receives a total of 732 weekly downloads. As such, @paprika/filter popularity was classified as not popular.
We found that @paprika/filter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.

Research
/Security News
Socket uncovered 26 malicious npm packages tied to North Korea's Contagious Interview campaign, retrieving a live 9-module infostealer and RAT from the adversary's C2.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.