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

ng-sidebar-accordion

v4.0.0

Published

Angular sidebar accordion component.

Downloads

500

Readme

ng-sidebar-accordion

NPM

An Angular sidebar accordion component.

Demo

Installation

npm install ng-sidebar-accordion

Changelog

See the releases page on GitHub.

Usage

Add SidebarAccordionModule to your app module

import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {AppComponent} from './app.component';
import {SidebarAccordionModule} from 'ng-sidebar-accordion';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    SidebarAccordionModule
  ],
  bootstrap: [AppComponent]
})
export class AppModule {
}

In your app component, simply use add a <ng-sidebar-accordion> wrapper, then place your <ng-sidebar>(s) and content within it. Your page content should be in container <ng-sidebar-accordion-content>.

@Component({
  selector: 'app',
  template: `
    <!-- Container for sidebar(s) + page content -->
    <ng-sidebar-accordion #accordion>
      <!-- A sidebar -->
      <ng-sidebar position="right" [opened]="true">
        <ng-sidebar-header>
          <div>
            <div>right-pane0-header-row1</div>
            <div>right-pane0-header-row2</div>
          </div>
        </ng-sidebar-header>
        
        <ng-sidebar-content>
          right-pane0-content
        </ng-sidebar-content>
      </ng-sidebar>

      <!-- Page content -->
      <ng-sidebar-accordion-content>
        <button
          (click)="accordion.open('right')">
          open
        </button>
        <button
          (click)="accordion.close('right')">
          close
        </button>
      </ng-sidebar-accordion-content>
    </ng-sidebar-accordion>
  `
})
class AppComponent {  
}

Functions

The SidebarAccordion has a few public functions:

| Function | Description | | -------- | ----------- | | open(position, index) | Opens sidebars. positions - ('all', 'left', 'top', 'right', 'bottom'); index - position the side panel | | close(position) | Closes sidebars. positions - ('all', 'left', 'top', 'right', 'bottom'); | | getSidebarIndex(sidebar) | returns the index of the sidebar in an array of a specific position. |

The Sidebar has a few public functions:

| Function | Description | | -------- | ----------- | | open() | Opens this sidebar. | | close() | Closes this sidebar. |

Styling

Various class names are attached to the sidebar and container for easier styling.

SidebarAccordion

| Class name | Description | | ---------- | ----------- | | ng-sidebar-accordion | Always present on the container element. | | ng-sidebar-accordion__left-pane | Always present on the element where panels are placed on the left edge. | | ng-sidebar-accordion__top-pane | Always present on the element where panels are placed at the top edge. | | ng-sidebar-accordion__right-pane | Always present on the element where panels are placed on the right edge. | | ng-sidebar-accordion__bottom-pane | Always present on the element where panels are placed along the bottom edge. | | ng-sidebar-accordion__left-pane_resizable | Appears when resizing the panel is allowed. Left pane. | | ng-sidebar-accordion__top-pane_resizable | Appears when resizing the panel is allowed. Top pane. | | ng-sidebar-accordion__right-pane_resizable | Appears when resizing the panel is allowed. Right pane. | | ng-sidebar-accordion__bottom-pane_resizable | Appears when resizing the panel is allowed. Bottom pane. | | ng-sidebar-accordion__left-pane_over | Appears when panel mode is set toover'. Left pane. | | ng-sidebar-accordion__top-pane_over | Appears when panel mode is set toover'. Top pane. | | ng-sidebar-accordion__right-pane_over | Appears when panel mode is set toover'. Right side. | | ng-sidebar-accordion__bottom-pane_over | Appears when panel mode is set toover'. Bottom pane. | | ng-sidebar-accordion-content | Always present on the element where the main content is placed. | | ng-sidebar-accordion__gutter-horizontal | Appears when resizing the panel is allowed. | | ng-sidebar-accordion__gutter-vertical | Appears when resizing the panel is allowed. |

Sidebar

| Class name | Description | | ---------- | ----------- | | ng-sidebar | Sidebar element. | | ng-sidebar-header | The title of the sidebar. | | ng-sidebar-header__content | Content of the sidebar header. | | ng-sidebar-content | Contents of the sidebar. | | ng-sidebar_opened | Appears when the sidebar is open. |

All the above classes are always present on the element.

Options

<ng-sidebar-accordion>

Inputs

| Property name | Type | Default | Description | | ------------- | ---- | ------- | ----------- | | width | string | | Width of the component. | | height | string | | Height of the component. | | className | string | | Css class. | | sidebarResizable | boolean | false | A flag that specifies whether or not the sidebar can be resized. |

Outputs

| Property name | Callback arguments | Description | | ------------- | ------------------ | ----------- | | sidebarResizableBegin | position | Emitted when the sidebar size change starts. | | sidebarResizableEnd | position | Emitted when the sidebar size change ends. | | sidebarOpenedChange | SidebarComponent | Emitted when sidebar state changes. |

position: 'left', 'right', 'top', 'bottom'

<ng-sidebar>

Inputs

| Property name | Type | Default | Description | | ------------- | ---- | ------- | ----------- | | position | 'left', 'right', 'top', 'bottom' | | The position where to place the sidebar. | | className | string | | Css class. | | opened | boolean | false | State sidebar. | | pinned | boolean | false | Pin the sidebar |

Outputs

| Property name | Callback arguments | Description | | ------------- | ------------------ | ----------- | | openedChange | { sender: SidebarComponent, opened: boolean } | Emitted when the sidebar state changes. | | headerClicked | SidebarComponent | Emitted when the sidebar header clicked. | | headerTouchMoved | SidebarMouseTouchEventArgs | Emitted when the sidebar header touch moved | | headerTouchEnded | SidebarMouseTouchEventArgs | Emitted when the sidebar header touch ended |

<ng-sidebar-settings>

Used to configure sidebar mode

Inputs

| Property name | Type | Default | Description | | ------------- | ---- | ------- | ----------- | | position | 'left', 'right', 'top', 'bottom' | The sidebar position for which settings are applied. | | mode | 'push', 'over' | Sidebars mode. |

Outputs

| Property name | Callback arguments | Description | | ------------- | ------------------ | ----------- | | modeChange | SidebarSettingsComponent | Emitted when the mode is change. | | positionChange | SidebarSettingsComponent | Emitted when the position is change. |