useRadioGroup
useRadioGroup
hook allows you to manage an Ant Design Radio.Group component when records in a resource needs to be used as radio options.
Usage
We will demonstrate how to get data at /languages
endpoint from the https://api.fake-rest.refine.dev
REST API.
{
[
{
id: 1,
title: "Turkish",
},
{
id: 2,
title: "English",
},
{
id: 3,
title: "German",
},
];
}
import { Form, Radio, useRadioGroup } from "@pankod/refine";
export const PostCreate = () => {
const { radioGroupProps } = useRadioGroup<ILanguage>({
resource: "languages",
});
return (
<Form>
<Form.Item label="Languages" name="languages">
<Radio.Group {...radioGroupProps} />
</Form.Item>
</Form>
);
};
interface ILanguage {
id: string;
title: string;
}
All we have to do is pass the radioGroupProps
it returns to the <Radio.Group>
component.
useRadioGroup
uses the useList
hook for fetching data. Refer to Ant Design useList
hook for details. →
Options
resource
const { radioGroupProps } = useRadioGroup({
resource: "languages",
});
resource
property determines API resource endpoint to fetch records from dataProvider
. It returns properly configured options
values for radio buttons.
Refer to the Ant Design's Radio.Group
component documentation for detailed info on options
. →
optionLabel
and optionValue
const { radioGroupProps } = useRadioGroup({
resource: "languages",
optionLabel: "title",
optionValue: "id",
});
optionLabel
and optionValue
allows you to change the values and appearances of your options. Default values are optionLabel = "title"
and optionValue = "id"
.
filters
const { radioGroupProps } = useRadioGroup({
resource: "languages",
filters: [
{
field: "title",
operator: "eq",
value: "German",
},
],
});
filters
allows us to add filters while fetching the data. For example, if you want to list only the titles
that are equal to "German"
records.
sort
const { radioGroupProps } = useRadioGroup({
resource: "languages",
sort: [
{
field: "title",
order: "asc",
},
],
});
sort
allows us to sort the options
. For example, if you want to sort your list according to title
by ascending.
queryOptions
const { radioGroupProps } = useRadioGroup({
resource: "languages",
queryOptions: {
onError: () => {
console.log("triggers when on query return Error");
},
},
});
useQuery options can be set by passing queryOptions
property.
API Reference
Properties
Property | Description | Type | Default |
---|---|---|---|
resource Required | Resource name for API data interactions | string | |
optionValue | Sets the option's value | string | "id" |
optionLabel | Sets the option's label value | string | "title" |
filters | Adds filters while fetching the data | CrudFilters | |
sort | Allows us to sort the options | CrudSorting | |
queryOptions | react-query useQuery options | UseQueryOptions<GetListResponse<TData>, TError> | |
metaData | Metadata query for dataProvider | MetaDataQuery | {} |
liveMode | Whether to update data automatically ("auto" ) or not ("manual" ) if a related live event is received. The "off" value is used to avoid creating a subscription. | "auto" | "manual" | "off" | "off" |
liveParams | Params to pass to liveProvider 's subscribe method if liveMode is enabled. | { ids?: string[]; [key: string]: any; } | undefined |
onLiveEvent | Callback to handle all related live events of this hook. | (event: LiveEvent) => void | undefined |
Return values
Property | Description | Type |
---|---|---|
radioGroupProps | Ant design radio group props | Radio Group |
queryResult | Results of the query of a record | QueryObserverResult<{ data: TData }> |