forked from angulardart/angular
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Which ng* package(s) are the source of the bug?
ngdart
Which operating system(s) does this bug appear on?
Windows
Which browser(s) does this bug appear on?
Chrome 117.0.5938.132 64 bits
Is this a regression?
No
Description
I'm using allowInterop to interact with JavaScript code, more specifically I'm creating an AngularDart application that uses Fabric.js to create a Badge Creator (Professional Employee ID Card), so I'm having a problem because it seems that AngularDart doesn't detect changes in variables What do I change inside allowInterop
Please provide the steps to reproduce the bug
void initFabric() {
canvas = Canvas(canvasEl);
stage = Rect(
jsify({
'left':
(canvas.width / 2) - ((currentWidth * (stage?.scaleX ?? 1)) / 2),
'top': 50,
'width': currentWidth,
'height': currentHeight,
'fill': '#fff',
'lockMovementY': true,
'lockMovementX': true,
'selectable': false,
'hoverCursor': 'default',
}),
);
canvas.add(stage);
num zoom = 1;
canvas.on('mouse:wheel', allowInterop((opt) {
final deltaY = opt.e.deltaY;
final mousePoint = canvas.getPointer(opt.e, true);
zoom = canvas.getZoom();
zoom *= pow(0.999, deltaY);
if (zoom > 20) zoom = 20;
if (zoom < 0.01) zoom = 0.01;
canvas.zoomToPoint(Point(mousePoint.x, mousePoint.y), zoom);
opt.e.preventDefault();
opt.e.stopPropagation();
}));
canvas.on('selection:created', allowInterop((obj) {
//change detection doesn't work
onSelectObject(obj);
}));
canvas.on('selection:updated', allowInterop((obj) {
//change detection doesn't work
onSelectObject(obj);
}));
canvas.on('selection:cleared', allowInterop((event) {
//change detection doesn't work
onUnSelectObject(event);
}));
}
void onUnSelectObject(event) {
//change current width of stage (valid drawing area)
//change detection doesn't work
currentWidth = stage!.getScaledWidth();
currentHeight = stage!.getScaledHeight();
}
void onSelectObject(event) {
//change detection doesn't work
final activeObj = canvas.getActiveObject();
final scaledWidth = activeObj.getScaledWidth();
final scaledHeight = activeObj.getScaledHeight();
currentWidth = scaledWidth;
currentHeight = scaledHeight;
}Please provide the exception or error you saw
.
Please provide the dependency environment you discovered this bug in (run dart pub deps -s compact)
Dart SDK version: 3.2.1 (stable) (Wed Nov 22 08:59:13 2023 +0000) on "windows_x64"
Anything else?
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working