Code Monkey home page Code Monkey logo

Comments (3)

Starofall avatar Starofall commented on September 13, 2024 1

I tested it on my project with and without and reduced change detection from 572 to 42 just by adding the code above. Angular detects all changes through zone.js even tought you use angular code, except you run the code in this (this.zone.runOutsideAngular) context.

A nice way to debug this is the following ng component I use for performance tuning:

import {Component, NgZone} from '@angular/core';

@Component({
    selector: 'debug-change-detection',
    template: '<p class="number">{{check()}}</p>',
    styles: [`
        :host {
            position: absolute;
            left: 0;
            bottom: 0;
            display: block;
        }

        .number {
            display: block;
            font-size: 40px;
        }
    `]
})

export class DebugChangeDetectionComponent {

    count = 0;

    constructor(private zone: NgZone) {
    }

    check() {
        this.zone.runOutsideAngular(() => {
                setTimeout(() => {
                    this.count = this.count + 1;
                }, 0);
            }
        );
        return this.count;
    }
}

You can also just use a {{printToConsole()}} function somewhere on the page to see the difference.

from ngx-countup.

inorganik avatar inorganik commented on September 13, 2024

Thanks for bringing this to my attention. So that is occurring even though the Angular directive is just providing an element reference and calling the countUp methods? CountUp itself uses requestAnimationFrame. Do you have a way to show that each frame triggers change detection?

from ngx-countup.

inorganik avatar inorganik commented on September 13, 2024

Wow, that's super helpful, thanks! I pushed a new version with these changes. 7.2.0

from ngx-countup.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.