Demo
An Angular 2 sidebar component.
Installation
npm install --save ng2-sidebar
Usage
Import the component and add it to the list of directives on your component:
import { Sidebar } from 'ng2-sidebar';
@Component({
selector: 'example',
directives: [Sidebar],
template: `
<ng2-sidebar [(open)]="_open">
<p>Sidebar contents</p>
</ng2-sidebar>
<button (click)="_toggleSidebar()">Toggle sidebar</button>
`
})
export class MyComponent {
private _open: boolean = false;
private _toggleSidebar() {
this._open = !this._open;
}
}
A directive is also provided to easily close the sidebar by clicking something inside it:
import { Sidebar, CloseSidebar } from 'ng2-sidebar';
@Component({
selector: 'example',
directives: [Sidebar, CloseSidebar],
template: `
<ng2-sidebar [(open)]="_open">
<a closeSidebar>Closes the sidebar</a>
</ng2-sidebar>
`
})
Options
[(open)]="boolean_value"
Boolean input value that controls the visibility of the sidebar. This should be two-way bound in case
the value changes when the sidebar is closed by clicking outside of it when closeOnClickOutside
is
enabled.
Default: false
.
[position]="'left' | 'right' | 'top' | 'bottom'"
String indicating what side of the viewport the sidebar should be docked to. You can also import the
SIDEBAR_POSITION
instead of hardcoding the strings yourself.
Default: 'left'
.
[closeOnClickOutside]="boolean_value"
Boolean input value that controls whether clicking outside of the open sidebar will close it.
Default: false
.
[showOverlay]="boolean_value"
Boolean input value that controls if a translucent black overlay should appear over the page
contents when the sidebar is open.
Default: false
.
[defaultStyles]="boolean_value"
Applies some default styles to the sidebar.
Default: false
.
A string used as an additional class name on the sidebar element.
[overlayClass]="'string_value'"
A string used as an additional class name on the overlay element.
[ariaLabel]="'string_value'"
A string used as the aria-label
attribute on the sidebar.
(onOpen)="func_call()"
An output event, emitted when the sidebar is opened.
(onClose)="func_call()"
An output event, emitted when the sidebar is closed.