Best way to replace Mixins
@JonForest wrote: We have a lot of existing code that makes heavy use of mixins - these provide 100s of actions and lifecycle hook functions for controllers, components and routes. Some of these...
View ArticleCan addons use template-only components?
@jelhan wrote: Came across another question related to Octane and addons: Assuming the addon only supports ember >= 3.15 could it use template-only components without requiring...
View ArticleOptimal way to pull API data without the store
@Justin_Proctor wrote: We have many situations were we are pulling in a very large amount of data (like for a HeatMap) or data that we do not want to cache in the store. We have implemented a large...
View ArticleHow to "refresh" the router from child component In Octane
@Murali wrote: In the new Octane version, How do we refer to the current router from the child component. **Router** export default class SomeRouter extends Route { model() { return data; } @action...
View ArticleEmber.js - The Ember Times - Issue No. 130
@ember-blog wrote: Happy New Year, Emberistas! 🐹 This week, we have an Ember Octane Special Edition for you! This is a companion discussion topic for the original entry at...
View ArticleAbort transition in willTransition and Browser Back button
@Myrdhin wrote: Hello everybody I noticed a strange behavior in Ember … I’m trying to cancel a transition in the willTransition hook. For example, I’m on “page2” and I’m from “page1”. When I click on...
View ArticleDescribing the community category: for taxonmy nerds like myself
@efx wrote: How should we describe the community category? I stole the first description from https://users.rust-lang.org/categories. This category is a place to talk about anything related to...
View ArticleHow to pass an action from template controller to Grand child component
@Murali wrote: I am quiet new Ember frame work. I am trying to pass an “action” from the controller to the grandchild component of the current template. But it fails for some reason. Could anyone let...
View ArticleHow to use new version ember addon with old version ember app?
@shout wrote: How to use new version ember addon with old version ember app ? Posts: 2 Participants: 2 Read full topic
View ArticleDifferences between Ember app, addon and child engine
@harimath wrote: We can have different types of Ember projects App (or host app) Addon Engine (or child engine) I wanted to understand the differences between each of them in terms of; Criteria to...
View ArticleEquivalent RouteInfo objects aren't agreeing with each other
@samselikoff wrote: I’m noticing that these two are not equivalent: this.router.currentRoute.parent this.router.currentRoute.parent.parent.child In particular they have different .attributes...
View ArticleEmber.js - The Ember Times - Issue No. 131
@ember-blog wrote: Привет, Эмберисты! Hello, Emberistas! 🐹 Help improve Ember's autotracking and reactivity system 💬, read the new test waiters RFC ⏳, optimize your app with Ember Data 📈, the Russian...
View ArticleHow to add a child component to the main component through javascript in...
@Murali wrote: Hi, I have main component with a button. Whenever this button is clicked I want to instantiate and add a child component to a “div” in the main component . It’s like adding rows on...
View ArticleTypeError: (0 , _emberQunit.start) is not a function
@liamhjmcdermott wrote: Trying to create and run acceptance tests, app uses ember-simple-auth so I need to use ember-qunit. Using the tests route, there is a global error TypeError: (0 ,...
View ArticleMissing /assets/ember.map
@francesconovy wrote: It’s not really a big issue, so I figured I’d just ask this here instead of creating an issue on ember-cli. My ember-cli-build.js looks like this: let isProductionLikeBuild =...
View ArticleIssues with Ember/Rails
@evan wrote: Hey everyone! I’m new to Ember and I’ve enjoyed learning from the tutorial/guides from the main emberjs.com However, when it comes to trying to connect Rails and Ember, I’ve never seemed...
View ArticleEmber-derequire/broccoli-derequire/derequire
@shofmannka wrote: I am using ember-derequire to replace each occurence of ‘define’ and ‘require’ in the compiled js files (app.js, vendor.js). This works fine, but if i build the test environment in...
View ArticleEmber.js - The Ember Times - Issue No. 132
@ember-blog wrote: 👋 Emberistas! 🐹 Get together at EmberConf meetups 🍦, learn how to use RouteInfo.metadata from EmberMap 🧩, try an Octane & JAM sandwich at EmberConf 🏎🥪🍓, monitor Ember app...
View ArticlePossible to know adapter query url inside serializer?
@aepavlick wrote: I have a serializer which needs to know about certain query parameters from the adapters urlForQueryRecord string. But I’m unsure of how to go about making this information...
View ArticleManipulating ember data in component
@Tiago_Costa wrote: Hi everyone! I’m learning ember (v3.15) and I’ve been batling with an issue for the last couple of days that I can’t solve . My problem is sorting a list of ember data records...
View Article