Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chakra v2 fixes #153

Merged
merged 2 commits into from
Jul 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# chakra-react-select v3

> This version of `chakra-react-select` is for compatibility with React v17 and Chakra UI v1. It will be maintained until the majority of users have migrated to the newest version of Chakra. If you're using [Chakra UI v2](https://chakra-ui.com/guides/migration) check [the docs for chakra-react-select v4 here](https://github.com/csandman/chakra-react-select).
> This version of `chakra-react-select` is for compatibility with React v17 and Chakra UI v1. It will be maintained until the majority of users have migrated to the newest version of Chakra. If you're using [Chakra UI v2](https://chakra-ui.com/getting-started/migration) check [the docs for chakra-react-select v4 here](https://github.com/csandman/chakra-react-select).

[![Build Status](https://github.com/csandman/chakra-react-select/actions/workflows/build.yml/badge.svg?branch=main "Build Status")](https://github.com/csandman/chakra-react-select/actions/workflows/build.yml?query=branch%3Amain)
[![Lint Status](https://github.com/csandman/chakra-react-select/actions/workflows/lint.yml/badge.svg?branch=main "Lint Status")](https://github.com/csandman/chakra-react-select/actions/workflows/lint.yml?query=branch%3Amain)
Expand All @@ -12,7 +12,7 @@
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-c596c7.svg "Code Style: Prettier")](https://github.com/prettier/prettier)
[![MIT License](https://badgen.net/github/license/csandman/chakra-react-select "MIT License")](LICENSE.md)

This component is a wrapper for the popular react component [react-select](https://react-select.com/home) made using the UI library [Chakra UI](https://chakra-ui.com/).
This component is a wrapper for the popular react component [react-select](https://react-select.com/home) made using the UI library [Chakra UI](https://v1.chakra-ui.com/).

![Chakra React Select Banner](./github/chakra-react-select.png)

Expand Down Expand Up @@ -97,7 +97,7 @@ In order to use this component, you can implement it and use it like you would n

#### `size` — Options: `sm`, `md`, `lg` — Default: `md`

You can pass the `size` prop with either `sm`, `md`, or `lg` (default is `md`). These will reflect the sizes available on the [Chakra `<Input />` component](https://chakra-ui.com/docs/form/input#changing-the-size-of-the-input) (with the exception of `xs` because it's too small to work).
You can pass the `size` prop with either `sm`, `md`, or `lg` (default is `md`). These will reflect the sizes available on the [Chakra `<Input />` component](https://v1.chakra-ui.com/docs/form/input#changing-the-size-of-the-input) (with the exception of `xs` because it's too small to work).

```js
return (
Expand All @@ -111,7 +111,7 @@ return (

#### `colorScheme`

You can pass the `colorScheme` prop to the select component to change all of the selected options tags' colors. You can view the whole list of available color schemes in [the Chakra docs](https://chakra-ui.com/docs/data-display/tag#props), or if you have a custom color palette, any of the custom color names in that will be available instead.
You can pass the `colorScheme` prop to the select component to change all of the selected options tags' colors. You can view the whole list of available color schemes in [the Chakra docs](https://v1.chakra-ui.com/docs/data-display/tag#props), or if you have a custom color palette, any of the custom color names in that will be available instead.

Alternatively you can add the `colorScheme` key to any of your options objects and it will only style that option when selected.

Expand All @@ -137,7 +137,7 @@ return (

#### `tagVariant` — Options: `subtle`, `solid`, `outline` — Default: `subtle`

You can pass the `tagVariant` prop with either `subtle`, `solid`, or `outline` (default is `subtle`). These will reflect the `variant` prop available on the [Chakra `<Tag />` component](https://chakra-ui.com/docs/data-display/tag#props).
You can pass the `tagVariant` prop with either `subtle`, `solid`, or `outline` (default is `subtle`). These will reflect the `variant` prop available on the [Chakra `<Tag />` component](https://v1.chakra-ui.com/docs/data-display/tag#props).

Alternatively you can add the `variant` key to any of your options objects and it will only style that option when selected. This will override the `tagVariant` prop on the select if both are set

Expand Down Expand Up @@ -187,7 +187,7 @@ return (

#### `focusBorderColor` — Default: `blue.500` | `errorBorderColor` — Default: `red.500`

The props `focusBorderColor` and `errorBorderColor` can be passed with Chakra color strings which will emulate the respective props being passed to [Chakra's `<Input />` component](https://chakra-ui.com/docs/form/input#changing-the-focus-and-error-border-colors).
The props `focusBorderColor` and `errorBorderColor` can be passed with Chakra color strings which will emulate the respective props being passed to [Chakra's `<Input />` component](https://v1.chakra-ui.com/docs/form/input#changing-the-focus-and-error-border-colors).

```js
return (
Expand Down Expand Up @@ -216,7 +216,7 @@ return <Select hasStickyGroupHeaders />;

#### `selectedOptionStyle` — Options: `color`, `check` — Default: `color`

In `v1.3.0` you can now pass the prop `selectedOptionStyle` with either `"color"` or `"check"` (defaults to `"color"`). The default option `"color"` will style a selected option similar to how react-select does it, by highlighting the selected option in the color blue. Alternatively if you pass `"check"` for the value, the selected option will be styled like the [Chakra UI Menu component](https://chakra-ui.com/docs/overlay/menu#menu-option-groups) and include a check icon next to the selected option(s). If `isMulti` and `selectedOptionStyle="check"` are passed, space will only be added for the check marks if `hideSelectedOptions={false}` is also passed.
In `v1.3.0` you can now pass the prop `selectedOptionStyle` with either `"color"` or `"check"` (defaults to `"color"`). The default option `"color"` will style a selected option similar to how react-select does it, by highlighting the selected option in the color blue. Alternatively if you pass `"check"` for the value, the selected option will be styled like the [Chakra UI Menu component](https://v1.chakra-ui.com/docs/overlay/menu#menu-option-groups) and include a check icon next to the selected option(s). If `isMulti` and `selectedOptionStyle="check"` are passed, space will only be added for the check marks if `hideSelectedOptions={false}` is also passed.

```js
return (
Expand Down Expand Up @@ -281,7 +281,7 @@ This package does however offer an alternative to the `styles` prop, `chakraStyl

### `chakraStyles`

In order to use the `chakraStyles` prop, first check the documentation for [the original `styles` prop from the react-select docs](https://react-select.com/styles#style-object). This package offers an identical API for the `chakraStyles` prop, however the `provided` and output style objects use [Chakra's `sx` prop](https://chakra-ui.com/docs/features/the-sx-prop) instead of the default emotion styles the original package offers. This allows you to both use the shorthand styling props you'd normally use to style Chakra components, as well as tokens from your theme such as named colors.
In order to use the `chakraStyles` prop, first check the documentation for [the original `styles` prop from the react-select docs](https://react-select.com/styles#style-object). This package offers an identical API for the `chakraStyles` prop, however the `provided` and output style objects use [Chakra's `sx` prop](https://v1.chakra-ui.com/docs/features/the-sx-prop) instead of the default emotion styles the original package offers. This allows you to both use the shorthand styling props you'd normally use to style Chakra components, as well as tokens from your theme such as named colors.

The API for an individual style function looks like this:

Expand All @@ -301,7 +301,7 @@ function option(provided, state) {

All of the style keys offered in the original package can be used here, except for `input` as that does not allow me to use the `chakraStyles` from the select props. The `input` styles are also much more dynamic and should be left alone for the most part.

Most of the components rendered by this package use the basic [Chakra `<Box />` component](https://chakra-ui.com/docs/layout/box) with a few exceptions. Here are the style keys offered and the corresponding Chakra component that is rendered:
Most of the components rendered by this package use the basic [Chakra `<Box />` component](https://v1.chakra-ui.com/docs/layout/box) with a few exceptions. Here are the style keys offered and the corresponding Chakra component that is rendered:

- `clearIndicator` - `Box` (uses theme styles for Chakra's `CloseButton`)
- `container` - `Box`
Expand Down Expand Up @@ -413,13 +413,13 @@ If anyone has any suggestions for how to fully replace the `MenuPortal` componen
- Dropdown menu attached to control example:
- TypeScript: https://codesandbox.io/s/chakra-react-select-chakrastyles-v3-3wus8g?file=/app.tsx
- Vanilla JS: https://codesandbox.io/s/chakra-react-select-chakrastyles-vanilla-v3-tewves?file=/example.js
- Default [Chakra `<Select />`](https://chakra-ui.com/docs/form/select) styles example:
- Default [Chakra `<Select />`](https://v1.chakra-ui.com/docs/form/select) styles example:
- TypeScript: https://codesandbox.io/s/chakra-react-select-styled-like-a-default-chakra-select-v3-7273qk?file=/app.tsx
- Vanilla JS: https://codesandbox.io/s/chakra-react-select-styled-like-a-default-chakra-select-vanilla-v3-edv95f?file=/example.js

### Theme Styles

As mentioned above, a few of the custom components this package implements either use styles from the global [Chakra component theme](https://chakra-ui.com/docs/theming/customize-theme#customizing-component-styles) or are themselves those components. As this package pulls directly from your Chakra theme, any changes you make to those components' themes will propagate to the components in this package. Here is a list of all components that will be affected by changes to your global styles:
As mentioned above, a few of the custom components this package implements either use styles from the global [Chakra component theme](https://v1.chakra-ui.com/docs/theming/customize-theme#customizing-component-styles) or are themselves those components. As this package pulls directly from your Chakra theme, any changes you make to those components' themes will propagate to the components in this package. Here is a list of all components that will be affected by changes to your global styles:

| `react-select` component | `chakra-ui` component styles |
| ------------------------ | --------------------------------------------------------------------------------------------------------------- |
Expand Down Expand Up @@ -616,7 +616,7 @@ CodeSandbox Examples:

### Custom `LoadingIndicator` (Chakra `Spinner`)

For most sub components, the styling can be easily accomplished using the [`chakraStyles`](#chakrastyles) prop. However, in the case of the `LoadingIndicator` there are a few props which do not directly correlate very well with styling props. To solve that problem, the `chakraComponents.LoadingIndicator` component can be passed a few extra props which are normally available on the Chakra UI [`Spinner`](https://chakra-ui.com/docs/components/feedback/spinner). Here is an example demonstrating which extra props are offered:
For most sub components, the styling can be easily accomplished using the [`chakraStyles`](#chakrastyles) prop. However, in the case of the `LoadingIndicator` there are a few props which do not directly correlate very well with styling props. To solve that problem, the `chakraComponents.LoadingIndicator` component can be passed a few extra props which are normally available on the Chakra UI [`Spinner`](https://v1.chakra-ui.com/docs/components/feedback/spinner). Here is an example demonstrating which extra props are offered:

```jsx
import { AsyncSelect, chakraComponents } from "chakra-react-select";
Expand Down
4 changes: 3 additions & 1 deletion src/chakra-components/containers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export const SelectContainer = <

return (
<Box
{...innerProps}
className={cx(
{
"--is-disabled": isDisabled,
Expand All @@ -52,7 +53,6 @@ export const SelectContainer = <
className
)}
sx={sx}
{...innerProps}
>
{children}
</Box>
Expand All @@ -72,6 +72,7 @@ export const ValueContainer = <
cx,
isMulti,
hasValue,
innerProps,
selectProps: { size, chakraStyles },
} = props;

Expand All @@ -98,6 +99,7 @@ export const ValueContainer = <

return (
<Box
{...innerProps}
className={cx(
{
"value-container": true,
Expand Down
3 changes: 2 additions & 1 deletion src/chakra-components/group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const Group = <
headingProps,
label,
selectProps,
innerProps,
} = props;

const { chakraStyles } = selectProps;
Expand All @@ -32,7 +33,7 @@ const Group = <
: {};

return (
<Box className={cx({ group: true }, className)} sx={sx}>
<Box {...innerProps} className={cx({ group: true }, className)} sx={sx}>
<Heading
{...headingProps}
selectProps={selectProps}
Expand Down
4 changes: 2 additions & 2 deletions src/chakra-components/indicators.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ export const ClearIndicator = <

return (
<Box
{...innerProps}
role="button"
className={cx(
{
Expand All @@ -189,7 +190,6 @@ export const ClearIndicator = <
sx={sx}
data-focused={isFocused ? true : undefined}
aria-label="Clear selected options"
{...innerProps}
>
{children || <CrossIcon sx={iconSx} />}
</Box>
Expand Down Expand Up @@ -231,6 +231,7 @@ export const LoadingIndicator = <

return (
<Spinner
{...innerProps}
className={cx(
{
indicator: true,
Expand All @@ -239,7 +240,6 @@ export const LoadingIndicator = <
className
)}
sx={sx}
{...innerProps}
size={propsSpinnerSize || spinnerSize}
color={color}
emptyColor={emptyColor}
Expand Down
8 changes: 5 additions & 3 deletions src/chakra-components/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ const Menu = <Option, IsMulti extends boolean, Group extends GroupBase<Option>>(

return (
<Box
{...innerProps}
ref={innerRef}
className={cx({ menu: true }, className)}
sx={sx}
{...innerProps}
>
<StylesProvider value={menuStyles}>{children}</StylesProvider>
</Box>
Expand All @@ -71,6 +71,7 @@ const MenuList = <
children,
maxHeight,
isMulti,
innerProps,
selectProps: { size, chakraStyles },
} = props;

Expand All @@ -91,6 +92,7 @@ const MenuList = <

return (
<Box
{...innerProps}
className={cx(
{
"menu-list": true,
Expand Down Expand Up @@ -146,6 +148,7 @@ const LoadingMessage = <

return (
<Box
{...innerProps}
className={cx(
{
"menu-notice": true,
Expand All @@ -154,7 +157,6 @@ const LoadingMessage = <
className
)}
sx={sx}
{...innerProps}
>
{children}
</Box>
Expand Down Expand Up @@ -201,6 +203,7 @@ const NoOptionsMessage = <

return (
<Box
{...innerProps}
className={cx(
{
"menu-notice": true,
Expand All @@ -209,7 +212,6 @@ const NoOptionsMessage = <
className
)}
sx={sx}
{...innerProps}
>
{children}
</Box>
Expand Down
2 changes: 1 addition & 1 deletion src/chakra-components/option.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ const Option = <

return (
<Box
{...innerProps}
role="button"
className={cx(
{
Expand All @@ -111,7 +112,6 @@ const Option = <
)}
sx={sx}
ref={innerRef}
{...innerProps}
data-disabled={isDisabled ? true : undefined}
aria-disabled={isDisabled ? true : undefined}
>
Expand Down
2 changes: 1 addition & 1 deletion src/chakra-components/placeholder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ const Placeholder = <

return (
<Box
{...innerProps}
className={cx(
{
placeholder: true,
},
className
)}
sx={sx}
{...innerProps}
>
{children}
</Box>
Expand Down
Loading