Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@paprika/filter

Package Overview
Dependencies
Maintainers
3
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paprika/filter

Filter

latest
Source
npmnpm
Version
5.0.4
Version published
Maintainers
3
Created
Source

@paprika/filter

Description

Filter

Installation

yarn add @paprika/filter

or with npm:

npm install @paprika/filter

Props

Filter

PropTyperequireddefaultDescription
numberAppliednumberfalse0
childrennodefalsenull
columnsarrayOftrue-
dataarrayOffalsenull
maxFiltersAllowednumberfalse9999
onAddFilterfunctrue-
onApplyfunctrue-
onCancelfuncfalse() => {}
onChangeOperatorfuncfalsenull
onClearfuncfalse() => {}
operator[ Filter.operator.AND, Filter.operator.OR]falseFilter.operator.AND
rulesByTypeobjectOffalseFilter.defaultRulesByType
zIndexnumberfalseundefined

Item

PropTyperequireddefaultDescription
columnIdstringtrue-
id[string,number]falsenull
indexnumbertrue-
onChangeFilterfunctrue-
onDeleteFilterfunctrue-
renderValueFieldfuncfalsenull
rulestringtrue-
value[string,bool,array,number]true-

Filter

Usage (no hooks)

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>;

More detail about props

Usage (with hooks)

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
);

Variations

  • You can prevent the user from having to choose between AND and OR by setting the onChangeOperator prop to null and including the operator to use.

FAQs

Package last updated on 09 Jan 2026

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