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
0
votes
1 answer

Issue with ember-cp-validation in an ember-engines

As the title say, I have an issue with ember-cp-validations which I think is related to ember-engines. Basically, my issue is that there is no validations in a form for a model that use ember-cp-validations. Here is my model: import Ember from…
maje
  • 424
  • 3
  • 17
0
votes
1 answer

How to use adapter in an ember-engines

as the title says, I have some problems understanding how to use an adapter in an ember-engines. I am currently running my application with ember@2.15, ember-data@2.15 and ember-engines@0.5.14. I already used an adapter in my main application, but…
maje
  • 424
  • 3
  • 17
0
votes
1 answer

Import model from inside ember-engine

I have an Ember.js application with an ember-engine added as an external addon, and both the parent application and the engine share the store. This creates an issue because when fetching a model in a route from the engine, the fact of having the…
Urco
  • 365
  • 3
  • 14
0
votes
1 answer

How to define a route for ember-engine

As the title said, I can't figure out how to define a route for an Ember.js Engines in an Ember.js Application. I tried to follow the tutorial, but I don't understand how the route work. An add-on made with ember-engines cannot be placed in the…
maje
  • 424
  • 3
  • 17
0
votes
1 answer

Update existing model data

Briefly something about our structure. We use Ruby on Rails on the server side with the Trailblazer Framework. On client side Ember and Ember Engines. Now we have the problem that some models are lying in the father, ie the actual Ember app and some…
0
votes
1 answer

Babel ignore equivalent in ember engines?

In a traditional Ember app, I have something along the lines of this in my ember-cli-build.js: //ember-cli-build.js module.exports = function(defaults) { var app = new EmberApp(defaults, { babel: { includePolyfill: true, ignore:…
YnotDraw
  • 435
  • 2
  • 6
  • 19
0
votes
2 answers

Ember PODS structure and Ember engine

Can using the Ember PODS structure cause any issues while integrating with the Ember engine ? What is the recommended structure; PODS or traditional structure ?
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
1
2