navigateRegions 是一个 React 高阶组件,用于为标记为“区域”(role="region")的 DOM 元素添加键盘导航功能,允许用户在不同区域间切换。这些区域需可聚焦(例如通过添加 tabIndex 属性),并应正确标注以描述内容目的,以提升可访问性。
import { navigateRegions } from '@wordpress/components';
const MyComponentWithNavigateRegions = navigateRegions( () => (
<div>
<div role="region" tabIndex="-1" aria-label="Header">
Header
</div>
<div role="region" tabIndex="-1" aria-label="Content">
Content
</div>
<div role="region" tabIndex="-1" aria-label="Sidebar">
Sidebar
</div>
</div>
) );navigateRegions is a React higher-order component adding keyboard navigation to switch between the different DOM elements marked as “regions” (role=”region”). These regions should be focusable (By adding a tabIndex attribute for example). For better accessibility, these elements must be properly labelled to briefly describe the purpose of the content in the region. For more details, see “Landmark Roles” in the WAI-ARIA specification and “Landmark Regions” in the ARIA Authoring Practices Guide.
import { navigateRegions } from '@wordpress/components';
const MyComponentWithNavigateRegions = navigateRegions( () => (
<div>
<div role="region" tabIndex="-1" aria-label="Header">
Header
</div>
<div role="region" tabIndex="-1" aria-label="Content">
Content
</div>
<div role="region" tabIndex="-1" aria-label="Sidebar">
Sidebar
</div>
</div>
) );
It’s important to note that an ARIA role="region" is an ARIA landmark role. It should be reserved for sections of content sufficiently important to have it listed in a summary of the page. Only use this ARIA role for the main sections of a page. All perceivable content should reside in a semantically meaningful landmark in order that content is not missed by the user.