How to test that CSS is being included by an addon
@samselikoff wrote: I’m trying to add a test to Ember CLI Tailwind that verifies the addon correctly builds tailwind.css and adds it to the host app. Some of our existing tests verify that a vendor...
View ArticleWorking around "Avoid leaking state in ember objects" ESLint rule
@samselikoff wrote: I often write components that use Objects or Arrays as configuration: import Component from '@ember/component'; import { Styled, group } from 'ember-cli-ui-components'; export...
View ArticleOrganization of Ember apps' state machines
@sukima wrote: This is a cross post from Ember Slack channel #topic-architecture. Over the past several years I have settled down to four kinds of state manager patterns when it comes to Ember and...
View ArticleMinor issue with Guide for v.2.18.0
@ckuo wrote: Guide for v.2.18.0 Section: Tutorial / Creating a Handlebars Helper / Integration Test For test: “it renders correctly for a Standalone rental” Lines to add (in green) should be: test(‘it...
View ArticleEf5 expectations?
@yohanmishkin wrote: @ef4 is legend. He’s the Paul Bunyan of Ember. I heard he has a private fork of ember that is self aware and can ‘ember install npm’. That being said what did ef4 do with the...
View ArticleWhy should I avoid transitionTo and full URLs?
@efx wrote: The API documentation for Route.transitionTo states: It is also possible to pass a URL (a string that starts with a /). This is intended for testing and debugging purposes and should...
View ArticleMixins and layout property with ember-decorators
@Henry wrote: Here are two doubts with their solutions that I had today while working with ember-decorators that could be useful for someone else: what’s the recommended strategy for handling mixins...
View ArticleInstall or not ember-cli globally
@belgoros wrote: I wonder if I need to install ember-cli globally before cloning an Ember project npm install -g ember-cli or it is enough to have Yarn installed and hit yarn to install the...
View ArticleAngle Bracket Invocation: Status Update
@rwjblue wrote: The Angle Bracket Invocation RFC was merged a few weeks ago and implementation work started shortly afterwards. After identifying the missing pieces needed and working through the...
View ArticleEmber-cli-pagination doesn't work when child component gets rendered from...
@tripti wrote: I am using ember-cli pagination https://www.npmjs.com/package/ember-cli-pagination and its working fine in my parent component but when i m rendering data from child component to parent...
View ArticleCan we use ES classes?
@mkay581 wrote: Can Ember component classes be swapped out for native ES classes? If not, are there any addons that make this possible? I’m aware of the ES classes RFC but its not really clear of...
View ArticleWeb Component support
@mkay581 wrote: Where does Ember stand in supporting Web Components? They are now pretty stable and supported by all major browsers. Can they be used in the framework today? Or should we wait? Also,...
View ArticleFingerprint issue with ckeditor
@Deepak_Negi_Sunny wrote: I have addon ckeditor in my project to edit online documents, while making “production” build I excluded ckeditor from fingerprinting by adding following in...
View ArticleRendering HTML with injected Components in HBS templates
@Alonski wrote: Hey friends, I have a problem that is outside of my current knowledge and I was wondering if I could get some insight from the community. I have a page which renders different HTML...
View ArticleIssues with Async/Await in Ember application code
@JonForest wrote: Recently on the Slack channel it was flagged that Ember application code has some issues with using async/await syntax, with it not being properly wrapped in the runloop. I seem to...
View ArticleAPI refresh tokens
@haldiggs wrote: Sorry I thought this would be easy. I am hitting a webapi that returns a refresh token that I need to refresh pretty often. The token gets attached to the header in the...
View ArticleConfiguring Ember CLI's dev server to respond to non-`text/html` requests
@samselikoff wrote: We’re developing our Ember app locally and tweaking how it responds to Slack. When we make a request from Slack to our app, Ember CLI doesn’t render a response – it returns a 404...
View ArticleDocument Editor for ember.js application
@Deepak_Negi_Sunny wrote: Dear Members, Please suggest online document editor addon for ember app Regards DN Posts: 1 Participants: 1 Read full topic
View ArticleHow to `ember install` for a package that is npm linked? [resolved]
@hugurp wrote: Hi, When working on an addon I currently do the following: cd ~/my-addon npm link cd ~/my-app npm link my-addon With https://ember-cli.com/extending/#link-to-addon-while-developing it...
View ArticleRendering the same model to multiple outlets
@andywww wrote: Hi, I may be going about this wrong but I’m building a map application that lets the user plan a trip on various levels of granularity. How does one go about rendering the same model...
View Article