parent
024836cab0
commit
d05c31cc94
8 changed files with 75 additions and 28 deletions
35
app/pods/components/x-select/component.js
Normal file
35
app/pods/components/x-select/component.js
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
const { Component } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend({
|
||||||
|
tagName: 'select',
|
||||||
|
attributeBindings: [
|
||||||
|
'multiple',
|
||||||
|
],
|
||||||
|
|
||||||
|
options: null,
|
||||||
|
selected: null,
|
||||||
|
nameAttr: null,
|
||||||
|
|
||||||
|
change: function() {
|
||||||
|
this.attrs.update(this.$().select2('val'));
|
||||||
|
},
|
||||||
|
|
||||||
|
didInsertElement: function() {
|
||||||
|
if (this.get('placeholder')) {
|
||||||
|
this.$().select2({
|
||||||
|
placeholder: this.get('placeholder'),
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$().select2();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
didRender: function() {
|
||||||
|
Ember.run.schedule('afterRender', this, function() {
|
||||||
|
this.$().select2('val', this.get('selected'));
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
});
|
3
app/pods/components/x-select/template.hbs
Normal file
3
app/pods/components/x-select/template.hbs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{{#each options as |option|}}
|
||||||
|
<option value={{option.id}}>{{get-property option nameAttr}}</option>
|
||||||
|
{{/each}}
|
|
@ -3,8 +3,8 @@ import Ember from 'ember';
|
||||||
const { Controller } = Ember;
|
const { Controller } = Ember;
|
||||||
|
|
||||||
export default Controller.extend({
|
export default Controller.extend({
|
||||||
selectedStrains: null,
|
selectedStrains: [],
|
||||||
selectedCharacteristics: null,
|
selectedCharacteristics: [],
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
search: function(query) {
|
search: function(query) {
|
||||||
|
|
|
@ -30,8 +30,8 @@ export default Route.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
const compare = this.controllerFor('protected.compare');
|
const compare = this.controllerFor('protected.compare');
|
||||||
compare.set('selectedStrains', params.strain_ids);
|
compare.set('selectedStrains', params.strain_ids.split(","));
|
||||||
compare.set('selectedCharacteristics', params.characteristic_ids);
|
compare.set('selectedCharacteristics', params.characteristic_ids.split(","));
|
||||||
|
|
||||||
return this.get('ajax').request('/compare', { data: params });
|
return this.get('ajax').request('/compare', { data: params });
|
||||||
},
|
},
|
||||||
|
@ -45,14 +45,14 @@ export default Route.extend({
|
||||||
const compare = this.controllerFor('protected.compare');
|
const compare = this.controllerFor('protected.compare');
|
||||||
|
|
||||||
const strains = [];
|
const strains = [];
|
||||||
const strain_ids = compare.get('selectedStrains').split(',');
|
const strain_ids = compare.get('selectedStrains');
|
||||||
strain_ids.forEach((id) => {
|
strain_ids.forEach((id) => {
|
||||||
strains.push(this.store.peekRecord('strain', id));
|
strains.push(this.store.peekRecord('strain', id));
|
||||||
});
|
});
|
||||||
controller.set('strains', strains);
|
controller.set('strains', strains);
|
||||||
|
|
||||||
const characteristics = [];
|
const characteristics = [];
|
||||||
const characteristic_ids = compare.get('selectedCharacteristics').split(',');
|
const characteristic_ids = compare.get('selectedCharacteristics');
|
||||||
characteristic_ids.forEach((id) => {
|
characteristic_ids.forEach((id) => {
|
||||||
characteristics.push(this.store.peekRecord('characteristic', id));
|
characteristics.push(this.store.peekRecord('characteristic', id));
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,8 +10,8 @@ export default Component.extend({
|
||||||
"update-strains": null,
|
"update-strains": null,
|
||||||
"update-characteristics": null,
|
"update-characteristics": null,
|
||||||
|
|
||||||
selectedStrains: null,
|
selectedStrains: [],
|
||||||
selectedCharacteristics: null,
|
selectedCharacteristics: [],
|
||||||
|
|
||||||
updateStrains: function(selection) {
|
updateStrains: function(selection) {
|
||||||
this.set('selectedStrains', selection);
|
this.set('selectedStrains', selection);
|
||||||
|
@ -38,11 +38,11 @@ export default Component.extend({
|
||||||
strains.forEach((strain) => {
|
strains.forEach((strain) => {
|
||||||
strain_ids.push(strain.get('id'));
|
strain_ids.push(strain.get('id'));
|
||||||
});
|
});
|
||||||
this.updateStrains(strain_ids.join(","));
|
this.updateStrains(strain_ids);
|
||||||
},
|
},
|
||||||
|
|
||||||
deselectAllStrains: function() {
|
deselectAllStrains: function() {
|
||||||
this.updateStrains("");
|
this.updateStrains([]);
|
||||||
},
|
},
|
||||||
|
|
||||||
selectAllCharacteristics: function() {
|
selectAllCharacteristics: function() {
|
||||||
|
@ -51,11 +51,19 @@ export default Component.extend({
|
||||||
chars.forEach((char) => {
|
chars.forEach((char) => {
|
||||||
char_ids.push(char.get('id'));
|
char_ids.push(char.get('id'));
|
||||||
});
|
});
|
||||||
this.updateCharacteristics(char_ids.join(","));
|
this.updateCharacteristics(char_ids);
|
||||||
},
|
},
|
||||||
|
|
||||||
deselectAllCharacteristics: function() {
|
deselectAllCharacteristics: function() {
|
||||||
this.updateCharacteristics("");
|
this.updateCharacteristics([]);
|
||||||
|
},
|
||||||
|
|
||||||
|
updateStrainSelection: function(selection) {
|
||||||
|
this.updateStrains(selection);
|
||||||
|
},
|
||||||
|
|
||||||
|
updateCharacteristicsSelection: function(selection) {
|
||||||
|
this.updateCharacteristics(selection);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -5,12 +5,12 @@
|
||||||
<li>
|
<li>
|
||||||
<label>Strains</label>
|
<label>Strains</label>
|
||||||
{{
|
{{
|
||||||
select-2
|
x-select
|
||||||
|
options=strains
|
||||||
|
nameAttr='fullNameMU'
|
||||||
multiple=true
|
multiple=true
|
||||||
content=strains
|
selected=selectedStrains
|
||||||
value=selectedStrains
|
update=(action "updateStrainSelection")
|
||||||
optionValuePath="id"
|
|
||||||
optionLabelPath="fullNameMU"
|
|
||||||
placeholder="Select one or more strains"
|
placeholder="Select one or more strains"
|
||||||
}}
|
}}
|
||||||
</li>
|
</li>
|
||||||
|
@ -25,12 +25,12 @@
|
||||||
<li>
|
<li>
|
||||||
<label>Characteristics</label>
|
<label>Characteristics</label>
|
||||||
{{
|
{{
|
||||||
select-2
|
x-select
|
||||||
|
options=characteristics
|
||||||
|
nameAttr='characteristicName'
|
||||||
multiple=true
|
multiple=true
|
||||||
content=characteristics
|
selected=selectedCharacteristics
|
||||||
value=selectedCharacteristics
|
update=(action "updateCharacteristicsSelection")
|
||||||
optionValuePath="id"
|
|
||||||
optionLabelPath="characteristicName"
|
|
||||||
placeholder="Select one or more characteristics"
|
placeholder="Select one or more characteristics"
|
||||||
}}
|
}}
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -15,11 +15,13 @@
|
||||||
<div data-row-span="2">
|
<div data-row-span="2">
|
||||||
<div data-field-span="2">
|
<div data-field-span="2">
|
||||||
<label>Species</label>
|
<label>Species</label>
|
||||||
<select onchange={{action "speciesDidChange" value="target.value"}}>
|
{{
|
||||||
{{#each speciesList as |speciesChoice|}}
|
x-select
|
||||||
<option value={{speciesChoice.id}} selected={{equal species.id speciesChoice.id}}>{{speciesChoice.speciesName}}</option>
|
options=speciesList
|
||||||
{{/each}}
|
nameAttr='speciesName'
|
||||||
</select>
|
selected=species.id
|
||||||
|
update=(action "speciesDidChange")
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-row-span="2">
|
<div data-row-span="2">
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
"ember-disable-proxy-controllers": "^1.0.1",
|
"ember-disable-proxy-controllers": "^1.0.1",
|
||||||
"ember-export-application-global": "^1.0.4",
|
"ember-export-application-global": "^1.0.4",
|
||||||
"ember-one-way-input": "0.1.3",
|
"ember-one-way-input": "0.1.3",
|
||||||
"ember-select-2": "1.3.0",
|
|
||||||
"ember-simple-auth": "1.0.0"
|
"ember-simple-auth": "1.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue