Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.12 KB

context-menu.directive.md

File metadata and controls

56 lines (41 loc) · 1.12 KB
Added Status Last reviewed
v2.0.0
Active
2018-04-10

Context Menu directive

Adds a context menu to a component.

Basic Usage

<my-component [context-menu]="menuItems"></my-component>
<context-menu-holder></context-menu-holder>
@Component({
    selector: 'my-component'
})
export class MyComponent implements OnInit {

    menuItems: any[];

    constructor() {
        this.menuItems = [
            { title: 'Item 1', subject: new Subject() },
            { title: 'Item 2', subject: new Subject() },
            { title: 'Item 3', subject: new Subject() }
        ];
    }

    ngOnInit() {
        this.menuItems.forEach(l => l.subject.subscribe(item => this.commandCallback(item)));
    }

    commandCallback(item) {
        alert(`Executing ${item.title} command.`);
    }

}

Class members

Properties

Name Type Default value Description
enabled boolean false Is the menu enabled?
links any[] Items for the menu.

Details

See Demo Shell or DocumentList implementation for more details and use cases.