Skip to main content
Version: 3.xx.xxSwizzle Ready

Tag

http://localhost:3000
Live previews only work with the latest documentation.
const { default: routerProvider } = RefineReactRouterV6
const { default: simpleRest } = RefineSimpleRest
setRefineProps({
routerProvider,
dataProvider: simpleRest('https://api.fake-rest.refine.dev'),
Layout: RefineChakra.Layout,
Sider: () => null,
})

const Wrapper = ({ children }) => {
return (
<RefineChakra.ChakraProvider theme={RefineChakra.refineTheme}>
{children}
</RefineChakra.ChakraProvider>
)
}

This field lets you display a value in a tag. It uses Chakra UI <Tag> component.

Swizzle

You can swizzle this component to customize it with the refine CLI

Usage

Let's see how we can use it in a basic list page:

http://localhost:3000
Live previews only work with the latest documentation.
import {
List,
TableContainer,
Table,
Thead,
Tr,
Th,
Tbody,
Td,
TagField,
} from '@pankod/refine-chakra-ui'
import { useTable, ColumnDef, flexRender } from '@pankod/refine-react-table'

const PostList: React.FC = () => {
const columns = React.useMemo<ColumnDef<IPost>[]>(
() => [
{
id: 'id',
header: 'ID',
accessorKey: 'id',
},
{
id: 'title',
header: 'Title',
accessorKey: 'title',
},
{
id: 'status',
header: 'Status',
accessorKey: 'status',
cell: function render({ getValue }) {
return (
<TagField value={getValue()} />
)
},
},
],
[],
)

const { getHeaderGroups, getRowModel } = useTable({
columns,
})

return (
<List>
<TableContainer>
<Table variant="simple" whiteSpace="pre-line">
<Thead>
{getHeaderGroups().map((headerGroup) => (
<Tr key={headerGroup.id}>
{headerGroup.headers.map((header) => {
return (
<Th key={header.id}>
{!header.isPlaceholder &&
flexRender(
header.column.columnDef.header,
header.getContext(),
)}
</Th>
)
})}
</Tr>
))}
</Thead>
<Tbody>
{getRowModel().rows.map((row) => {
return (
<Tr key={row.id}>
{row.getVisibleCells().map((cell) => {
return (
<Td key={cell.id}>
{flexRender(
cell.column.columnDef.cell,
cell.getContext(),
)}
</Td>
)
})}
</Tr>
)
})}
</Tbody>
</Table>
</TableContainer>
</List>
)
}

interface IPost {
id: number
title: string
status: 'published' | 'draft' | 'rejected'
}

API Reference

Properties

External Props

It also accepts all props of Mantine Tag.