Url
This field lets you embed a link. It uses Ant Design's <Typography.Link> component. You can pass a URL in its value
prop and you can show a text in its place by passing any children
.
Usage
Let's see how we can use <UrlField>
with an example:
pages/posts/list.tsx
import {
List,
Table,
useTable,
UrlField
} from "@pankod/refine";
export const PostList: React.FC = () => {
const { tableProps } = useTable<IPost>();
return (
<List>
<Table {...tableProps} rowKey="id">
<Table.Column
dataIndex="title"
title="Title"
key="title"
/>
<Table.Column
dataIndex={["image", "0", "url"]}
title={"Image"}
key="image"
render={(value: string) => <UrlField value={value} />}
/>
</Table>
</List>
);
};
interface IPost {
title: string;
image: IImage[];
}
interface IImage {
url: string;
}
API Reference
Properties
Property | Description | Type |
---|---|---|
value | URL for link to reference to | string |
children | What to show instead of URL | ReactNode |