9.4.3 • Published 2 years ago

ng-sidebar v9.4.3

Weekly downloads
14,071
License
MIT
Repository
github
Last release
2 years ago

ng-sidebar

⚠️ This package is deprecated and not maintained. ⚠️


NPM

Demo

Formerly called ng2-sidebar

An Angular sidebar component.

Installation

npm install --save ng-sidebar

SystemJS configuration

If you're using SystemJS, be sure to add the appropriate settings to your SystemJS config:

const map = {
  // ...
  'ng-sidebar': 'node_modules/ng-sidebar',
  // ...
};

const packages = {
  // ...
  'ng-sidebar': {
    main: 'lib/index',
    defaultExtension: 'js'
  },
  // ...
};

Changelog

See the releases page on GitHub.

Usage

Add SidebarModule to your app module:

import { SidebarModule } from 'ng-sidebar';

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule, SidebarModule.forRoot()],
  bootstrap: [AppComponent],
})
class AppModule {}

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

@Component({
  selector: 'app',
  template: `
    <!-- Container for sidebar(s) + page content -->
    <ng-sidebar-container>

      <!-- A sidebar -->
      <ng-sidebar [(opened)]="_opened">
        <p>Sidebar contents</p>
      </ng-sidebar>

      <!-- Page content -->
      <div ng-sidebar-content>
        <button (click)="_toggleSidebar()">Toggle sidebar</button>
      </div>

    </ng-sidebar-container>
  `
})
class AppComponent {
  private _opened: boolean = false;

  private _toggleSidebar() {
    this._opened = !this._opened;
  }
}

If nothing seems to show up, your wrappers' heights may be collapsing. Try adding a height (e.g. height: 100vh;) to the wrapper <ng-sidebar-container> or other wrapper elements you may have. (See issue #100 for more info.)

A directive is also provided to easily close the sidebar by clicking something inside it:

<ng-sidebar>
  <a closeSidebar>Closes the sidebar</a>
</ng-sidebar>

You can also use the open() and close() functions:

<ng-sidebar #sidebar>
  <button (click)="sidebar.close()">Close sidebar</button>
</ng-sidebar>

<button (click)="sidebar.open()">Open sidebar</button>

Functions

The sidebar has a few public functions:

FunctionDescription
open()Opens the sidebar.
close()Closes the sidebar.
triggerRerender()Manually trigger a re-render of the container. Useful if the sidebar contents might change.

Styling

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

If you are using Angular's default emulated view encapsulation, you may have to use the >>> selector to target the sidebar's classes. Check out Angular's documentation for more details. Note that the /deep/ selector will soon be deprecated.

Sidebar

Class nameDescription
ng-sidebarAlways on the sidebar element.
ng-sidebar--openedWhen opened is true.
ng-sidebar--closedWhen opened is false.
ng-sidebar--leftWhen position is 'left' (or the 'start'/'end' aliases are equivalent to 'left').
ng-sidebar--rightWhen position is 'right' (or the 'start'/'end' aliases are equivalent to 'right').
ng-sidebar--topWhen position is 'top'.
ng-sidebar--bottomWhen position is 'bottom'.
ng-sidebar--overWhen mode is 'over'.
ng-sidebar--pushWhen mode is 'push'.
ng-sidebar--slideWhen mode is 'slide'.
ng-sidebar--dockedWhen the sidebar is docked (i.e. it is "closed" and dock is true).
ng-sidebar--inertIgnores pointer clicks. Class is applied when the sidebar is closed.
ng-sidebar--animateWhen animate is true for a sidebar.

Backdrop

Class nameDescription
ng-sidebar__backdropClass of the backdrop div. Note that the div is only in the DOM when the backdrop is shown.

Page content

Class nameDescription
ng-sidebar__contentClass of the wrapper div for the page content.
ng-sidebar__content--animateWhen animate is true for the container.

Options

<ng-sidebar-container>

Inputs

Property nameTypeDefaultDescription
contentClassstringAdditional class name on the div wrapping the page contents.
backdropClassstringAdditional class name on the overlay element.
showBackdropbooleanfalseControls the backdrop state of the sidebar container. This should be two-way bound.
allowSidebarBackdropControlbooleantrueDetermines if the container component respects the sidebar's showBackdrop input option.
animatebooleantrueAnimates the container sliding.

Outputs

Property nameCallback argumentsDescription
showBackdropChangeshowBackdrop: booleanEmitted when showBackdrop is modified. This allows for you to do "two-way binding" (i.e. [(showBackdrop)]).
onBackdropClickedEmitted when a backdrop is clicked.

<ng-sidebar>

Inputs

Property nameTypeDefaultDescription
openedbooleanfalseControls the opened state of the sidebar. This should be two-way bound.
mode'over', 'push', 'slide''over'See the "Modes" section.
dockbooleanfalseShow the sidebar as docked when closed.
dockedSizestring'0px'When mode is set to 'dock', this value indicates how much of the sidebar is still visible when "closed".
position'left', 'right', 'top', 'bottom', 'start', 'end''start'What side the sidebar should be docked to. 'start' and 'end' are aliases that respect the page's language (e.g. start is the same as left for English, but would be right for Hebrew.
autoCollapseHeightnumberWindow height in pixels in which to automatically close the sidebar.
autoCollapseWidthnumberWindow width in pixels in which to automatically close the sidebar.
autoCollapseOnInitbooleantrueCollapse sidebar based on autoCollapseHeight and/or autoCollapseWidth on initial render as needed.
animatebooleantrueAnimate the opening/closing of the sidebar.
sidebarClassstringAdditional class name on the sidebar element.
ariaLabelstringValue for the sidebar's aria-label attribute.
trapFocusbooleanfalseKeeps focus within the sidebar when open. Note that this only works if there's one sidebar open at a time.
autoFocusbooleantrueAutomatically focus the first focusable element in the sidebar when opened.
showBackdropbooleanfalseIf a translucent black backdrop overlay should appear over the page contents when the sidebar is opened. This is ignored if the sidebar's parent container has its allowSidebarBackdropControl property set to true.
closeOnClickBackdropbooleanfalseWhether clicking on the backdrop of the open sidebar will close it.
closeOnClickOutsidebooleanfalseWhether clicking outside of the open sidebar will close it.
keyClosebooleanfalseClose the sidebar when a keyboard button is pressed.
keyCodenumber27The key code for keyClose.

Outputs

Property nameCallback argumentsDescription
onContentInitCorresponds with ngAfterContentInit lifecycle event of the sidebar component.
openedChangeopened: booleanEmitted when opened is modified. This allows for you to do "two-way binding" (i.e. [(opened)]).
onOpenStartEmitted when the sidebar is opening.
onOpenedEmitted when the sidebar is opened.
onCloseStartEmitted when the sidebar is closing.
onClosedEmitted when the sidebar is closed.
onTransitionEndEmitted when the animation for opening or closing ends.
onModeChangemode: stringEmitted when mode is changed.
onPositionChangeposition: stringEmitted when position is changed.

Modes

over

This is the default mode. The sidebar slides in over the page contents.

push

The page contents is pushed to make space for the sidebar.

slide

The entire page slides over to show the sidebar. Note that this only works if you have one sidebar open at a time.

9.4.3

2 years ago

9.4.2

4 years ago

9.4.1

4 years ago

9.4.0

4 years ago

9.3.0

4 years ago

9.2.1

4 years ago

9.2.0

4 years ago

9.1.1

5 years ago

9.1.0

5 years ago

9.0.0

5 years ago

8.1.1

5 years ago

8.1.0

5 years ago

8.0.0

6 years ago

7.3.0

6 years ago

7.2.1

6 years ago

7.2.0

6 years ago

7.1.0

6 years ago

7.0.1

6 years ago

6.0.5

6 years ago

6.0.4

7 years ago

6.0.3

7 years ago

6.0.2

7 years ago

6.0.1

7 years ago

6.0.0

7 years ago

5.1.1

7 years ago

5.1.0

7 years ago

5.0.4

7 years ago

5.0.3

7 years ago

5.0.2

7 years ago

5.0.1

7 years ago

5.0.0

7 years ago

4.2.3

7 years ago

4.2.2

7 years ago

4.2.1

7 years ago

4.2.0

7 years ago

4.1.1

7 years ago

4.1.0

7 years ago

4.0.0

7 years ago

3.6.0

7 years ago

3.5.0

7 years ago

3.4.3

7 years ago

3.4.2

7 years ago

3.4.1

7 years ago

3.4.0

7 years ago

3.3.1

7 years ago

3.3.0

7 years ago

3.2.2

7 years ago

3.2.1

7 years ago

3.2.0

7 years ago

3.1.0

7 years ago

3.0.0

7 years ago

2.0.0

7 years ago