- a) What's the status of being able to use ES classes?
- b)
I just started learning Ember and would like to get more experience with the project by contributing to it. What's a good way for me to get started in open-source work related to Ember and to get more familiar with its internals at the same time?answered by @jessica-jordan - c) When the re hydration will land in Ember? and what about the incremental rendering?
d) Why Ember ships with RSVP instead of a Promise polyfill?answered by @ef4- e) How is didReceiveAttrs better than observers, or is it just as bad?
- f)
Is module unification something you can use today in an app? It seems like a lot of the discussion revolves around usage in addons, corner cases, or require using canary versions of Ember.answered by @jenweber - g) I've seen the Glimmer site and explanation but I'm still not sure if I should be thinking about Glimmer as solving my front end lightweight framework needs. For instance, should I go ahead and assume I can use Glimme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
/*import { map } from 'ember-awesome-macros'; */ | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
selectedFruit: 'peach', | |
fruits: [{ type: 'peach' }, | |
{ type: 'raspberry'}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**Ember** | |
==2.17== | |
- [BUGFIX beta] Avoid double throwing unhandled promise rejections. | |
Improved Debugging of Rejected Promises. | |
https://github.com/emberjs/ember.js/commit/21298e967414741d0c3d86eb2f07fad5d2feb2ed | |
- [BUGFIX beta] Ensure helpers have a consistent API. | |
Unification of return values of class-based and simple helpers for better testing ergonomics. |
- a) Addons have difficulty finding their ancestors and parent apps. I know this is not anything that is planning on being fixed in the near future (though I may be wrong) but I have seen multiple different approaches to this problem, including the use of the private _findHost() method, and would like to know which is the correct way to tackle this problem, or if there are several different approaches, which one to use when.
- b) Why does
ember install <foo>
add to one's "devDependencies" and not "dependencies"?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
import { inject as service } from '@ember/service'; | |
export default Ember.Controller.extend({ | |
store: service(), | |
appName: 'Ember Twiddle', | |
someProp: null, | |
actions: { | |
setModel() { | |
let randomModel = this.get('store').createRecord('random'); // TODO: initialize with values or relationships |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
- JSConf EU: submit until Dec 30th
- JSConf Asia: submit until March 2019
- JSConf Budapest: submit until Feb 28 2019
- CityJSConf: submit until Jan 31st 2019
- You Gotta Love Frontend submit until Feb 1st 2019
- JS Fest Kiev submit until Feb 23 2019
- AmsterdamJS submit until March 31 2019
- ComponentsConf submit until April 6, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
}); |
OlderNewer