Merge branch 'unstable' into feat/ses-50/onboarding
commit
208d9cc0eb
@ -0,0 +1,21 @@
|
||||
import FocusTrap from 'focus-trap-react';
|
||||
import { ReactNode, useState } from 'react';
|
||||
import { useMount } from 'react-use';
|
||||
|
||||
/**
|
||||
* Focus trap which activates on mount.
|
||||
*/
|
||||
export function SessionFocusTrap(props: { children: ReactNode }) {
|
||||
const [active, setActive] = useState(false);
|
||||
|
||||
// Activate the trap on mount so we **should** have a button to tab through. focus-trap-react will throw if we don't have a button when the trap becomes active.
|
||||
// We might still have an issue for dialogs which have buttons added with a useEffect, or asynchronously but have no buttons on mount.
|
||||
// If that happens we will need to force those dialogs to have at least one button so focus-trap-react does not throw.
|
||||
useMount(() => setActive(true));
|
||||
|
||||
return (
|
||||
<FocusTrap active={active} focusTrapOptions={{ initialFocus: false, allowOutsideClick: true }}>
|
||||
{props.children}
|
||||
</FocusTrap>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue