Giter VIP home page Giter VIP logo

Comments (2)

holroy avatar holroy commented on July 19, 2024

I'm not sure on this, but a true atomic operation I don't believe is possible. And furthermore I believe a long as you replace parts of the DOM a re-rendering will occur, which will cause flickering.

This of course is more noticeable the larger the block is that gets replaced. So it might be an option to replace only bits and pieces which actually changes, but that would be nearly impossible to code.

But I might be wrong in this subject, as there is loads of stuff happening behind the stages in this context.

from obsidian-dataview.

rtmigo avatar rtmigo commented on July 19, 2024

I believe, all elements on web-page are fully rendered at the moment they added. It doesn't matter if we add a single element, or add or a subtree of 10000 elements, in both cases elements will get their size and position once, at the same time. They will never change (or flicker), until the DOM get new external updates.

These updates may me programmatic (by our JavaScript), or caused by new data arriving to elements (such as img getting first portion of image from network).

Replacing element by same sized element will never cause jumping of elements below it, because the elements below remain their positions or sizes and have no reason to move.

No elements will flicker, until we help them to flicker (by adding empty/incomplete frames). Normally rendered elements are just replace each other. Even if the page gets huge updates, it may cause freezes, but hardly flickering.

So it's actually possible to make updates "atomic" from our side, expecting the browser under the hood also works well.

from obsidian-dataview.

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.