Giter Club home page Giter Club logo

Comments (21)

buschtoens avatar buschtoens commented on June 19, 2024 1

Glad that you like it :)

In fact it does cover error states as well. I've updated the docs to reflect that.

{{#lazy-mount engineName model=optionalDataForTheEngine as |engine|}}
  {{#if engine.isLoading}}
    🕑 The engine is loading...
  {{else if engine.error}}
    😨 There was an error loading the engine:
    <code>{{engine.error}}</code>
  {{/if}}
{{/lazy-mount}}

from ember-asset-loader.

rwjblue avatar rwjblue commented on June 19, 2024

/cc @mike183 @trentmwillis

from ember-asset-loader.

mike183 avatar mike183 commented on June 19, 2024

I had always figured that this helper would live in the ember-engines repo itself, and ember-asset-loader would simply provide some helper methods (i.e. isLoaded()) in order to simplify its implementation.

I can't imagine the helper being very useful outside of ember-engines, though maybe someone else can think of a use case in which it would be?

from ember-asset-loader.

rwjblue avatar rwjblue commented on June 19, 2024

I think my thought was that this addon and its main service is what is responsible for loading bundles, so it is the thing that should provide the helper. Though it's helper should likely be load-asset-bundle or something, because it's not 100% engine focused...

Am I on the wrong track?

from ember-asset-loader.

mike183 avatar mike183 commented on June 19, 2024

Wouldn't the helper also need to actually register the engine after it had finished downloading the bundle?

from ember-asset-loader.

rwjblue avatar rwjblue commented on June 19, 2024

Hmm. What do you mean? Loading the bundle would mean that the modules that the {{mount keyword looks for would be present, right?

Note: I haven't ran the code I pasted above in the description. So perhaps I'm missing something obvious...

from ember-asset-loader.

mike183 avatar mike183 commented on June 19, 2024

Its entirely possible that I am actually missing something obvious, but I would have thought that the helper would need to register the engine with the application after successfully downloading its bundle.

So essentially, the call to loadBundle() would look something like:

// Load un-registered engine
this.get("assetLoader").loadBundle(engineName).then(() => {
  // Get engine
  const engine = window.require(`${engineName}/engine`).default;
  // Register engine with application
  owner.register(`engine:${engineName}`, engine);
  // Update this._engineName
  this._engineName = engineName;
  // Trigger recompution of helper
  this.recompute();
});

from ember-asset-loader.

rwjblue avatar rwjblue commented on June 19, 2024

Ya, I just think that manual registration shouldn't be needed. Once the bundle is loaded, the engine-name/engine module will be present in the module registry so that when the owner.lookup('engine:engine-name-here') happens, this code in the resolver would return the proper value.

from ember-asset-loader.

mike183 avatar mike183 commented on June 19, 2024

Ah I see, if thats the case and it works then keeping the helper in the asset-loader repo sounds good to me.

from ember-asset-loader.

trentmwillis avatar trentmwillis commented on June 19, 2024

Overall, this seems like a reasonable addition to this addon.

Though it's helper should likely be load-asset-bundle or something, because it's not 100% engine focused...

Agreed. Either load-bundle or load-asset-bundle seems good for consistency with the terminology used elsewhere by this addon.

Once the bundle is loaded, the engine-name/engine module will be present in the module registry so that when the owner.lookup('engine:engine-name-here') happens, this code in the resolver would return the proper value.

This is correct, and essentially what we do for routable engines.

from ember-asset-loader.

scalvert avatar scalvert commented on June 19, 2024

Yep, this sounds good.

from ember-asset-loader.

buschtoens avatar buschtoens commented on June 19, 2024

The most recent Ember.js times newsletter had a reference to this, that reminded me about this addon I once wrote: ember-lazy-mount

I guess this is not really relevant, since it uses a component instead of a template helper, but maybe you still find it useful. ✌️

from ember-asset-loader.

GCheung55 avatar GCheung55 commented on June 19, 2024

@buschtoens your addon covers an important usecase - loading state. Probably should also cover error state?

How would that be handled in the load-bundle or load-asset-bundle helper?

from ember-asset-loader.

villander avatar villander commented on June 19, 2024

@rwjblue @dgeb @stefanpenner what you think about make ember-lazy-mount as our solution to lazy loading route-less engines?

makes sense when looking at engines RFC

from ember-asset-loader.

buschtoens avatar buschtoens commented on June 19, 2024

I know this might come up, so I'll address it right away: I have no problem with stripping out ember-concurrency(-decorators) and ember-decorators to reduce the bundle size for consumers that don't use these addons.

from ember-asset-loader.

villander avatar villander commented on June 19, 2024

yup @buschtoens and as asset-loader was written in ES6, we would have to remove the typescript as well.

from ember-asset-loader.

buschtoens avatar buschtoens commented on June 19, 2024

I've defactored ember-lazy-mount in buschtoens/ember-lazy-mount#4 to not use any dependencies except babel and htmlbars in order to decrease bundle size and also reverted back to the Ember Object Model, to make it possible to merge this code into ember-asset-loader and / or ember-engines.

from ember-asset-loader.

villander avatar villander commented on June 19, 2024

Now that we know that Lazy Loading on ember-engines will work more friendly replacing ember-asset-loader with embroider. I think that we can make ember-asset-loader complete, following the RFC and Roadmap 1.0 and add ember-lazy-mount solution here.

what you think guys?

cc: @rwjblue @dgeb @stefanpenner

from ember-asset-loader.

lifeart avatar lifeart commented on June 19, 2024

(: >>> [🥇 UP 🥇] <<< :)

from ember-asset-loader.

rwjblue avatar rwjblue commented on June 19, 2024

Someone just needs to do the work 🤷‍♂️

from ember-asset-loader.

villander avatar villander commented on June 19, 2024

thanks @rwjblue

@buschtoens can you open a pull request on ember-engines adding your solution in lazy-mount please?

It's your merit buddy!

from ember-asset-loader.

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.