angular 4
でコンテキストメニューを作成する方法残念ながら、htmlコンテキストメニューは機能しません。
コンポーネントを作成し、カーソル座標で右クリックして表示したいのですが、どのように実装しますか?
例えば.
<ul>
<li (click)="showContextMenuComponent">example</li>
</ul
すべてのソリューションは非常に複雑でカスタマイズが難しいと感じました。始めたばかりなので、コンポーネントとイベントバインディングだけでこれを解決したかったのです。したがって、My ContextMenuは入力値xとyを持つコンポーネントであり、ParentComponentの上で右クリックすると表示されます:)
だからここにある:
Parent.component.ts
export class parentComponent {
contextmenu = false;
contextmenuX = 0;
contextmenuY = 0;
//activates the menu with the coordinates
onrightClick(event){
this.contextmenuX=event.clientX
this.contextmenuY=event.clientY
this.contextmenu=true;
}
//disables the menu
disableContextMenu(){
this.contextmenu= false;
}
parent.component.html
<!-- your whole html is wrapped in a div so anywhere you click you disable contextmenu,
also the div is responsible for suppressing the default browser contextmenu -->
<div (click)="disableContextMenu()" oncontextmenu="return false;">
<!-- this is the usage -->
<ul>
<li (contextmenu)="onrightClick($event)">right click me!</li>
</ul>
<!--you have to write this only once in your component-->
<div *ngIf="contextmenu">
<app-contextmenu [x]="contextmenuX" [y]="contextmenuY"></app-contextmenu>
</div>
</div>
これはコンテキストメニューそのものです。
contextmenu.component.ts
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-contextmenu',
})
export class ContextmenuComponent{
constructor() { }
@Input() x=0;
@Input() y=0;
}
contextmenu.component.html
<div class="contextmenu" [ngStyle]="{'left.px': x, 'top.px': y}">
this is your contextmenu content
</div>
contextmenu.component.css
.contextmenu{
position: absolute;
}
コンポーネントで通常どおりに独自のアニメーション、CSSスタイリングなどを適用できるようになりました。これが役立つことを願っています:)楽しんでください!
ngx-contextmen libraryを試すことができます。デモを確認してください こちら
angularバージョン4の場合、ngx-contextmenu @ 1.3.5の使用を検討してください
ser9132(上記参照)の優れたソリューションをさらに構築すると、コンテキストメニューを動的に構築できます。そのようにして、汎用コンテキストメニューコンポーネントを再利用できます。
parent.component.html:リスト項目を右クリックします。最後に、選択したメニュー項目を処理できます。
<div class="row mt-3 ml-1">
<div class="col-11 col-sm-11 col-md-10" (click)="disableContextMenu()" oncontextmenu="return false;">
<div class="geocache-list-height">
<table id="geocaches-list" class="table">
<tbody>
<tr *ngFor="let geocache of mygeocaches" class="d-flex">
...
<td class="col-1" (contextmenu)="onrightClick($event, geocache)"><i class="icon-Ellipsis-vert"></i></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--you have to write this only once in your component-->
<div *ngIf="contextmenu==true">
<app-contextmenu [x]="contextmenuX" [y]="contextmenuY" [menuitems]="showMenuOptions()" (menuItemSelected)="handleMenuSelection($event)"></app-contextmenu>
</div>
parent.component.ts:親はメニュー項目を決定し、選択されたメニュー項目に作用します。コンテキストメニューが画面から落ちないように、画面に配置し始めました。たぶんこれには改善が必要です-どういたしまして。
@Component({
selector: 'app-geocache-list',
templateUrl: './parent.component.html',
styleUrls: ['./parent.component.css']
})
export class ParentComponent implements OnInit {
errorMessage = '';
contextmenu = false;
contextmenuX = 0;
contextmenuY = 0;
contextMenuForGeocache: MyGeocache;
innerWidth: any;
innerHeight: any;
constructor(...) { }
ngOnInit() {
// for determining where the put the context menu -- on the screen ;-)
this.innerWidth = window.innerWidth;
this.innerHeight = window.innerHeight;
...
}
}
showMenuOptions() {
return 'Delete;Navigate;Edit;';
}
onrightClick(event, geocache: MyGeocache ) {
this.contextmenuX = event.clientX - 100;
this.contextmenuY = event.clientY;
this.contextmenu = true;
const menuHeight = this.showMenuOptions().split(';').length;
const maxY = this.innerHeight - ( menuHeight * 30);
if ( this.contextmenuY > maxY ) {
this.contextmenuY = maxY;
}
}
// disables the menu
disableContextMenu() {
this.contextmenu = false;
}
handleMenuSelection( menuselection: string) {
if ( menuselection === 'Delete') {
...
} else if ( menuselection === 'Navigate') {
...
}
}
}
contextmenu.component.html:メニュー項目をクリックすると、選択を処理するために親に伝達されます。
<div class="contextmenu" [ngStyle]="{'left.px': x, 'top.px': y}">
<ul class="list-group">
<li class="list-group-item" *ngFor="let menuItem of theMenuItems">
<span (click)="outputSelectedMenuItem( menuItem)">{{ menuItem }}</span>
</li>
</ul>
</div>
contextmenu.component.ts:
@Component({
selector: 'app-contextmenu',
templateUrl: './contextmenu.component.html',
styleUrls: ['./contextmenu.component.css']
})
export class ContextmenuComponent implements OnInit {
constructor() { }
@Input() x = 0;
@Input() y = 0;
@Input() menuitems = '';
theMenuItems = [];
@Output() menuItemSelected = new EventEmitter();
ngOnInit() {
// Build the menu items
this.theMenuItems = this.menuitems.split(';');
}
outputSelectedMenuItem( menuitem: string) {
this.menuItemSelected.emit(menuitem);
}
}
私は、任意のコンポーネントが独自のコンポーネントを構築できるコンポーネントからカスタムコンテキストメニューを作成しました。
こちらがリンクです