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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT: NavBar aanpassingen #971

Open
Rerbun opened this issue Dec 2, 2024 · 1 comment
Open

FEAT: NavBar aanpassingen #971

Rerbun opened this issue Dec 2, 2024 · 1 comment

Comments

@Rerbun
Copy link
Contributor

Rerbun commented Dec 2, 2024

Context
Het gebruik van de NavBar is niet helemaal gebruiksvriendelijk voor developer. Nu dien je verplicht allerlei props in te vullen die mogelijk niet wenselijk zijn. Bijv:

  • Mogelijk wil je een item toevoegen die niet klikbaar is omdat je op die pagina zit of dat het de naam van de pagina is.

Oplossingsrichting
Voor het niet klikbaar maken:

  • href niet forceren, maar optioneel maken. Vervolgens dan ook zorgen dat deze niet klikbaar wordt.
    Daarnaast kan het meegeven van een level/appearance aan de heading de styling bevorderen.

...Styling voor mobiele apparaten...

@Rerbun
Copy link
Contributor Author

Rerbun commented Dec 2, 2024

Mobiele collapsible knop:

// Navbar voorbeeld met button
<NavBar
  className={clsx({ 'rhc-nav-bar--mobile-collapsed': navBarMobileCollapsed})}
  // (en item props)
>
  <IconButton 
    className="mobile-only"
    onClick={() => setNavBarMobileCollapsed((value) => !value)}
    icon="menu"
    label="Menu in- en uitklappen"
   />
</NavBar>
// Navbar styling voorbeeld
.mobile-only { 
  display: none;
}

@media (width <= 768px) {
  .mobile-only {
    display: none;
  }

  .rhc-nav-bar__container {
        justify-content: flex-start;
        position: relative;
    }

    .rhc-nav-bar {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;

        &, & > * {
            flex-direction: column;
        }

        .rhc-nav-bar__list {
            &, & .rhc-nav-bar__item, & .rhc-link {
                inline-size: 100%;
            }
        }

        .rhc-nav-bar__list--end {
            margin-inline-start: initial;
            inline-size: 100%;
        }

        &.rhc-nav-bar--mobile-collapsed {
            .rhc-nav-bar__item {
                display: none;
            }

            .rhc-nav-bar__list:first-child .rhc-nav-bar__item:first-child {
                display: inherit;
            }
        }
    }

    .rhc-button.rhc-button--icon-only {
        position: absolute;
        inset-inline-end: 0;
        inset-block-start: 0.25rem;

        &, &:hover, &:focus, &:active {
            color: var(--rhc-nav-bar-color);
        }
    }

    nav, nav > * {
        flex-direction: column;
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant