Skip to content

Latest commit

 

History

History
158 lines (119 loc) · 5.98 KB

README.md

File metadata and controls

158 lines (119 loc) · 5.98 KB

ilw-section-nav

Links: ilw-section-nav in Builder | Illinois Web Theme | Toolkit Development

Overview

The section navigation component provides extended navigation links for a section of a website, organized in a tree-like stucture. Compared to the main navigation, it provides more levels of navigation and more items at a glance, making it easier to browse the contents of a section of a website.

The section navigation is meant to be placed in a sidebar next to the main page content. On smaller screens, it collapsed to an expanding widget labeled "In This Section".

The following attributes can be used:

  • open="true" and open="false" are bound to the open/collapsed state of the menu. That means this updates dynamically when the user opens or closes the menu, so it can be used to target styling.
  • label - the text shown when the menu is collapsed. The default value is "Pages In This Section". This is also used as the accessible label of the navigation.

The following can only be used in automatic mode:

  • collapsed="true" - make the menu always collapse regardless of viewport size.
  • collapsed="false" - prevent the menu from collapsing.

Current page

To denote which link is for the current page, use aria-current="page" in the a tag, as shown in the code example below. Appropriate styling will be applied to that link.

Navigation levels

Each link in the hierarchy can have child links, which are displayed below the parent with a slight indentation. Avoid using links more than 3 levels deep, as that can make it hard for the user to distinguish between the different levels.

Child links are added by including a nested ilw-section-nav tag with its own list of links, as shown in the example below.

In manual mode, you can manage the ul and li tags in your code, in which case you can nest levels with ul. See the manual example below.

Breakpoint for collapsed view

By default, the navigation collapses to a "mobile" view when the width of the viewport is less than or equal to 700px.

CSS does not allow controlling breakpoints with variables. If you need to adjust the size, you can either use the collapse attribute to force it, or copy the @media (max-width: 700px) rule from ilw-section-nav.css to your CSS and adjust it.

Section Name Link

Typically, the first link in the section navigation is the root page of the section. Special styling can be added by giving the first link the class ilw-section-nav--root, as shown in the example below.

Code Examples

Automatic Mode

The default mode, where all the appropriate tags are managed by the component.

<ilw-section-nav>
    <a href="#" class="ilw-section-nav--root">Programs of Study</a>
    <a href="#">Undergraduate Degrees</a>
    <ilw-section-nav>
        <a href="#">Animal Sciences Major</a>
        <ilw-section-nav>
            <a href="#" aria-current="page">Pre-Veterinary and Medical</a>
            <a href="#">Companion Animal Equine</a>
        </ilw-section-nav>
    </ilw-section-nav>
    <a href="#">Computer & Animal Science</a>
    <ilw-section-nav>
        <a href="#">Some Third Thing</a>
    </ilw-section-nav>
</ilw-section-nav>

Manual Mode

In manual mode, a single ilw-section-nav is used, and the menu structure is managed manually.

<ilw-section-nav mode="manual">
    <ul>
        <li><a href="#" class="ilw-section-nav--root">Programs of Study</a></li>
        <li><a href="#">Undergraduate Degrees</a>
            <ul>
                <li>
                    <a href="#">Animal Sciences Major</a>
                    <ul>
                        <li><a href="#" aria-current="page">Pre-Veterinary and Medical</a></li>
                        <li><a href="#">Companion Animal Equine</a></li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>
            <a href="#">Computer & Animal Science</a>
            <ul>
                <li><a href="#">Some Third Thing</a></li>
            </ul>
        </li>
    </ul>
</ilw-section-nav>

Accessibility Notes

  • The label attribute is used as the aria-label value for the navigation element. It should be descriptive of the type of navigation contained. Note that it's optional, the default value is "Pages In This Section".
  • If the links are based on very long page titles, consider using shortened versions in the navigation. Several line breaks in one link can be confusing.
  • Try and balance the length and depth of the navigation. A long list of links all on the same level is hard to scan, but navigation deeper than 3 levels makes it difficult to distinguish the hierarchy of the items.

Upgrade Process

il-section-nav can be upgraded to either use the automatic mode, or the manual mode:

  • Automatic mode uses less HTML, but may be harder to use with CMSes.
  • Manual mode requires fewer changes, but may not support all new features.

Automatic Mode

When upgrading from the v2 toolkit component, the following changes are needed:

  • Rename all il-section-nav to ilw-section-nav.
  • Remove heading tags (h2, h3, etc.), and add class="ilw-section-nav--root" to the first link instead.
  • Remove the top-level ul or ol tag that's directly under ilw-section-nav.
  • Replace all other ul or ol tags with ilw-section-nav.
  • Remove all li tags.

Manual Mode

When upgrading with manual mode, the following changes are needed:

  • Rename all <il-section-nav to <ilw-section-nav mode="manual.
  • Remove heading tags (h2, h3, etc.), and add class="ilw-section-nav--root" to the first link instead.

External References