Merge pull request #4946 from GabrielInTheWorld/fixDragHandler
Adds a handler for 'sorting-tree's
This commit is contained in:
commit
249c975a46
@ -6,42 +6,42 @@
|
|||||||
[cdkDropListData]="osTreeData"
|
[cdkDropListData]="osTreeData"
|
||||||
(cdkDropListSorted)="sortItems($event)"
|
(cdkDropListSorted)="sortItems($event)"
|
||||||
>
|
>
|
||||||
|
|
||||||
<cdk-tree-node
|
<cdk-tree-node
|
||||||
cdkDrag
|
cdkDrag
|
||||||
[cdkDragData]="node"
|
[cdkDragData]="node"
|
||||||
(cdkDragDropped)="onDrop(node)"
|
(cdkDragDropped)="onDrop(node)"
|
||||||
(mousedown)="mouseDown($event)"
|
(mousedown)="mouseDown($event)"
|
||||||
(mouseup)="mouseUp($event)"
|
(mouseup)="mouseUp()"
|
||||||
|
(touchstart)="touchStart($event)"
|
||||||
|
(touchend)="mouseUp()"
|
||||||
(cdkDragStarted)="startsDrag($event)"
|
(cdkDragStarted)="startsDrag($event)"
|
||||||
(cdkDragMoved)="moveItem($event)"
|
(cdkDragMoved)="moveItem($event)"
|
||||||
*cdkTreeNodeDef="let node"
|
*cdkTreeNodeDef="let node"
|
||||||
[style.display]="shouldRender(node) ? 'flex' : 'none'"
|
[style.display]="shouldRender(node) ? 'flex' : 'none'"
|
||||||
[style.padding-left]="node.level * 40 + 'px'">
|
[style.padding-left]="node.level * 40 + 'px'"
|
||||||
|
>
|
||||||
<div class="backgroundColorLight">
|
<div class="backgroundColorLight">
|
||||||
<button
|
<span cdkDragHandle>
|
||||||
*ngIf="!hasChild"
|
<mat-icon>drag_indicator</mat-icon>
|
||||||
mat-icon-button
|
</span>
|
||||||
disabled></button>
|
<button *ngIf="!hasChild" mat-icon-button disabled></button>
|
||||||
<button
|
<button
|
||||||
*ngIf="hasChild"
|
*ngIf="hasChild"
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
cdkTreeNodeToggle
|
cdkTreeNodeToggle
|
||||||
[attr.aria-label]="'toggle ' + node.filename"
|
[attr.aria-label]="'toggle ' + node.filename"
|
||||||
(click)="handleClick(node, true)"
|
(click)="handleClick(node, true)"
|
||||||
[style.visibility]="node.expandable ? 'visible' : 'hidden'">
|
[style.visibility]="node.expandable ? 'visible' : 'hidden'"
|
||||||
|
>
|
||||||
<mat-icon
|
<mat-icon
|
||||||
[style.transform]="node.isExpanded ? 'rotate(90deg)' : 'rotate(0deg)'"
|
[style.transform]="node.isExpanded ? 'rotate(90deg)' : 'rotate(0deg)'"
|
||||||
class="mat-icon-rtl-mirror">
|
class="mat-icon-rtl-mirror"
|
||||||
|
>
|
||||||
chevron_right
|
chevron_right
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<ng-container
|
<ng-container [ngTemplateOutlet]="innerNode" [ngTemplateOutletContext]="{ item: node.item }"></ng-container>
|
||||||
[ngTemplateOutlet]="innerNode"
|
|
||||||
[ngTemplateOutletContext]="{item: node.item}"></ng-container>
|
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div [style.margin-left]="placeholderLevel * 40 + 'px'" *cdkDragPlaceholder></div>
|
||||||
[style.margin-left]="placeholderLevel * 40 + 'px'"
|
|
||||||
*cdkDragPlaceholder></div>
|
|
||||||
</cdk-tree-node>
|
</cdk-tree-node>
|
||||||
</cdk-tree>
|
</cdk-tree>
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
margin: 3px 0;
|
margin: 3px 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
div {
|
div {
|
||||||
display: inherit;
|
display: inherit;
|
||||||
@ -21,13 +20,22 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Overwrite the handler
|
||||||
|
.cdk-drag-handle {
|
||||||
|
display: flex;
|
||||||
|
cursor: move;
|
||||||
|
width: 50px;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
// Overwrite the preview
|
// Overwrite the preview
|
||||||
.cdk-drag-preview {
|
.cdk-drag-preview {
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
background-color: unset !important;
|
background-color: unset !important;
|
||||||
border-radius: 6px !important;
|
border-radius: 6px !important;
|
||||||
|
|
||||||
div {
|
div.backgroundColorLight {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: mat-color($background, background);
|
background-color: mat-color($background, background);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
@ -480,22 +480,38 @@ export class SortingTreeComponent<T extends Identifiable & Displayable> implemen
|
|||||||
this.calcNextPosition();
|
this.calcNextPosition();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the `this.pointer` with the x- and y-coordinates,
|
||||||
|
* where the user starts the dragging.
|
||||||
|
*
|
||||||
|
* @param x The value of the x-position on screen.
|
||||||
|
* @param y The value of the y-position on screen.
|
||||||
|
*/
|
||||||
|
private initPointer(x: number, y: number): void {
|
||||||
|
this.pointer = {
|
||||||
|
position: {
|
||||||
|
x,
|
||||||
|
y
|
||||||
|
},
|
||||||
|
currentPosition: {
|
||||||
|
x,
|
||||||
|
y
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function to set the cursor position immediately if the user starts dragging a node.
|
* Function to set the cursor position immediately if the user starts dragging a node.
|
||||||
*
|
*
|
||||||
* @param event The mouse event which emits the event.
|
* @param event The mouse event which emits the event.
|
||||||
*/
|
*/
|
||||||
public mouseDown(event: MouseEvent): void {
|
public mouseDown(event: MouseEvent): void {
|
||||||
this.pointer = {
|
this.initPointer(event.x, event.y);
|
||||||
position: {
|
|
||||||
x: event.x,
|
|
||||||
y: event.y
|
|
||||||
},
|
|
||||||
currentPosition: {
|
|
||||||
x: event.x,
|
|
||||||
y: event.y
|
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
public touchStart(event: TouchEvent): void {
|
||||||
|
const { clientX, clientY }: { clientX: number; clientY: number } = event.touches[0];
|
||||||
|
this.initPointer(Math.round(clientX), Math.round(clientY));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -551,16 +567,22 @@ export class SortingTreeComponent<T extends Identifiable & Displayable> implemen
|
|||||||
*/
|
*/
|
||||||
private getDirection(): Movement {
|
private getDirection(): Movement {
|
||||||
const movement = new Movement();
|
const movement = new Movement();
|
||||||
movement.verticalMove =
|
if (this.nextNode.startPosition < this.nextNode.nextPosition) {
|
||||||
this.nextNode.startPosition < this.nextNode.nextPosition
|
movement.verticalMove = Direction.DOWNWARDS;
|
||||||
? Direction.DOWNWARDS
|
} else if (this.nextNode.startPosition > this.nextNode.nextPosition) {
|
||||||
: this.nextNode.startPosition > this.nextNode.nextPosition
|
movement.verticalMove = Direction.UPWARDS;
|
||||||
? Direction.UPWARDS
|
} else {
|
||||||
: Direction.NOWAY;
|
movement.verticalMove = Direction.NOWAY;
|
||||||
|
}
|
||||||
const deltaX = this.pointer.currentPosition.x - this.pointer.position.x;
|
const deltaX = this.pointer.currentPosition.x - this.pointer.position.x;
|
||||||
movement.steps = Math.trunc(deltaX / 40);
|
movement.steps = Math.trunc(deltaX / 40);
|
||||||
movement.horizontalMove =
|
if (movement.steps > 0) {
|
||||||
movement.steps > 0 ? Direction.RIGHT : movement.steps < 0 ? Direction.LEFT : Direction.NOWAY;
|
movement.horizontalMove = Direction.RIGHT;
|
||||||
|
} else if (movement.steps < 0) {
|
||||||
|
movement.horizontalMove = Direction.LEFT;
|
||||||
|
} else {
|
||||||
|
movement.horizontalMove = Direction.NOWAY;
|
||||||
|
}
|
||||||
return movement;
|
return movement;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user