select2
This commit is contained in:
parent
a354ecd639
commit
046fea2dbb
5 changed files with 21 additions and 17 deletions
|
@ -16,26 +16,26 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
models.strains = models.strains.sortBy('fullName');
|
models.strains = models.strains.sortBy('fullName');
|
||||||
let strains = models.strains.map((strain)=>{
|
let strains = models.strains.map((strain)=>{
|
||||||
return Ember.Object.create({
|
return Ember.Object.create({
|
||||||
val: strain.get('id'),
|
id: strain.get('id'),
|
||||||
lab: strain.get('fullName'),
|
text: strain.get('fullName'),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
strains.unshiftObjects(Ember.Object.create({
|
strains.unshiftObjects(Ember.Object.create({
|
||||||
val: 'all',
|
id: 'all',
|
||||||
lab: 'All Strains',
|
text: 'All Strains',
|
||||||
}));
|
}));
|
||||||
controller.set('strains', strains);
|
controller.set('strains', strains);
|
||||||
|
|
||||||
models.characteristics = models.characteristics.sortBy('characteristicName');
|
models.characteristics = models.characteristics.sortBy('characteristicName');
|
||||||
let characteristics = models.characteristics.map((characteristic)=>{
|
let characteristics = models.characteristics.map((characteristic)=>{
|
||||||
return Ember.Object.create({
|
return Ember.Object.create({
|
||||||
val: characteristic.get('id'),
|
id: characteristic.get('id'),
|
||||||
lab: characteristic.get('characteristicName'),
|
text: characteristic.get('characteristicName'),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
characteristics.unshiftObjects(Ember.Object.create({
|
characteristics.unshiftObjects(Ember.Object.create({
|
||||||
val: 'all',
|
id: 'all',
|
||||||
lab: 'All Characteristics',
|
text: 'All Characteristics',
|
||||||
}));
|
}));
|
||||||
controller.set('characteristics', characteristics);
|
controller.set('characteristics', characteristics);
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,11 +5,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="span-8">
|
<div class="span-8">
|
||||||
{{
|
{{
|
||||||
view "select"
|
select-2
|
||||||
|
multiple=true
|
||||||
content=strains
|
content=strains
|
||||||
optionValuePath="content.val"
|
value=selectedStrains
|
||||||
optionLabelPath="content.lab"
|
optionValuePath="id"
|
||||||
value=selectedStrain
|
placeholder="Choose a strain"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -19,11 +20,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="span-8">
|
<div class="span-8">
|
||||||
{{
|
{{
|
||||||
view "select"
|
select-2
|
||||||
|
multiple=true
|
||||||
content=characteristics
|
content=characteristics
|
||||||
optionValuePath="content.val"
|
|
||||||
optionLabelPath="content.lab"
|
|
||||||
value=selectedCharacteristic
|
value=selectedCharacteristic
|
||||||
|
optionValuePath="id"
|
||||||
|
placeholder="Choose a characteristic"
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
"qunit": "~1.17.1",
|
"qunit": "~1.17.1",
|
||||||
"flakes": "~1.0.0",
|
"flakes": "~1.0.0",
|
||||||
"ember-simple-auth": "~0.8.0-beta.3",
|
"ember-simple-auth": "~0.8.0-beta.3",
|
||||||
"moment": "~2.9.0"
|
"moment": "~2.9.0",
|
||||||
|
"select2": "3.5.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@ module.exports = function(environment) {
|
||||||
'font-src': "'self'",
|
'font-src': "'self'",
|
||||||
'connect-src': "'self' http://127.0.0.1:4200",
|
'connect-src': "'self' http://127.0.0.1:4200",
|
||||||
'img-src': "'self'",
|
'img-src': "'self'",
|
||||||
'style-src': "'self'",
|
'style-src': "'self' 'unsafe-inline'",
|
||||||
'media-src': "'self'"
|
'media-src': "'self'"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,7 @@
|
||||||
"ember-data": "1.0.0-beta.18",
|
"ember-data": "1.0.0-beta.18",
|
||||||
"ember-disable-proxy-controllers": "^1.0.0",
|
"ember-disable-proxy-controllers": "^1.0.0",
|
||||||
"ember-export-application-global": "^1.0.2",
|
"ember-export-application-global": "^1.0.2",
|
||||||
|
"ember-select-2": "1.3.0",
|
||||||
"express": "^4.12.4",
|
"express": "^4.12.4",
|
||||||
"glob": "^4.5.3",
|
"glob": "^4.5.3",
|
||||||
"jsonwebtoken": "^5.0.0",
|
"jsonwebtoken": "^5.0.0",
|
||||||
|
|
Reference in a new issue