最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Ant Design - filter a column by all its existed data - Stack Overflow

programmeradmin1浏览0评论

In Ant Design Table how could I filter a column by all its existed data ?

For example - in this table - there are 3 different names, and you can filter by two of them because they defined them in the filters propriety. I want to have the ability to filter by all the 3 names (or more) automatically, it's mean - without specify them.

How could I achieve that ?

In Ant Design Table how could I filter a column by all its existed data ?

For example - in this table - https://codesandbox.io/s/ww1lpn4k4l there are 3 different names, and you can filter by two of them because they defined them in the filters propriety. I want to have the ability to filter by all the 3 names (or more) automatically, it's mean - without specify them.

How could I achieve that ?

Share Improve this question edited Dec 21, 2018 at 13:16 URL87 asked Dec 21, 2018 at 13:09 URL87URL87 11k36 gold badges111 silver badges177 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

You can define helper function which closure data, and return formatted value:

const filterData = data => formatter => data.map( item => ({
      text: formatter(item),
      value: formatter(item)
  });

And next, in your columns definition:

const columns = [{
  title: 'Name',
  dataIndex: 'name',
  filters: filterData(data)(i => i.name),
  // ...

Submenu logic is a bit more plex, however you could do something like:

const splitName = index => dataItem => dataItem.name.split(" ")[index];

const columns = [{
  title: 'Name',
  dataIndex: 'name',
  filters: [
    ...filterData(data)(splitName(0)),
    {
      text: 'Submenu',
      value: 'Submenu',
      children: filterData(data)(splitName(1))
    }
  ],

Hope it helps.

Complementing Alex's answer to avoid duplicate text and values ​​using lodash

Import lodash

import _ from "lodash";

Helper function

const filterData = data => formatter => data.map( item => ({
    text: formatter(item),
    value: formatter(item)
}));

columns definition with lodash solution

const columns = [{
  title: 'Name',
  dataIndex: 'name',
  filters: _.uniqWith(filterData(data)(i => i.name),, _.isEqual),
  // ...
发布评论

评论列表(0)

  1. 暂无评论