Giter Club home page Giter Club logo

Comments (6)

thetutlage avatar thetutlage commented on August 10, 2024 1

@nrempel Nope, adding asynchronous support is way more work than it seems.

  1. It will be a breaking change.
  2. Internal loops have to be async friendly.
  3. Add support for async/await keyword within templates.

More than all the work, it is not something I want to add, since async templates are harder to debug.

Also as you said, inlining the css within your controller, or whatever code that renders the view is way to go

from edge.

nrempel avatar nrempel commented on August 10, 2024 1

Ah, ok. That does sounds like more effort than it’s worth.

I will find another way to inline the css.

Thank you!

from edge.

thetutlage avatar thetutlage commented on August 10, 2024

The entire interface of edge is synchronous and hence it is not possible to call async methods inside it.

Also can be share what exactly are you trying to do?

from edge.

nrempel avatar nrempel commented on August 10, 2024

Hi @thetutlage,

I was creating a new global called cssLoad which loads the css from a file and inserts it directly in the html file in a <style> tag instead of creating a <link> tag for it.

I wanted to use await fs.readFile to read the file. Instead, I am now using readFileSync which works fine.

  View.global('cssLoad', function (path) {
    const cssPath = Helpers.publicPath(`${path}.css`)
    const file = fs.readFileSync(cssPath, { encoding: 'utf8' })
    return this.safe(`<style>\n${file}\n</style>`)
  })

from edge.

thetutlage avatar thetutlage commented on August 10, 2024

I am not sure if you really want to do that in production ( for development it's fine ).

Like is there any benefit of inlining the CSS?

from edge.

nrempel avatar nrempel commented on August 10, 2024

from edge.

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.