Git Product home page Git Product logo

Comments (3)

benzen avatar benzen commented on May 30, 2024

Seams strange, doc state that this is possible to nest dynamic

https://htmlflow.org/features/ see the dynamic views section (would be nice to be able to link to a section and to a specific example)

from htmlflow.

fmcarvalho avatar fmcarvalho commented on May 30, 2024

Good catch! That example is outdated. Put it simply, in those cases we should use .of() nested in the dynamic(). (we have forgotten to update that example).

That is the result of release 3.0 and several optimizations https://github.com/xmlet/HtmlFlow#30-november-2018. Thus the .dynamic() gained a new perspective. To achieve better performance the HTML resulting of the templates resolution is internally cached. In truth that cache should be renamed to something like static denoting that HTML do not change between resolutions. On the other hand, the HTML resulting from dynamic() should be resolved on each render.

Whenever we call dynamic() we stop caching the HTML and when we close that dynamic block with .__() we start caching again the resulting HTML.

So, if we are inside a dynamic block and we call again dynamic it has no effect, because the outer block will be completely computed on render and that includes the inner block too. To avoid misleading we decided to throw that exception if the programmer made a wrong use of dynamic.

Yet, it is useful the chaining ability. So, fir that purpose we added a new .of() that let we chain any Java block, but without any side effect on caching. Thus, if you call of() out of a dynamic it will continue to cache. If you call of() inside a dynamic then it will not cache the resulting HTML.

Thanks,
Miguel

from htmlflow.

brbog avatar brbog commented on May 30, 2024

@fmcarvalho
Thanks for this response! I was abusing nested .dynamic() calls to make the code formatter produce indented code (for readability => helps avoiding bugs).

I got to work around it, but was ready to ditch HtmlFlow. Now with ".of()" I am back to enjoying it ;-).

from htmlflow.

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.