0.26.0 • Published 2 years ago

@phtnalaska/alaska-navigation v0.26.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

Navigation

The <alaska-navigation> is a HTML custom element intended to aid visitors in accessing information.

The component use <alaska-navmenu> and <alaska-navmenuitem> for building the navigation menu (bar menu and sidebar menu) and placed in slot element of the <alaska-navigation> component.

UI development browser support

For the most up to date information on UI development browser support

Install

Build Status See it on NPM! License

$ npm i @phtnalaska/alaska-navigation

Installing as a direct, dev or peer dependency is up to the user installing the package. If you are unsure as to what type of dependency you should use, consider reading this stack overflow answer.

Design Token CSS Custom Property dependency

The use of any Auro custom element has a dependency on the Auro Design Tokens.

CSS Custom Property fallbacks

CSS custom properties are not supported in older browsers. For this, fallback properties are pre-generated and included with the npm.

Any update to the Auro Design Tokens will be immediately reflected with browsers that support CSS custom properties, legacy browsers will require updated components with pre-generated fallback properties.

Define dependency in project component

Defining the component dependency within each component that is using the <alaska-navigation> component.

import "@phtnalaska/alaska-navigation";

Reference component in HTML

<alaska-navigation action="icon">
    <auro-alaska customColor slot="logo" official style="width: 72px"></auro-alaska>
    <alaska-navmenu slot="left-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="terminal" name="radar-stroke"></auro-icon>
          <span slot="title">Dashboard</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="2">
          <auro-icon slot="left-icon" category="terminal" name="plane-diag-stroke"></auro-icon>
          <span slot="title">Flights</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="3">
          <auro-icon slot="left-icon" category="terminal" name="boarding-pass-stroke"></auro-icon>
          <span slot="title">PNRS</span>
        </alaska-navmenuitem>
    </alaska-navmenu>
      <alaska-navmenu slot="right-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="alert" name="question-stroke"></auro-icon>
          <span slot="title">Help</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem selected id="2" marker="3">
          <auro-icon slot="left-icon" category="interface" name="notification"></auro-icon>
          <span slot="title">Notification</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem noIndicator id="3">
          <auro-icon customColor slot="left-icon" category="interface" name="account-stroke"></auro-icon>
          <span slot="title">Ryan</span>
        </alaska-navmenuitem>
      </alaska-navmenu>
</alaska-navigation>
<div>
  <span>To see menu with sidebar and fullscreen go to: </span>
  <a href="/demo/actionIcon.html">WITH SIDEBAR</a>
</div>
<alaska-navigation action="search">
    <auro-alaska customColor slot="logo" official style="width: 72px"></auro-alaska>
    <alaska-navmenu slot="left-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="terminal" name="radar-stroke"></auro-icon>
          <span slot="title">Dashboard</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="2">
          <auro-icon slot="left-icon" category="terminal" name="plane-diag-stroke"></auro-icon>
          <span slot="title">Flights</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="3">
          <auro-icon slot="left-icon" category="terminal" name="boarding-pass-stroke"></auro-icon>
          <span slot="title">PNRS</span>
        </alaska-navmenuitem>
    </alaska-navmenu>
    <alaska-searchbar slot="right-menu"></alaska-searchbar>
</alaska-navigation>
<div>
  <span>To see menu with sidebar and fullscreen go to: </span>
  <a href="/demo/actionSearch.html">WITH SIDEBAR</a>
</div>
<alaska-navigation action="label">
    <auro-alaska customColor slot="logo" official style="width: 72px"></auro-alaska>
    <alaska-navmenu slot="left-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="terminal" name="radar-stroke"></auro-icon>
          <span slot="title">Dashboard</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="2">
          <auro-icon slot="left-icon" category="terminal" name="plane-diag-stroke"></auro-icon>
          <span slot="title">Flights</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="3">
          <auro-icon slot="left-icon" category="terminal" name="boarding-pass-stroke"></auro-icon>
          <span slot="title">PNRS</span>
        </alaska-navmenuitem>
    </alaska-navmenu>
    <div slot="right-menu">
        <span>Elisabeth Carol Anderson | Sector Manager <a href="#">Edit</a></span>
        <span>Assignments: Sector A, Sector B, Sector C <a href="#">Edit</a></span>
    </div>
</alaska-navigation>
<div>
  <span>To see menu with sidebar and fullscreen go to: </span>
  <a href="/demo/actionLabel.html">WITH SIDEBAR</a>
</div>

Install bundled assets from CDN

In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Two bundles are available -- alaska-navigation__bundled.js for modern browsers and alaska-navigation__bundled.es5.js for legacy browsers (including IE11).

Since the legacy bundle includes many polyfills that are not needed by modern browsers, we recommend you load these bundles using differential serving so that the browser only loads the bundle it needs. To accomplish this, the script tag for the modern bundle should have type="module" and the script tag for the legacy bundle should have the nomodule attribute. See the example below.

Bundle example code

<!-- **NOTE:** Be sure to replace `@latest` in the URL with the version of the asset you want. @latest is NOT aware of any MAJOR releases, use at your own risk. -->
<link rel="stylesheet" href="https://unpkg.com/@alaskaairux/design-tokens@latest/dist/tokens/CSSCustomProperties.css" />
<link rel="stylesheet" href="https://unpkg.com/@alaskaairux/webcorestylesheets@latest/dist/bundled/essentials.css" />
<script src="https://unpkg.com/@phtnalaska/alaska-navigation@latest/dist/alaska-navigation__bundled.js" type="module"></script>
<script src="https://unpkg.com/@phtnalaska/alaska-navigation@latest/dist/alaska-navigation__bundled.es5.js" nomodule></script>

alaska-navigation use cases

The <alaska-navigation> element should be used in situations where users may:

  • access the information they want as quickly as possible.
  • navigate using a web browser and clicking on links that transport them to other pages.

API Code Examples

Default alaska-navigation

<alaska-navigation action="icon">
    <auro-alaska customColor slot="logo" official style="width: 72px"></auro-alaska>
    <alaska-navmenu slot="left-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="terminal" name="radar-stroke"></auro-icon>
          <span slot="title">Dashboard</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="2">
          <auro-icon slot="left-icon" category="terminal" name="plane-diag-stroke"></auro-icon>
          <span slot="title">Flights</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="3">
          <auro-icon slot="left-icon" category="terminal" name="boarding-pass-stroke"></auro-icon>
          <span slot="title">PNRS</span>
        </alaska-navmenuitem>
    </alaska-navmenu>
      <alaska-navmenu slot="right-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="alert" name="question-stroke"></auro-icon>
          <span slot="title">Help</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem selected id="2" marker="3">
          <auro-icon slot="left-icon" category="interface" name="notification"></auro-icon>
          <span slot="title">Notification</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem noIndicator id="3">
          <auro-icon customColor slot="left-icon" category="interface" name="account-stroke"></auro-icon>
          <span slot="title">Ryan</span>
        </alaska-navmenuitem>
      </alaska-navmenu>
</alaska-navigation>
<div>
  <span>To see menu with sidebar and fullscreen go to: </span>
  <a href="/demo/actionIcon.html">WITH SIDEBAR</a>
</div>
<alaska-navigation action="search">
    <auro-alaska customColor slot="logo" official style="width: 72px"></auro-alaska>
    <alaska-navmenu slot="left-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="terminal" name="radar-stroke"></auro-icon>
          <span slot="title">Dashboard</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="2">
          <auro-icon slot="left-icon" category="terminal" name="plane-diag-stroke"></auro-icon>
          <span slot="title">Flights</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="3">
          <auro-icon slot="left-icon" category="terminal" name="boarding-pass-stroke"></auro-icon>
          <span slot="title">PNRS</span>
        </alaska-navmenuitem>
    </alaska-navmenu>
    <alaska-searchbar slot="right-menu"></alaska-searchbar>
</alaska-navigation>
<div>
  <span>To see menu with sidebar and fullscreen go to: </span>
  <a href="/demo/actionSearch.html">WITH SIDEBAR</a>
</div>
<alaska-navigation action="label">
    <auro-alaska customColor slot="logo" official style="width: 72px"></auro-alaska>
    <alaska-navmenu slot="left-menu">
        <alaska-navmenuitem id="1">
          <auro-icon slot="left-icon" category="terminal" name="radar-stroke"></auro-icon>
          <span slot="title">Dashboard</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="2">
          <auro-icon slot="left-icon" category="terminal" name="plane-diag-stroke"></auro-icon>
          <span slot="title">Flights</span>
        </alaska-navmenuitem>
        <alaska-navmenuitem id="3">
          <auro-icon slot="left-icon" category="terminal" name="boarding-pass-stroke"></auro-icon>
          <span slot="title">PNRS</span>
        </alaska-navmenuitem>
    </alaska-navmenu>
    <div slot="right-menu">
        <span>Elisabeth Carol Anderson | Sector Manager <a href="#">Edit</a></span>
        <span>Assignments: Sector A, Sector B, Sector C <a href="#">Edit</a></span>
    </div>
</alaska-navigation>
<div>
  <span>To see menu with sidebar and fullscreen go to: </span>
  <a href="/demo/actionLabel.html">WITH SIDEBAR</a>
</div>

Development

In order to develop against this project, if you are not part of the core team, you will be required to fork the project prior to submitting a pull request.

Please be sure to review the contribution guidelines for this project. Please make sure to pay special attention to the conventional commits section of the document.

Start development environment

Once the project has been cloned to your local resource and you have installed all the dependencies you will need to open a shell session to run the dev server.

$ npm run dev

Open localhost:8000

If running separate sessions is preferred, please run the following commands in individual terminal shells.

$ npm run build:watch

$ npm run serve

API generation

The custom element API file is generated in the build and committed back to the repo with a version change. If the API doc has changed without a version change, author's are to run npm run build:api to generate the doc and commit to version control.

Testing

Automated tests are required for every Auro component. See .\test\alaska-navigation.test.js for the tests for this component. Run npm test to run the tests and check code coverage. Tests must pass and meet a certain coverage threshold to commit. See the testing documentation for more details.

Bundled assets

Bundled assets are only generated in the remote and not merged back to this repo. To review and/or test a bundled asset locally, run $ npm run bundler to generate assets.

Demo deployment

To deploy a demo version of the component for review, run npm run build:demo to create a ./build directory that can be pushed to any static server.

0.26.0

2 years ago

0.25.0

2 years ago

0.24.0

2 years ago

0.23.0

2 years ago

0.22.0

2 years ago

0.21.0

2 years ago

0.20.0

2 years ago

0.19.0

2 years ago

0.18.0

2 years ago

0.17.0

2 years ago

0.16.0

2 years ago

0.15.0

2 years ago

0.14.0

2 years ago

0.13.0

2 years ago

0.12.0

2 years ago

0.10.0

2 years ago

0.9.0

2 years ago

0.8.0

2 years ago

0.7.0

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago

0.0.0

2 years ago