Questions tagged [ember-engines]

An Ember Engine represents a set of functionality and user experiences that could logically be considered an application. However, they differ from normal Ember applications in that they are intended to be composed within a parent application in order to create a single, cohesive user experience.

22 questions
7
votes
1 answer

Ember engines and Ember simple Auth

I am implementing ember-engine in my application. I am using ember-simple-auth addon for authentication. It works well with main application routes. I extend the protected routes with mixin provided by addon. // app/routes/protected.js import…
murli2308
  • 2,976
  • 4
  • 26
  • 47
4
votes
1 answer

What is the developer flow for ember-engines?

I am just beginning to look into Ember.js engines. One thing that stands out is that for every change I make in the engine code I need to re-install it into the host application. There is no live reload, rebuild or any of this. Is there a way to…
user156888
3
votes
1 answer

How to pre load ember engines?

Am using ember-engines in my project, After user lands in host ember application, I want my other ember engines to preload (say after 10 seconds), so that when user navigates to other tabs, there wont be any lag in UI.. i dont want to disable…
Praveen Kumar
  • 946
  • 3
  • 10
  • 29
2
votes
3 answers

How to setup ember engines?

I've created a standalone routable engine with ember-engines 0.4.0, ember-cli 2.10.0. I get this error if I call the engines index route (/thingy/): Assertion Failed: Asset manifest does not list any available bundles. Consuming App…
phortx
  • 849
  • 5
  • 21
2
votes
1 answer

how to use in-repo-addons in the ember-engines?

I have created and ember in-repo-addon. Let's say say-hello. After that I created ember-eninge. Let's say users-engine. In may main application I can directly use the addon as //application.hbs {{say-hello}} How to use it in the users-engine…
murli2308
  • 2,976
  • 4
  • 26
  • 47
2
votes
3 answers

control style of div-tag inserted by the ember engine

I want my ember app to fill the height of the viewport. It doesn't work as expected because ember puts in a div that I cannot control bewteen the body tag and my first tag in my application.hbs. My application.hbs:
Vilhelm H.
  • 1,315
  • 1
  • 7
  • 15
1
vote
0 answers

How to mount routable ember engine to my consuming app?

I try to mount an engine to my project as per the demo: consuming app: https://github.com/dgeb/ember-engines-demo engine app: https://github.com/dgeb/ember-blog-engine the demo works well. But when I mount the ember-blog-engine to my own consuming…
1
vote
0 answers

Ember difference in naming specified in package.json V/s index.js

For an Ember addon/engine project, what is the difference in the name specified in package.json V/S the one specified in index.js package.json { "name": "parent-my-ui", "version": "1.0.0" } index.js module.exports = EngineAddon.extend({ …
user1297293
  • 96
  • 1
  • 6
1
vote
1 answer

Ember Engine Uncaught Error: Could not find module ember-views/views/select

Created new app with ember new app-name version: 1.13.13 node: 5.5.0 npm: 2.14.10 os: linux x64 After running "ember s" App works proper in browser As per guide at https://github.com/dgeb/ember-engines for running ember engine ran below…
Pradeep Jaiswar
  • 1,785
  • 7
  • 27
  • 48
0
votes
1 answer

Remove meta tag created for ember engine in index.html

I can see meta tag about the config information of the app can be removed from being stored in index.html through this answer. I need the same to be done for my ember-engine. Currently, this is how my index.html looks. It contains the two meta tags:…
0
votes
3 answers

Where and how to specify initializer for an ember engine?

In my application, I have used initializers to inject services to routes, controllers and components. I am trying to use ember engine now. I have shared my application services to my engine, but I need to inject the shared application services to…
0
votes
1 answer

Nested routes in ember engine routes.js?

How to define nested routes in ember routable engine? I can't navigate to beyond 2 trees. Like, For example All posts Post Comments Comment I can access localhost:4200/posts/:postid/ But when I…
0
votes
1 answer

Is this possible to group the in-repo engines under lib folder? Example: lib/group1/engine1...etc

Is this possible to group certain in-repo engines under lib folder? Example: lib/group1/engines lib/group2/engines
JKP
  • 3
  • 3
0
votes
1 answer

Ember Engines Component does not render content

I inherited an ember application and can't figure out how to add a component to an engine. I tried to create the component with: web-app$ ember g component about-profile -ir fs-engine installing component create…
Rick
  • 21
  • 1
0
votes
1 answer

How to always load an ember-engines with Ember.JS

I am currently trying to access my ember-engines wherever I am. I want to have the name of each engines, because I want to display every engines in my main application. The problem here is that I can't find a way to catch there name, because the…
maje
  • 424
  • 3
  • 17
1
2