2020-01-15 05:44:22 +03:00
|
|
|
/*
|
2020-01-16 04:25:44 +03:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2020-01-15 05:44:22 +03:00
|
|
|
|
|
|
|
import React, {
|
|
|
|
createContext,
|
|
|
|
useCallback,
|
|
|
|
useContext,
|
|
|
|
useLayoutEffect,
|
|
|
|
useMemo,
|
|
|
|
useRef,
|
|
|
|
useReducer,
|
|
|
|
} from "react";
|
|
|
|
import {Key} from "../Keyboard";
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
/**
|
|
|
|
* Module to simplify implementing the Roving TabIndex accessibility technique
|
|
|
|
*
|
|
|
|
* Wrap the Widget in an RovingTabIndexContextProvider
|
|
|
|
* and then for all buttons make use of useRovingTabIndex or RovingTabIndexWrapper.
|
|
|
|
* The code will keep track of which tabIndex was most recently focused and expose that information as `isActive` which
|
|
|
|
* can then be used to only set the tabIndex to 0 as expected by the roving tabindex technique.
|
|
|
|
* When the active button gets unmounted the closest button will be chosen as expected.
|
|
|
|
* Initially the first button to mount will be given active state.
|
|
|
|
*
|
|
|
|
* https://developer.mozilla.org/en-US/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets#Technique_1_Roving_tabindex
|
|
|
|
*/
|
|
|
|
|
2020-01-15 05:44:22 +03:00
|
|
|
const DOCUMENT_POSITION_PRECEDING = 2;
|
|
|
|
|
|
|
|
const RovingTabIndexContext = createContext({
|
|
|
|
state: {
|
|
|
|
activeRef: null,
|
2020-01-16 04:25:44 +03:00
|
|
|
refs: [], // list of refs in DOM order
|
2020-01-15 05:44:22 +03:00
|
|
|
},
|
|
|
|
dispatch: () => {},
|
|
|
|
});
|
|
|
|
RovingTabIndexContext.displayName = "RovingTabIndexContext";
|
|
|
|
|
|
|
|
// TODO use a TypeScript type here
|
|
|
|
const types = {
|
|
|
|
REGISTER: "REGISTER",
|
|
|
|
UNREGISTER: "UNREGISTER",
|
|
|
|
SET_FOCUS: "SET_FOCUS",
|
|
|
|
};
|
|
|
|
|
|
|
|
const reducer = (state, action) => {
|
|
|
|
switch (action.type) {
|
|
|
|
case types.REGISTER: {
|
|
|
|
if (state.refs.length === 0) {
|
2020-01-16 04:25:44 +03:00
|
|
|
// Our list of refs was empty, set activeRef to this first item
|
2020-01-15 05:44:22 +03:00
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
activeRef: action.payload.ref,
|
|
|
|
refs: [action.payload.ref],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state.refs.includes(action.payload.ref)) {
|
|
|
|
return state; // already in refs, this should not happen
|
|
|
|
}
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
// find the index of the first ref which is not preceding this one in DOM order
|
2020-01-15 05:44:22 +03:00
|
|
|
let newIndex = state.refs.findIndex(ref => {
|
|
|
|
return ref.current.compareDocumentPosition(action.payload.ref.current) & DOCUMENT_POSITION_PRECEDING;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (newIndex < 0) {
|
|
|
|
newIndex = state.refs.length; // append to the end
|
|
|
|
}
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
// update the refs list
|
2020-01-15 05:44:22 +03:00
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
refs: [
|
|
|
|
...state.refs.slice(0, newIndex),
|
|
|
|
action.payload.ref,
|
|
|
|
...state.refs.slice(newIndex),
|
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
case types.UNREGISTER: {
|
2020-01-16 04:25:44 +03:00
|
|
|
// filter out the ref which we are removing
|
|
|
|
const refs = state.refs.filter(r => r !== action.payload.ref);
|
2020-01-15 05:44:22 +03:00
|
|
|
|
|
|
|
if (refs.length === state.refs.length) {
|
|
|
|
return state; // already removed, this should not happen
|
|
|
|
}
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
if (state.activeRef === action.payload.ref) {
|
|
|
|
// we just removed the active ref, need to replace it
|
|
|
|
// pick the ref which is now in the index the old ref was in
|
2020-01-15 05:44:22 +03:00
|
|
|
const oldIndex = state.refs.findIndex(r => r === action.payload.ref);
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
activeRef: oldIndex >= refs.length ? refs[refs.length - 1] : refs[oldIndex],
|
|
|
|
refs,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
// update the refs list
|
2020-01-15 05:44:22 +03:00
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
refs,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
case types.SET_FOCUS: {
|
2020-01-16 04:25:44 +03:00
|
|
|
// update active ref
|
2020-01-15 05:44:22 +03:00
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
activeRef: action.payload.ref,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-16 03:40:08 +03:00
|
|
|
export const RovingTabIndexContextProvider = ({children}) => {
|
2020-01-15 05:44:22 +03:00
|
|
|
const [state, dispatch] = useReducer(reducer, {
|
|
|
|
activeRef: null,
|
|
|
|
refs: [],
|
|
|
|
});
|
|
|
|
|
2020-01-15 14:37:14 +03:00
|
|
|
const onKeyDown = useCallback((ev) => {
|
2020-01-16 04:25:44 +03:00
|
|
|
// check if we actually have any items
|
2020-01-15 14:37:14 +03:00
|
|
|
if (state.refs.length <= 0) return;
|
|
|
|
|
|
|
|
let handled = true;
|
|
|
|
switch (ev.key) {
|
|
|
|
case Key.HOME:
|
2020-01-16 04:25:44 +03:00
|
|
|
// move focus to first item
|
2020-01-15 14:37:14 +03:00
|
|
|
setImmediate(() => state.refs[0].current.focus());
|
|
|
|
break;
|
|
|
|
case Key.END:
|
2020-01-16 04:25:44 +03:00
|
|
|
// move focus to last item
|
2020-01-15 14:37:14 +03:00
|
|
|
state.refs[state.refs.length - 1].current.focus();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
handled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handled) {
|
|
|
|
ev.preventDefault();
|
|
|
|
ev.stopPropagation();
|
|
|
|
}
|
|
|
|
}, [state]);
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
const context = useMemo(() => ({state, dispatch}), [state]);
|
|
|
|
|
|
|
|
// wrap in a div with key-down handling for HOME/END keys
|
2020-01-15 14:37:14 +03:00
|
|
|
return <div onKeyDown={onKeyDown}>
|
|
|
|
<RovingTabIndexContext.Provider value={context}>
|
|
|
|
{children}
|
|
|
|
</RovingTabIndexContext.Provider>
|
|
|
|
</div>;
|
2020-01-15 05:44:22 +03:00
|
|
|
};
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
// Hook to register a roving tab index
|
|
|
|
// inputRef parameter specifies the ref to use
|
|
|
|
// onFocus should be called when the index gained focus in any manner
|
|
|
|
// isActive should be used to set tabIndex in a manner such as `tabIndex={isActive ? 0 : -1}`
|
|
|
|
// ref should be passed to a DOM node which will be used for DOM compareDocumentPosition
|
2020-01-15 14:37:14 +03:00
|
|
|
export const useRovingTabIndex = (inputRef) => {
|
2020-01-15 05:44:22 +03:00
|
|
|
const context = useContext(RovingTabIndexContext);
|
2020-01-16 04:25:44 +03:00
|
|
|
let ref = useRef(null);
|
2020-01-15 05:44:22 +03:00
|
|
|
|
2020-01-15 14:37:14 +03:00
|
|
|
if (inputRef) {
|
2020-01-16 04:25:44 +03:00
|
|
|
// if we are given a ref, use it instead of ours
|
2020-01-15 14:37:14 +03:00
|
|
|
ref = inputRef;
|
|
|
|
}
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
// setup (after refs)
|
2020-01-15 05:44:22 +03:00
|
|
|
useLayoutEffect(() => {
|
|
|
|
context.dispatch({
|
|
|
|
type: types.REGISTER,
|
|
|
|
payload: {ref},
|
|
|
|
});
|
2020-01-16 04:25:44 +03:00
|
|
|
// teardown
|
2020-01-15 05:44:22 +03:00
|
|
|
return () => {
|
|
|
|
context.dispatch({
|
|
|
|
type: types.UNREGISTER,
|
|
|
|
payload: {ref},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}, []); // eslint-disable-line react-hooks/exhaustive-deps
|
|
|
|
|
|
|
|
const onFocus = useCallback(() => {
|
|
|
|
context.dispatch({
|
|
|
|
type: types.SET_FOCUS,
|
|
|
|
payload: {ref},
|
|
|
|
});
|
|
|
|
}, [ref, context]);
|
|
|
|
|
2020-01-15 14:37:14 +03:00
|
|
|
const isActive = context.state.activeRef === ref;
|
|
|
|
return [onFocus, isActive, ref];
|
2020-01-15 05:44:22 +03:00
|
|
|
};
|
|
|
|
|
2020-01-16 04:25:44 +03:00
|
|
|
// Wrapper to allow use of useRovingTabIndex outside of React Functional Components.
|
2020-01-15 14:37:14 +03:00
|
|
|
export const RovingTabIndexWrapper = ({children, inputRef}) => {
|
|
|
|
const [onFocus, isActive, ref] = useRovingTabIndex(inputRef);
|
|
|
|
return children({onFocus, isActive, ref});
|
2020-01-15 05:44:22 +03:00
|
|
|
};
|
|
|
|
|