Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[performance] Weird behavior (zone related?) #719

Closed
manekinekko opened this issue Jun 18, 2016 · 3 comments
Closed

[performance] Weird behavior (zone related?) #719

manekinekko opened this issue Jun 18, 2016 · 3 comments
Assignees
Labels
perf This issue is related to performance

Comments

@manekinekko
Copy link

Bug, feature request, or proposal:

Bug

What is the expected behavior?

The user should check/uncheck the checkboxes without any issue.
There should be no performance issues.

What is the current behavior?

App freezes because zone.js seems to enter in an infinite loop (see screenshot below)

What are the steps to reproduce?

Here http://plnkr.co/edit/VWoFD33JedmlFWjIOpIN?p=preview

What is the use-case or motivation for changing an existing behavior?

Which versions of Angular, Material, OS, browsers are affected?

  "dependencies": {
    "@angular/common": "2.0.0-rc.1",
    "@angular/compiler": "2.0.0-rc.1",
    "@angular/core": "2.0.0-rc.1",
    "@angular/http": "2.0.0-rc.1",
    "@angular/router": "3.0.0-alpha.3",
    "@angular/platform-browser": "2.0.0-rc.1",
    "@angular/platform-browser-dynamic": "2.0.0-rc.1",
    "@angular/router-deprecated": "2.0.0-rc.1",
    "@angular2-material/button": "2.0.0-alpha.5-2",
    "@angular2-material/card": "2.0.0-alpha.5-2",
    "@angular2-material/checkbox": "2.0.0-alpha.5-2",
    "@angular2-material/core": "2.0.0-alpha.5-2",
    "@angular2-material/grid-list": "2.0.0-alpha.5-2",
    "@angular2-material/icon": "2.0.0-alpha.5-2",
    "@angular2-material/list": "2.0.0-alpha.5-2",
    "@angular2-material/sidenav": "2.0.0-alpha.5-2",
    "@angular2-material/toolbar": "2.0.0-alpha.5-2",
    "@angular2-material/progress-circle": "2.0.0-alpha.5-2",
    "angularfire2": "^2.0.0-beta.1",
    "es6-shim": "^0.35.0",
    "firebase": "^3.0.3",
    "es6-shim": "0.35.1",
    "reflect-metadata": "0.1.3",
    "rxjs": "5.0.0-beta.6",
    "systemjs": "0.19.26",
    "zone.js": "0.6.12"
  }

Is there anything else we should know?

image

The app is frozen and unusable.
image

@manekinekko
Copy link
Author

This issue seems to come from this:

<md-checkbox [checked]="level.selected" (change)="level.selected = $event">

changing it to this, fixes the infinite loop:

<md-checkbox [(checked)]="level.selected">

@jelbourn jelbourn added the perf This issue is related to performance label Jun 20, 2016
@hansl hansl self-assigned this Jun 22, 2016
@hansl
Copy link
Contributor

hansl commented Jun 22, 2016

In your case, this works as expected:

<md-checkbox [checked]="level.selected" (change)="level.selected = $event.checked">

Note that the $event object has been changed for checkbox and is now of type MdCheckboxChange (see here). Setting it as an object results in always being true (and will result in an invalid type assignment with the offline compiler).

Closing this as non-repro.

@hansl hansl closed this as completed Jun 22, 2016
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 5, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
perf This issue is related to performance
Projects
None yet
Development

No branches or pull requests

3 participants