Griddle icon indicating copy to clipboard operation
Griddle copied to clipboard

How to set the filter text externally

Open Debananda opened this issue 6 years ago • 1 comments

I have to preserve the filter during page navigation. I was going through https://github.com/GriddleGriddle/Griddle/blob/master/src/components/Filter.js, but did not found any way to set the filter text externally. Below snippet filter the data properly but doesn't set the filter text. Need some indicators to proceed

store.dispatch({ type: 'GRIDDLE_SET_FILTER', filter: this.props.filterText });

Debananda avatar Jul 30 '19 09:07 Debananda

<Griddle filter={...} /> works for setting the initial filter state; however, the default Filter component does not receive its initial value from state. I can't think of a reason we wouldn't want to fix that, if anyone's up for a PR. (Yes, I'm planning to start reviewing PRs again!)

In the meantime, you can replace the Filter component with one that does default to the initial filter: https://codesandbox.io/s/griddle-issue-861-zh7gp.

dahlbyk avatar Jul 31 '19 19:07 dahlbyk