WIP
This commit is contained in:
parent
9ed63ca5ba
commit
dbcc51c80d
6 changed files with 69 additions and 19 deletions
|
@ -1,8 +1,8 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
// This will be unneccesary when ember 2.0 lands
|
const { get, Helper: { helper } } = Ember;
|
||||||
export function getProperty(params) {
|
|
||||||
return Ember.get(params[0], params[1]);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Ember.HTMLBars.makeBoundHelper(getProperty);
|
// This will be unneccesary when ember 2.0 lands
|
||||||
|
export default helper(function(params) {
|
||||||
|
return get(params[0], params[1]);
|
||||||
|
});
|
||||||
|
|
39
app/pods/components/x-select/component.js
Normal file
39
app/pods/components/x-select/component.js
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
const { Component } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend({
|
||||||
|
tagName: 'select',
|
||||||
|
|
||||||
|
value: null,
|
||||||
|
nameAttr: null,
|
||||||
|
listItems: null,
|
||||||
|
placeholder: null,
|
||||||
|
selected: null,
|
||||||
|
selectize: null,
|
||||||
|
|
||||||
|
attributeBindings: [
|
||||||
|
'multiple',
|
||||||
|
],
|
||||||
|
|
||||||
|
change: function() {
|
||||||
|
this.attrs["update"](this.get('selectize').getValue());
|
||||||
|
},
|
||||||
|
|
||||||
|
didReceiveAttrs: function() {
|
||||||
|
this._super(...arguments);
|
||||||
|
|
||||||
|
if (!this.attrs.update) {
|
||||||
|
throw new Error(`You must provide an \`update\` action.`);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
didInsertElement: function() {
|
||||||
|
this.$().selectize({
|
||||||
|
plugins: ['drag_drop'],
|
||||||
|
items: this.get('selected'),
|
||||||
|
});
|
||||||
|
this.set('selectize', this.$()[0].selectize);
|
||||||
|
},
|
||||||
|
|
||||||
|
});
|
6
app/pods/components/x-select/template.hbs
Normal file
6
app/pods/components/x-select/template.hbs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{{#if placeholder}}
|
||||||
|
<option value="">{{placeholder}}</option>
|
||||||
|
{{/if}}
|
||||||
|
{{#each listItems as |option|}}
|
||||||
|
<option value={{option.id}} selected={{equal option.id value.id}}>{{get-property option nameAttr}}</option>
|
||||||
|
{{/each}}
|
|
@ -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));
|
||||||
});
|
});
|
||||||
|
|
|
@ -13,10 +13,10 @@ export default Component.extend({
|
||||||
selectedStrains: null,
|
selectedStrains: null,
|
||||||
selectedCharacteristics: null,
|
selectedCharacteristics: null,
|
||||||
|
|
||||||
updateStrains: function(selection) {
|
// updateStrains: function(selection) {
|
||||||
this.set('selectedStrains', selection);
|
// this.set('selectedStrains', selection);
|
||||||
this.attrs['update-strains'](this.get('selectedStrains'));
|
// this.attrs['update-strains'](this.get('selectedStrains'));
|
||||||
},
|
// },
|
||||||
|
|
||||||
updateCharacteristics: function(selection) {
|
updateCharacteristics: function(selection) {
|
||||||
this.set('selectedCharacteristics', selection);
|
this.set('selectedCharacteristics', selection);
|
||||||
|
@ -57,5 +57,10 @@ export default Component.extend({
|
||||||
deselectAllCharacteristics: function() {
|
deselectAllCharacteristics: function() {
|
||||||
this.updateCharacteristics("");
|
this.updateCharacteristics("");
|
||||||
},
|
},
|
||||||
|
|
||||||
|
updateStrainSelection: function(selection) {
|
||||||
|
this.set('selectedStrains', selection);
|
||||||
|
this.attrs["update-strains"](selection);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -5,13 +5,13 @@
|
||||||
<li>
|
<li>
|
||||||
<label>Strains</label>
|
<label>Strains</label>
|
||||||
{{
|
{{
|
||||||
select-2
|
x-select
|
||||||
|
listItems=strains
|
||||||
|
nameAttr="fullNameMU"
|
||||||
|
update=(action "updateStrainSelection")
|
||||||
|
placeholder="Select one ore more strains"
|
||||||
multiple=true
|
multiple=true
|
||||||
content=strains
|
selected=selectedStrains
|
||||||
value=selectedStrains
|
|
||||||
optionValuePath="id"
|
|
||||||
optionLabelPath="fullNameMU"
|
|
||||||
placeholder="Select one or more strains"
|
|
||||||
}}
|
}}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
|
Reference in a new issue