Skip to main content
Version: 3.xx.xx

filtering-live-preview

localhost:3000/products
Live previews only work with the latest documentation.
import { useState } from "react";
import { useList, HttpError } from "@pankod/refine-core";

interface IProduct {
id: number;
name: string;
material: string;
}

const ProductList: React.FC = () => {
const [value, setValue] = useState("Cotton");

const { data, isLoading, isError } = useList<IProduct, HttpError>({
resource: "products",
config: {
filters: [
{
field: "material",
operator: "eq",
value,
},
],
},
});

const products = data?.data ?? [];

if (isLoading) {
return <div>Loading...</div>;
}

if (isError) {
return <div>Something went wrong!</div>;
}

return (
<div>
<span> material: </span>
<select value={value} onChange={(e) => setValue(e.target.value)}>
{["Cotton", "Bronze", "Plastic"].map((material) => (
<option key={material} value={material}>
{material}
</option>
))}
</select>

<ul>
{products.map((product) => (
<li key={product.id}>
<h4>
{product.name} - ({product.material})
</h4>
</li>
))}
</ul>
</div>
);
};