Questions tagged [ember-addon]

Extensions for ember.js applications

ember.js addons are specific extensions for ember.js applications.

To find ember.js addons have a look at these listings:

To develop ember.js addons have a look at these resources:

93 questions
1
vote
1 answer

How to use shared components in multiple apps without addon

we have a four apps that share a lot of components. So far we use addons to manage this shared code, but we're facing a lot of troubles with addons approach. Something like this: App1 - basic-form-elements-addon - feedback-form-addon -…
ondrej
  • 967
  • 7
  • 26
1
vote
1 answer

Ember addon and processing files

I have successfully managed to render a React component inside of ember. You can see the relevant code here. The basics being adding an addon, that uses the preprocessTree hook, to use broccoli-react to parse the jsx files as per here. And a…
Andre Helberg
  • 552
  • 1
  • 6
  • 17
1
vote
1 answer

Ember JS : Exlude running eslint on js files of addon

I am using eslint ("ember-cli-eslint") for my ember application. Whenever i run the tests, eslint includes files from addon's as well(check screenshot). We have 5 custom add-ons which is used in this project. Eslint currently includes the files from…
syed imty
  • 1,018
  • 1
  • 9
  • 27
1
vote
1 answer

Pagination in Ember using ember-cli-pagination

I'm trying to implement pagination on my project using ember-cli-pagination but it's not working. I have something like this in the controller: import Ember from 'ember'; import pagedArray from 'ember-cli-pagination/computed/paged-array'; export…
andrefurquin
  • 502
  • 6
  • 17
1
vote
1 answer

Ember Power Select - How to close select of EPS

I'm trying to close the select box before it executes the search with Ember Power Select. I'm assuming the user knows what he is looking for if he paste a list and automatically sets the selected items. I tried to use select.actions.close() but it…
renno
  • 2,659
  • 2
  • 27
  • 58
1
vote
1 answer

Mozilla FF scrollbar issue with ember-scrollable addon

I've come across this scenario of default scrollbar shows on mozilla firefox with ember-scrollable.I've implemented an aside fixed block with 100vh height and added the above mentioned ember addon. it works fine in webkit browsers but in FF itshows…
Vivekraj K R
  • 2,418
  • 2
  • 19
  • 38
1
vote
1 answer

When developing an Ember addon how do I get the custom event paste to work?

It is well documented on how to add the custom paste event to an Ember Application. See custom events, as detailed in How to listen to a paste event on a textarea in emberjs. My question is how do I achieve this in an Ember addon that I am writing?…
Adam Knights
  • 2,141
  • 1
  • 25
  • 48
1
vote
0 answers

How to include ember addon's scss files directly into consuming app

TL;DR How to import scss files from ember addon to consumers app(should import scss files and not processed css file, scss should be processed in consumer's app instead). Details: I am developing an addon and I am using sass for design, I want to…
Prakash
  • 581
  • 5
  • 16
1
vote
1 answer

Ember. Extend Router for addon

I would like to have common routes defined in my addon, which can be shared by our multiple projects. I saw a solution in the Ember Forum but I'm not sure if this is the right approach or If I'm doing it…
Wesley
  • 155
  • 1
  • 11
1
vote
1 answer

Ember: How to make element removal visually better?

Hi is there a way to use fade out on a component/element removal, using pure CSS? Currently delete happens so fast its hard for end-user to see what actually happened. For instance i have this code for fade-in. It's easy to add and you dont need to…
kristjan reinhold
  • 2,038
  • 1
  • 17
  • 34
1
vote
1 answer

Include bower component in Ember Addon

How do you need to work in an Ember addon, to include bower packages while installing the addon. 1) I installed the bower package I want to include in my addon with bower instal packagename --save 2) then in my addon, in the root, edited index.js,…
pjcarly
  • 416
  • 3
  • 12
1
vote
1 answer

The fb access token always get expired in ember app

I am using ember-simple-auth and ember-cli-facebook-js-sdk.I am using the ember-cli-facebook-sdk because I want to get the user photo anytime as facebook only give the access which expires in 60 mins.So I can't save also.Ember-cli-facebook-sdk is…
1
vote
0 answers

Creating chart out of ember-cli-blanket report in Jenkins

I have integrated ember-cli-blanket in my Jenkins job successfully. And the ember test will generate a output file in JSON format(eg: coverage-report.json). Now for making it more user friendly or making it more understandable, I need to show a…
Vineeth Koppai
  • 141
  • 1
  • 6
1
vote
3 answers

Is there an easier way to debug ember addons

I have been just starting out with ember addon and one of the difficulty I am facing is to debug it. I have a separate repo for my addon(lets name it my-addon for now), and everytime I make any change, I have to 1) commit it 2) push the changes 3)…
Deewendra Shrestha
  • 2,313
  • 1
  • 23
  • 53
1
vote
1 answer

Undefined function for computed property ember-addons

Hi I just saw a tutorial on creating ember-addon using ember-cli. replicating it versions Ember Inspector 1.7.3 Ember 1.11.1 Ember Data 1.0.0-beta.16.1 jQuery 1.11.3 EmberComputedFilter 0.0.0.547aa481 command ember addon…
Rigel
  • 882
  • 1
  • 11
  • 32