Learning EmberJS as beginner
@arifhussain wrote: Hi, I'm new to framework and i decided to make an application with EmberJS framework.I'm bit confuse with Ember 2.x and 1.x.I decided to learn with online tutorial and books but...
View ArticleTips for good API design
@JordanRDesigns wrote: Does anyone have any tips and possibly reading (or viewing) material that discusses good API design? I know everyone kind of does things differently, but I'm very interested to...
View ArticlePrefered way to upload image with Ember ( DataUri vs Image Data)
@scandinave wrote: Hi, I start writing an app that needs to handle image upload. My architecture, is a rest PHP back-end and Ember for the front-end. This is the 3 solutions that i see to make this....
View ArticleBest way to document external attributes for a Component?
@dbazile wrote: In React, they use React.PropTypes for some rudimentary validation of properties passed in by client code which serves as its own type of documentation. Considering the absence of such...
View ArticleWhat does ember install do
@DevinRhode2 wrote: Dependencies can get messy, sometimes you need to install different versions to see which version caused a bug (but potentially fixed another!). I know ember install usually just...
View ArticleComputed property doesn't work as expected
@Yaroslav_Poliakov wrote: Hi, guys! I stuck on the next problem. I have a component with a "chosen" input where user can select multiple options. I want to map list of selected ids to list of another...
View ArticleCommunication between cousin components - two-way binding vs. unidirectional?
@jameslaneconkling wrote: Trying to find best practices for a component relationship I see a lot in my apps: cousin components that are backed by the same models, where there is a one-to-many...
View ArticleCan't access lazy loaded relationships
@samsebastian wrote: I've been staring at this for hours and am getting nowhere I am using the JSONAPIAdapter with a JSONAPI compliant API. When the route is hit the data is being loaded successfully...
View ArticleWallabyjs tool which help you to test code
@oleg.a.dovger wrote: Does anyone know about wallabyjs tool? May be you used it in your ember cli project. Please, share your experience. Posts: 1 Participants: 1 Read full topic
View ArticleMany to many best practice
@robwatkin wrote: Hi, I'm working on an Ember app that involves some many to many relationships. We have a legacy SQL data base with the following scenario which is exposed via a RESTful API. Workers...
View ArticleEmber addon naming convention
@harimath wrote: Is it necessary to have a hyphen ("-") in our custom created ember addon ? (i.e. is "myAddon" fine OR do we need to name it as "my-addon") I do know that custom components need to...
View ArticleCan you recommend any solid jsonapi pagination component?
@rrh wrote: Pagination Addon for Ember CLI seems to be the most popular option, but JSONAPI support is still in progress. Thanks in advance! Posts: 2 Participants: 2 Read full topic
View ArticleReset scroll when entering route for first time?
@JordanRDesigns wrote: So here's a kicker. It seems as I am moving between routes in my app I am seeing the scroll position of one route is causing the scroll position of the next route to be set...
View ArticleEmber RSVP promise stopped working
@JordanRDesigns wrote: I created a stack overflow and haven't received anything that has helped me figure out why this promise has stopped returning. Can someone take a look here? stackoverflow.com...
View ArticleIs Hot Reloading like Redux in Ember available
@krautman wrote: I recently read a lot articles and blog posts about the whole flux stuff and I came across redux. I watched the talk which Dan Abramov gave at react-europe conference (if you haven't...
View ArticlePass readonly / copy of a property to a component
@pavan_kumar_l wrote: I have a avatar component which accepts avatar url and also supports new avatar upload. I also observe the url property to reflect any changes. The url for avatar comes from user...
View Article2 question about reading cache and UI update
@Hao wrote: I want to confirm two points based on what I have read from the Guide and have noticed regarding reading cached records from store. Based on the guide in the model section: One downside to...
View ArticleI can'r access my models in controller
@samtes wrote: app/routes/results/index.js import Ember from 'ember'; export default Ember.Route.extend({ model () { return Ember.RSVP.hash({ results: this.store.find("key"), users:...
View ArticleDifference between using `this.store` and `this.get('store')` within routes
@efx wrote: Is there a particular virtue to using this.get('store') versus this.store within routes? I thought I saw this topic discussed here before, so links to the old thread would be great. My...
View ArticleView-writable component properties mixin
@barneycarroll wrote: As view logic increases, the indirection resulting from Handlebars' hatred of logic & the verbosity of Ember's component APIs becomes increasingly cumbersome. I wrote this...
View Article