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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ComboBox] Use isomorphic layout effect #4018

Merged
merged 1 commit into from Feb 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/components/Autocomplete/components/ComboBox/ComboBox.tsx
Expand Up @@ -8,6 +8,7 @@ import {Popover, PopoverProps} from '../../../Popover';
import {ActionListItemDescriptor, Key} from '../../../../types';
import {KeypressListener} from '../../../KeypressListener';
import {EventListener} from '../../../EventListener';
import {isServer} from '../../../../utilities/target';

import {ComboBoxContext} from './context';
import styles from './ComboBox.scss';
Expand Down Expand Up @@ -70,6 +71,8 @@ export function ComboBox({
setFalse: forcePopoverActiveFalse,
} = useToggle(false);

const useIsomorphicLayoutEffect = isServer ? useEffect : useLayoutEffect;

const id = useUniqueId('ComboBox', idProp);

const getActionsWithIds = useCallback(
Expand Down Expand Up @@ -240,7 +243,7 @@ export function ComboBox({
}
}, [selected, selectedOptions]);

useLayoutEffect(() => {
useIsomorphicLayoutEffect(() => {
let newNavigableOptions: (
| OptionDescriptor
| ActionListItemDescriptor
Expand Down