Inferencer
You can automatically generate views for your resources using @refinedev/inferencer
. Inferencer exports AntdListInferencer
, AntdShowInferencer
, AntdEditInferencer
, AntdCreateInferencer
and AntdInferencer
(which combines all in one place) components.
Usageβ
Inferencer components can be imported from @refinedev/inferencer/antd
. You can directly use the components in your routes without passing any props. If you use a routerProvider
, it will infer the resource
, action
and id
from the current route.
- In
resources
prop - In Custom Components
import routerProvider from "@refinedev/react-router-v6";
import { BrowserRouter } from "react-router-dom";
import { AntdInferencer } from "@refinedev/inferencer/antd";
const App = () => {
return (
<BrowserRouter>
<Refine
routerProvider={routerProvider}
resources={[
{
name: "samples",
list: "/samples",
},
]}
>
<Routes>
<Route path="/samples" element={<AntdInferencer />} />
</Routes>
</Refine>
</BrowserRouter>
);
};
import { AntdInferencer } from "@refinedev/inferencer/antd";
const SampleList = () => {
return (
<AntdInferencer resource="samples" action="list" />
);
};
const SampleShow = () => {
return (
<AntdInferencer resource="samples" action="show" id="1" />
);
};
const SampleCreate = () => {
return (
<AntdInferencer resource="samples" action="create" />
);
};
const SampleEdit = () => {
return (
<AntdInferencer resource="samples" action="edit" id="1" />
);
};
To learn more about @refinedev/inferencer
package, please check out Docs
Viewsβ
List
β
Generates a sample list view for your resources according to the API response. It uses List
and Table
components with useTable
hook from @refinedev/antd
.
Show
β
Generates a sample show view for your resources according to the API response. It uses Show
and field components from @refinedev/antd
with useShow
hook from @refinedev/core
.
Create
β
Generates a sample create view for your resources according to the first record in list API response. It uses Create
component and useForm
hook from @refinedev/antd
.
Edit
β
Generates a sample edit view for your resources according to the API response. It uses Edit
component and useForm
hook from @refinedev/antd
.
Exampleβ
Below you'll find a Live CodeSandbox Example displaying a fully setup Refine
app with @refinedev/inferencer/antd
components.
npm create refine-app@latest -- --example inferencer-antd