mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
69 lines
1.7 KiB
Svelte
69 lines
1.7 KiB
Svelte
<script>
|
|
/** Set to `false` to hide the side nav by default */
|
|
export let expandedByDefault = true;
|
|
|
|
/** Set to `true` to open the side nav */
|
|
export let isSideNavOpen = false;
|
|
|
|
/**
|
|
* Specify the ARIA label for the header
|
|
* @type {string}
|
|
*/
|
|
export let uiShellAriaLabel = undefined;
|
|
|
|
/**
|
|
* Specify the `href` attribute
|
|
* @type {string}
|
|
*/
|
|
export let href = undefined;
|
|
|
|
/**
|
|
* Specify the company name
|
|
* @type {string}
|
|
*/
|
|
export let company = undefined;
|
|
|
|
/**
|
|
* Specify the platform name
|
|
* Alternatively, use the named slot "platform" (e.g., <span slot="platform">...</span>)
|
|
*/
|
|
export let platformName = "";
|
|
|
|
/** Set to `true` to persist the hamburger menu */
|
|
export let persistentHamburgerMenu = false;
|
|
|
|
/** Obtain a reference to the HTML anchor element */
|
|
export let ref = null;
|
|
|
|
import HamburgerMenu from "../SideNav/HamburgerMenu.svelte";
|
|
|
|
let winWidth = undefined;
|
|
|
|
$: isSideNavOpen =
|
|
expandedByDefault && winWidth >= 1056 && !persistentHamburgerMenu;
|
|
$: ariaLabel = company
|
|
? `${company} `
|
|
: "" + (uiShellAriaLabel || $$props["aria-label"] || platformName);
|
|
</script>
|
|
|
|
<svelte:window bind:innerWidth="{winWidth}" />
|
|
|
|
<header role="banner" aria-label="{ariaLabel}" class:bx--header="{true}">
|
|
<slot name="skip-to-content" />
|
|
{#if winWidth < 1056 || persistentHamburgerMenu}
|
|
<HamburgerMenu bind:isOpen="{isSideNavOpen}" />
|
|
{/if}
|
|
<a
|
|
href="{href}"
|
|
class:bx--header__name="{true}"
|
|
bind:this="{ref}"
|
|
{...$$restProps}
|
|
on:click
|
|
>
|
|
{#if company}
|
|
<span class:bx--header__name--prefix="{true}">{company} </span>
|
|
{/if}
|
|
<slot name="platform">{platformName}</slot>
|
|
</a>
|
|
<slot />
|
|
</header>
|