Mitch Lloyd

Results 19 comments of Mitch Lloyd

I was just playing around with this feature today and tried something like this: ``` javascript model: function() { let project = this.modelFor('projects.project'); return project.get('evidenceRequests', { include: 'assignee' }); },...

@cibernox Adding parameters to `get` does seem dubious and I'm beginning to think I want to avoid using using `get` to fetch async relationships in general. The API you proposed...

@jwlawrence I'd be happy to open a PR based on that branch, but all of this is dependent on changes in core. The 2 failings tests are expecting the DOM...

I'm interested in the "add a source" use case as the new MVP. Clicking a link vs copy-paste to add a browser source might not be a huge UX win...

I have no plan to build a decorator for ember-autosave but it seems like a great candidate for a decorator. If you can make a computed property with a decorator...

Thanks for reporting, Patric. If this behavior changed I wonder if there is some way to apply a fix that wouldn’t potentially break past versions of ember by invoking didReceiveAttrs...

Maybe @rwjblue could advise a bit? I looks like we could inspect the Ember version to fix this bug (>= 3.2.0) and then [trigger the `didReceiveAttrs` hook](https://github.com/emberjs/ember.js/blob/2cd6e2f6d570d2489322e317adcb52a0756372d3/packages/ember-glimmer/lib/component-managers/curly.ts#L239), but I'm curious...

I haven’t used Ember Octane yet so I’m behind the curve here. Previously you could invoke a nested component like this with a slash “input/datetime”. Does that still work? This...

Thanks for the notes, @alexlafroscia. I also took a shot at getting glimmer components working back in March. I just [pushed those changes](https://github.com/mitchlloyd/ember-islands/compare/ember-three) and WIP commit for what I had...

@cdeszaq Thanks for the great write up! I agree that this use case fits with the goal of Ember Islands. Since #28 the library has changed a little. Ember Islands...