npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@moduware/morph-sidebar

v1.0.0

Published

Sidebar that morphs for current mobile OS

Downloads

8

Readme

morph-sidebar

License Published on webcomponents.org

Sidebar that morphs for current mobile OS.

morph-sidebar component changes its appearance based on the whether the platform or device is IOS or Android.

Getting Started

For the information about how to clone the desired repository, running the local server and testing, please refer to Polymorph elements getting started docs at the end of this repository.

Demo

  • Here is a quick demo of <morph-sidebar>

Styling

-For Android platform;

Custom property | Description | Default ---------------------------------|----------------------------------------|-------------------- --app-drawer-width | Width of the app drawer | 260px --morph-sidebar-scrim-background-android | Background color for scrim | rgba(0, 0, 0, 0.2) --app-drawer-scrim-background | App-drawer scrim color | var(--morph-sidebar-scrim-background-android)

-For IOS platform;

Custom property | Description | Default ---------------------------------|----------------------------------------|-------------------- --app-drawer-width | Width of the app drawer | 260px --morph-sidebar-scrim-background-ios | Background color for scrim | rgba(0, 0, 0, 0) --app-drawer-scrim-background | App-drawer scrim color | var(--morph-sidebar-scrim-background-ios)

Attributes

| Custom Attribute | Type | Description | Default | |:----------------:|:-------:|----------------------------------------------------------------------------------------------------------------------------------|-------------| | align | String | Assigns where to display side bar. left or right| left | | opened | Boolean | Indicates if the side bar is close or open | false | | transition-duration-ios | String | Transition of side bar opening in ios | 400 | | transition-duration-android | String | Transition of side bar opening in android | 300 |
| transition-duration-web | String | Transition of side bar opening in web | 200 |

How to use our <morph-sidebar> component

  • We can wrap the whole content with app-drawer-layout component to make it work with other <app-layout> elements like <app-header>. We can then use the drawer-toggle attribute and place them on any children of the <app-drawer-layout> and when click it toggles our sidebar open and close.

    
    <body>
    
      <app-drawer-layout fullbleed force-narrow>
    
        <morph-sidebar slot="drawer" align="left" swipe-open>
          <p>Left morph-sidebar</p>
          <p>Simulated with cover animation and shadow for android. And no shadow if iOS.</p>
        </morph-sidebar>
    
        <app-header-layout>
          <app-header slot="header">
            <app-toolbar>
              <div main-tittle>morph-sidebar</div>
            </app-toolbar>
          </app-header>
        </app-header-layout>
    
        <div>
          <h4 drawer-toggle>Toggle Left Sidebar</h4>
        </div>
    
      </app-drawer-layout>
    
      <script>
    
        toggleDrawer = function(name) {
          var drawer = document.getElementById(name + 'Sidebar');
          drawer.toggle();
        };
    
      </script>
    
    </body>
    
  • We may use two (2) <morph-sidebar> panels at the same time, one left and one right panel. align defaults to left when not specified.

    
    <body>
    
      <morph-sidebar id="leftSidebar" align="left" swipe-open>
        <p>Left morph-sidebar</p>
        <p>Simulated with cover animation and shadow for android. And no shadow if iOS.</p>
      </morph-sidebar>
    
      <morph-sidebar id="rightSidebar" align="right" swipe-open>
        <p>Right morph-sidebar</p>
        <p>Simulated with cover animation and shadow for android. And no shadow if iOS.</p>
      </morph-sidebar>
    
      <div>
        <h4 onclick="toggleDrawer('left')">Toggle Left Sidebar</h4>
      </div>
    
      <div>
        <h4 onclick="toggleDrawer('right')">Toggle Right Sidebar</h4>
      </div>
    
      <script>
    
        toggleDrawer = function(name) {
          var drawer = document.getElementById(name + 'Sidebar');
          drawer.toggle();
        };
    
      </script>
    
    </body>
    
    • We can also use two (2) <morph-sidebar> panels with app-drawer-layout by doing a nested app-drawer-layout setup. We can use only the drawer-toggle attribute on the outer app-drawer-layout children. We need to use other ways to open/close the inner <morph-sidebar> (which is our right sidebar panel in this example), like using javascript for our example below.
    
     <body>
    
      <app-drawer-layout fullbleed force-narrow>
    
        <morph-sidebar slot="drawer" align="left" swipe-open>
          <p>Left morph-sidebar</p>
          <p>Simulated with cover animation and shadow for android. And no shadow if iOS.</p>
        </morph-sidebar>
    
        <div>
          <h4 drawer-toggle>Toggle Left Sidebar</h4>
        </div>
    
        <app-drawer-layout force-narrow>
    
          <morph-sidebar id="rightSidebar" slot="drawer" align="right" swipe-open transition-duration-ios="500">
            <p>Right morph-sidebar</p>
            <p>Simulated with cover animation and shadow for android. And no shadow if iOS.</p>
            <p>This sidebar animation duration is change to 500</p>
          </morph-sidebar>
    
          <div>
            <h4 onclick="toggleDrawer('right')">Toggle Right Sidebar</h2>
          </div>
    
        </app-drawer-layout>
    
      </app-drawer-layout>
    
      <script>
    
        toggleDrawer = function(name) {
          var drawer = document.getElementById(name + 'Sidebar');
          drawer.toggle();
        };
    
      </script>
    
    </body>
    

    ToDo: Implement the reveal animation using this new morph-sidebar

    • <morph-sidebar> has two animation when opening and closing. The default animation of the sidebar is cover. It covers the morph-view element when it opens.

    • The other animation is called reveal where morph-view moves out and reveals the <morph-sidebar> under it. <morph-view> moves out of the way to accommodate the width of our sidebar. To use reveal we add reveal attribute to <morph-view> component.

      
      function closeRightSidebarWithReveal() {
        let view = document.getElementById('mainView');
        view.removeAttribute('reveal');
      }
      
      document.addEventListener('DOMContentLoaded', function(event) {
        document.getElementById('sidebarRight').addEventListener('open-changed', closeRightSidebarWithReveal);
      });
      

Further help

For more information on how to install and run test please go here - Polymorph elements getting started