documentation/docs/ui-integrations/mantine/components/buttons/create-button/index.md
const CreatePage = () => {
const { list } = RefineCore.useNavigation();
const params = RefineCore.useParsed();
return (
<div>
<MantineCore.Text italic color="dimmed" size="sm">
URL Parameters:
</MantineCore.Text>
<MantineCore.Code>{JSON.stringify(params, null, 2)}</MantineCore.Code>
<MantineCore.Space h="md" />
<MantineCore.Button
size="xs"
variant="outline"
onClick={() => list("posts")}
>
Go back
</MantineCore.Button>
</div>
);
};
<CreateButton> uses Mantine's <Button> component. It uses the create method from useNavigation under the hood. It can be useful to redirect the app to the create page route of resource.
:::simple Good to know
You can swizzle this component with the Refine CLI to customize it.
:::
setInitialRoutes(["/posts"]);
import { Refine } from "@refinedev/core";
// visible-block-start
import { List, CreateButton } from "@refinedev/mantine";
import { Table, Pagination } from "@mantine/core";
import { useTable } from "@refinedev/react-table";
import { ColumnDef, flexRender } from "@tanstack/react-table";
const PostList: React.FC = () => {
const columns = React.useMemo<ColumnDef<IPost>[]>(
() => [
{
id: "id",
header: "ID",
accessorKey: "id",
},
{
id: "title",
header: "Title",
accessorKey: "title",
},
],
[],
);
const {
reactTable: { getHeaderGroups, getRowModel },
refineCore: { setCurrentPage, pageCount, currentPage },
} = useTable({
columns,
});
return (
// highlight-next-line
<List headerButtons={<CreateButton />}>
<Table>
<thead>
{getHeaderGroups().map((headerGroup) => (
<tr key={headerGroup.id}>
{headerGroup.headers.map((header) => (
<th key={header.id}>
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext(),
)}
</th>
))}
</tr>
))}
</thead>
<tbody>
{getRowModel().rows.map((row) => (
<tr key={row.id}>
{row.getVisibleCells().map((cell) => (
<td key={cell.id}>
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</td>
))}
</tr>
))}
</tbody>
</Table>
<Pagination
position="right"
total={pageCount}
page={currentPage}
onChange={setCurrentPage}
/>
</List>
);
};
interface IPost {
id: number;
title: string;
}
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineMantineDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<PostList />} />
<ReactRouter.Route path="create" element={<CreatePage />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineMantineDemo>
</ReactRouter.BrowserRouter>,
);
It is used to redirect the app to the create action path of the given resource name. By default, the app redirects to the inferred resource's create action path.
setInitialRoutes(["/posts"]);
// visible-block-start
import { CreateButton } from "@refinedev/mantine";
const MyCreateComponent = () => {
return <CreateButton resource="categories" />;
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineMantineDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
{
name: "categories",
list: "/categories",
create: "/categories/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<MyCreateComponent />} />
</ReactRouter.Route>
<ReactRouter.Route
path="/categories/create"
element={
<div style={{ padding: 16 }}>
<CreatePage />
</div>
}
/>
</ReactRouter.Routes>
</RefineMantineDemo>
</ReactRouter.BrowserRouter>,
);
Clicking the button will trigger the create method of useNavigation and then redirect the app to the create action path of the resource, filling the necessary parameters in the route.
If you have multiple resources with the same name, you can pass the identifier instead of the name of the resource. It will only be used as the main matching key for the resource, data provider methods will still work with the name of the resource defined in the <Refine/> component.
For more information, refer to the
identifiersection of the<Refine/>component documentation →
It is used to pass additional parameters to the create method of useNavigation. By default, existing parameters in the route are used by the create method. You can pass additional parameters or override the existing ones using the meta prop.
If the create action route is defined by the pattern: /posts/:authorId/create, the meta prop can be used as follows:
const MyComponent = () => {
return <CreateButton meta={{ authorId: "10" }} />;
};
It is used to show and not show the text of the button. When true, only the button icon is visible.
setInitialRoutes(["/posts"]);
// visible-block-start
import { CreateButton } from "@refinedev/mantine";
const MyCreateComponent = () => {
return <CreateButton hideText />;
};
// visible-block-end
render(
<ReactRouter.BrowserRouter>
<RefineMantineDemo
resources={[
{
name: "posts",
list: "/posts",
create: "/posts/create",
},
]}
>
<ReactRouter.Routes>
<ReactRouter.Route
path="/posts"
element={
<div style={{ padding: 16 }}>
<ReactRouter.Outlet />
</div>
}
>
<ReactRouter.Route index element={<MyCreateComponent />} />
<ReactRouter.Route path="create" element={<CreatePage />} />
</ReactRouter.Route>
</ReactRouter.Routes>
</RefineMantineDemo>
</ReactRouter.BrowserRouter>,
);
This prop can be used to skip access control check with its enabled property or to hide the button when the user does not have the permission to access the resource with hideIfUnauthorized property. This is relevant only when an accessControlProvider is provided to <Refine/>
import { CreateButton } from "@refinedev/mantine";
export const MyListComponent = () => {
return (
<CreateButton accessControl={{ enabled: true, hideIfUnauthorized: true }} />
);
};