forked from cibernox/ember-power-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
42 lines (35 loc) · 1.38 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* jshint node: true */
'use strict';
module.exports = {
name: 'ember-power-select',
included: function(appOrAddon) {
var app = appOrAddon.app || appOrAddon;
if (!app.__emberPowerSelectIncludedInvoked) {
app.__emberPowerSelectIncludedInvoked = true;
var options = typeof app.options === 'object' ? app.options : {};
var addonConfig = options['ember-power-select'] || {};
// Since ember-power-select styles already `@import` styles of ember-basic-dropdown,
// this flag tells to ember-basic-dropdown to skip importing its styles provided
// we're using a theme (or the default styles)
if (addonConfig.theme !== false) {
app.__skipEmberBasicDropdownStyles = true;
}
this._super.included.apply(this, arguments);
// Don't include the precompiled css file if the user uses ember-cli-sass
if (!app.registry.availablePlugins['ember-cli-sass']) {
if (addonConfig.theme) {
app.import('vendor/ember-power-select-'+addonConfig.theme+'.css');
} else if (addonConfig.theme !== false) {
app.import('vendor/ember-power-select.css');
}
}
}
},
contentFor: function(type, config) {
var emberBasicDropdown = this.addons.filter(function(addon) {
return addon.name === 'ember-basic-dropdown';
})[0]
return emberBasicDropdown.contentFor(type, config);
}
};