Skip to main content
Version: 3.xx.xx
Source Code

useSelect

useSelect hook allows you to manage Ant Design <Select> component when records in a resource needs to be used as select options.

This hook uses the useList hook for fetching data. Refer to useList hook for details. →

DERIVATIVES

If you're looking for a complete select library, refine has out-of-the-box support for the libraries below:

Basic Usage

Here is a basic example of how to use useSelect hook.

localhost:3000
Live previews only work with the latest documentation.
import { useSelect, Select } from "@pankod/refine-antd";

interface ICategory {
id: number;
title: string;
}

const PostCreate: React.FC = () => {
const { selectProps } = useSelect<ICategory>({
resource: "categories",
});

return (
<Select
placeholder="Select a category" style={{ width: 300 }}
{...selectProps}
/>
);
};

Realtime Updates

This feature is only available if you use a Live Provider

When useSelect hook is mounted, it passes some parameters (channel, resource etc.) to the subscribe method from the liveProvider. It is useful when you want to subscribe to the live updates.

Refer to the liveProvider documentation for more information

Properties

resource
required

It will be passed to the getList method from the dataProvider as parameter via the useList hook. The parameter is usually used as an API endpoint path. It all depends on how to handle the resource in the getList method. See the creating a data provider section for an example of how resource are handled.

useSelect({
resource: "categories",
});

optionLabel and optionValue

Allows you to change the value and label of your options. Default values are optionLabel = "title" and optionValue = "id"

useSelect<ICategory>({
resource: "products",
optionLabel: "name"
optionValue: "productId"
});
TIP

Supports nested properties with option Object path syntax.

const { options } = useSelect({
resource: "categories",
optionLabel: "nested.title",
optionValue: "nested.id",
});

sort

It allows to show the options in the desired order. sort will be passed to the getList method from the dataProvider as parameter via the useList hook. It is used to send sort query parameters to the API.

Refer to the CrudSorting interface for more information

useSelect({
sort: [
{
field: "title",
order: "asc",
},
],
});
localhost:3000
Live previews only work with the latest documentation.
import { useSelect, Select, Button } from "@pankod/refine-antd";

interface ICategory {
id: number;
title: string;
}

const PostCreate: React.FC = () => {
const [order, setOrder] = React.useState<"asc" | "desc">("asc");

const { selectProps } = useSelect<ICategory>({
resource: "categories",
sort: [
{
field: "title",
order,
}
]
});

return (
<>
<Select
placeholder={`Ordered Categories: ${order}`} style={{ width: 300 }}
{...selectProps}
/>
<Button onClick={() => setOrder(order === "asc" ? "desc" : "asc")}>Toggle Order</Button>
</>
);
};

filters

It is used to show options by filtering them. filters will be passed to the getList method from the dataProvider as parameter via the useList hook. It is used to send filter query parameters to the API.

Refer to the CrudFilters interface for more information

useSelect({
filter: [
{
field: "isActive",
operator: "eq",
value: true,
},
],
});

defaultValue

Allows to make options selected by default. Adds extra options to <select> component. In some cases like there are many entries for the <select> and pagination is required, defaultValue may not be present in the current visible options and this can break the <select> component. To avoid such cases, A seperate useMany query is sent to the backend with the defaultValue and appended to the options of <select>, ensuring the default values exist in the current options array. Since it uses useMany to query the necessary data, the defaultValue can be a single value or an array of values like the following:

useSelect({
defaultValue: 1, // or [1, 2]
});

Refer to the useMany documentation for detailed usage.

debounce

It allows us to debounce the onSearch function.

useSelect({
resource: "categories",
debounce: 500,
});

queryOptions

queryOptions is used to pass additional options to the useQuery hook. It is useful when you want to pass additional options to the useQuery hook.

Refer to the useQuery documentation for more information

useSelect({
queryOptions: {
retry: 3,
},
});

pagination

pagination will be passed to the getList method from the dataProvider as parameter. It is used to send pagination query parameters to the API.

current

You can pass the current page number to the pagination property.

useSelect({
pagination: {
current: 2,
},
});

pageSize

You can pass the pageSize to the pagination property.

useSelect({
pagination: {
pageSize: 20,
},
});

hasPagination

hasPagination will be passed to the getList method from the dataProvider as parameter via the useList hook. It is used to determine whether to use server-side pagination or not.

useSelect({
hasPagination: false,
});

defaultValueQueryOptions

When the defaultValue property is given, the useMany data hook is called for the selected records. With this property, you can change the options of this query. If not given, the values given in queryOptions will be used.

const { options } = useSelect({
resource: "categories",
defaultValueQueryOptions: {
onSuccess: (data) => {
console.log("triggers when on query return on success");
},
},
});

onSearch

It allows us to AutoComplete the options.

Refer to the CrudFilters interface for more information

localhost:3000
Live previews only work with the latest documentation.
import { useSelect, Select } from "@pankod/refine-antd";

interface ICategory {
id: number;
title: string;
}

const PostCreate: React.FC = () => {
const { selectProps } = useSelect<ICategory>({
resource: "categories",
onSearch: (value) => [
{
field: "title",
operator: "contains",
value,
}
]
});

return (
<Select
placeholder="Select a category" style={{ width: 300 }}
{...selectProps}
/>
);
};
INFORMATION

If onSearch is used, it will override the existing filters.

Client-side filtering

Sometimes, you may want to filter the options on the client-side. You can do this by passing onSearch function as undefined and setting filterOption to true. You can also set optionFilterProp to label or value to filter the options by label or value respectively.

const { selectProps } = useSelect({
resource: "categories",
});

<Select
{...selectProps}
onSearch={undefined}
filterOption={true}
optionFilterProp="label" // or "value"
/>;

metaData

metaData is used following two purposes:

  • To pass additional information to data provider methods.
  • Generate GraphQL queries using plain JavaScript Objects (JSON). Please refer GraphQL for more information.

In the following example, we pass the headers property in the metaData object to the create method. With similar logic, you can pass any properties to specifically handle the data provider methods.

useSelect({
metaData: {
headers: { "x-meta-data": "true" },
},
});

const myDataProvider = {
//...
getList: async ({
resource,
pagination,
hasPagination,
sort,
filters,
metaData,
}) => {
const headers = metaData?.headers ?? {};
const url = `${apiUrl}/${resource}`;
//...
//...
const { data, headers } = await httpClient.get(`${url}`, { headers });
return {
data,
};
},
//...
};

dataProviderName

If there is more than one dataProvider, you can specify which one to use by passing the dataProviderName prop. It is useful when you have a different data provider for different resources.

useSelect({
dataProviderName: "second-data-provider",
});

successNotification

NotificationProvider is required for this prop to work.

After data is fetched successfully, useSelect can call open function from NotificationProvider to show a success notification. With this prop, you can customize the success notification.

useSelect({
successNotification: (data, values, resource) => {
return {
message: `${data.title} Successfully fetched.`,
description: "Success with no errors",
type: "success",
};
},
});

errorNotification

NotificationProvider is required for this prop to work.

After data fetching is failed, useSelect will call open function from NotificationProvider to show a error notification. With this prop, you can customize the error notification.

useSelect({
errorNotification: (data, values, resource) => {
return {
message: `Something went wrong when getting ${data.id}`,
description: "Error",
type: "error",
};
},
});

liveMode

LiveProvider is required for this prop to work.

Determines whether to update data automatically ("auto") or not ("manual") if a related live event is received. It can be used to update and show data in Realtime throughout your app. For more information about live mode, please check Live / Realtime page.

useSelect({
liveMode: "auto",
});

onLiveEvent

LiveProvider is required for this prop to work.

The callback function that is executed when new events from a subscription are arrived.

useSelect({
onLiveEvent: (event) => {
console.log(event);
},
});

liveParams

LiveProvider is required for this prop to work.

Params to pass to liveProvider's subscribe method.

FAQ

How to add search to options (Autocomplete)?

onSearch is a function that is used to set the search value. It is useful when you want to search for a specific value. A simple example of this is shown below.

localhost:3000
Live previews only work with the latest documentation.
import { useSelect, Select } from "@pankod/refine-antd";

interface ICategory {
id: number;
title: string;
}

const PostCreate: React.FC = () => {
const { selectProps } = useSelect<ICategory>({
resource: "categories",
onSearch: (value) => [
{
field: "title",
operator: "contains",
value,
}
]
});

return (
<Select
placeholder="Select a category" style={{ width: 300 }}
{...selectProps}
/>
);
};

How to ensure defaultValue is included in the options?

In some cases we only have id, it may be necessary to show it selected in the selection box. This hook sends the request via useMany, gets the data and mark as seleted.

localhost:3000
Live previews only work with the latest documentation.
import { useSelect, Select } from "@pankod/refine-antd";

interface ICategory {
id: number;
title: string;
}

const PostCreate: React.FC = () => {
const { selectProps } = useSelect<ICategory>({
resource: "categories",
defaultValue: 11,
});

return (
<Select
placeholder="Select a category" style={{ width: 300 }}
{...selectProps}
/>
);
};

How to change the label and value properties in options?

optionLabel and optionValue are used to change the value of your options. The default values are optionsLabel="title" and optionsValue="id".

To change to name and categoryId;

useSelect({
optionLabel: "name",
optionValue: "categoryId",
});

Can I create the options manually?

Sometimes it may not be enough to create optionLabel and optionValue options. In this case we create options with queryResult.

const { queryResult } = useSelect();

const options = queryResult.data?.data.map((item) => ({
label: item.title,
value: item.id,
}));

return <Select options={options} />;

How do I use it with CRUD components and useForm?

localhost:3000
Live previews only work with the latest documentation.
import { Create, Form, Select, useSelect, useForm } from "@pankod/refine-antd";

interface ICategory {
id: number;
title: string;
}

const PostCreate: React.FC = () => {
const { formProps, saveButtonProps } = useForm<ICategory>();

const { selectProps } = useSelect<ICategory>({
resource: "categories",
});

return (
<Create saveButtonProps={saveButtonProps}>
<Form {...formProps} layout="vertical">
<Form.Item
label="Category"
placeholder="Select a category"
name={["category", "id"]}
rules={[
{
required: true,
},
]}
>
<Select {...selectProps} />
</Form.Item>
</Form>
</Create>
);
};

API Reference

Properties

Return values

PropertyDescriptionType
selectPropsAnt design Select propsSelect
queryResultResult of the query of a recordQueryObserverResult<{ data: TData }>
defaultValueQueryResultResult of the query of a defaultValue recordQueryObserverResult<{ data: TData }>
defaultValueQueryOnSuccessDefault value onSuccess method() => void

Example

Run on your local
npm create refine-app@latest -- --example field-antd-use-select-basic

Infinite Loading Example

Run on your local
npm create refine-app@latest -- --example field-antd-use-select-infinite