Skip to content

Commit 67a4bd7

Browse files
committed
fix(regression): fix incorrect use of ng for on a map
1 parent ff01dad commit 67a4bd7

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

projects/interacto-angular/src/lib/components/tree-history/tree-history.component.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ <h2>HISTORY</h2>
55
</div>
66

77
<div class="tree" oncontextmenu="return false;">
8-
@for (position of history.getPositions() ; track position) {
8+
@for (position of history.getPositions() | keyvalue ; track position.key) {
99
<div #d class="tree-node-history"
10-
[ngStyle]="{left: getLeft(position[1]) + 'px', top: getTop(position[0]) + 'px'}"
11-
[ngClass]="history.currentNode.id === position[0] ? 'current-node' : ''"
12-
[ioClick] (clickBinder)="clickBinders($event, position[0])"
13-
[ioTaps] (tapsBinder)="tapsBinder($event, position[0])" [nbTaps]="1"
14-
[ioLongTouch] (longTouchBinder)="longTouchBinder($event, position[0])">
15-
{{undoButtonSnapshot(history.undoableNodes[position[0]], d)}}
10+
[ngStyle]="{left: getLeft(position.value) + 'px', top: getTop(position.key) + 'px'}"
11+
[ngClass]="history.currentNode.id === position.key ? 'current-node' : ''"
12+
[ioClick] (clickBinder)="clickBinders($event, position.key)"
13+
[ioTaps] (tapsBinder)="tapsBinder($event, position.key)" [nbTaps]="1"
14+
[ioLongTouch] (longTouchBinder)="longTouchBinder($event, position.key)">
15+
{{undoButtonSnapshot(history.undoableNodes[position.key], d)}}
1616
</div>
1717
}
1818
</div>

projects/interacto-angular/src/lib/components/tree-history/tree-history.component.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {NgClass, NgFor, NgStyle} from '@angular/common';
1+
import {KeyValuePipe, NgClass, NgFor, NgStyle} from '@angular/common';
22
import {
33
AfterViewInit,
44
ChangeDetectionStrategy,
@@ -28,6 +28,7 @@ import {LongTouchBinderDirective} from '../../directives/long-touch-binder.direc
2828
NgClass,
2929
NgStyle,
3030
NgFor,
31+
KeyValuePipe,
3132
UndoBinderDirective,
3233
RedoBinderDirective,
3334
ClickBinderDirective,
@@ -159,14 +160,21 @@ export class TreeHistoryComponent implements OnDestroy, AfterViewInit {
159160
}
160161
}
161162

163+
console.log("snap")
164+
console.log(node?.id);
165+
166+
162167
const snapshot = node === undefined ? this.cacheRoot : this.cache[node.id];
163168
const txt = node === undefined ? "Root" : node.undoable.getUndoName();
164169

170+
console.log(snapshot);
171+
165172
if (snapshot === undefined) {
166173
return txt;
167174
}
168175

169176
if (snapshot instanceof Promise) {
177+
console.log("promise")
170178
void snapshot.then((res: unknown) => {
171179
if (node !== undefined) {
172180
this.cache[node.id] = res;

0 commit comments

Comments
 (0)