ドラッグ可能な要素であるコンポーネントを作成しました。
@Component(
selector: 'draggable-component',
styles: const ['.element-to-drag {background-color: yellow; border: 1px solid blue; height: 50px; width: 50px;}'],
template: '''
<div class="element-to-drag"
draggable="true"
(dragstart)="onDragStart(\$event)"
(dragend)="onDragEnd(\$event)">
</div>''')
class DraggableComponent {
void onDragStart(MouseEvent e) {
print('onDragStart');
}
void onDragEnd(MouseEvent e) {
print('onDragEnd');
}
}
単一の要素として使用すると、ドラッグ開始イベントが発生し、ドロップゾーンにドラッグされる可能性があります。
プリミティブ リスト (数値) の ngFor を使用して作成すると、すべての要素でドラッグ開始イベントが発生し、ドロップ ゾーンにドラッグされる可能性があります。
しかし、オブジェクトリストのngForを使用して作成すると、すべての要素がドラッグ開始イベントを発生させますが、ドロップゾーンにドラッグできませんでした(ドラッグされません) 。
次に例を示します。
@Component(
selector: 'my-app',
directives: const [DraggableComponent, NgFor],
styles: const ['.container {border: 1px solid red;; height: 100px; width: 100px;}'],
template: '''
<div>
<div class="container"></div>
<h3>Single</h3>
<draggable-component></draggable-component>
<h3>Primitives</h3>
<draggable-component *ngFor="#example of examplesPrimitives"></draggable-component>
<h3>Objects</h3>
<draggable-component *ngFor="#example of examples"></draggable-component>
</div>
''')
class AppComponent {
get examples => [
{"name": 1},
{"name": 2},
{"name": 3},
{"name": 4} ];
get examplesPrimitives => [ 1,2,3,4,5];
}
オブジェクトのバインディングをドラッグ可能にするにはどうすればよいですか?