Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f0167c858d | ||
![]() |
6f15bc940d | ||
![]() |
a4fc06d22d | ||
![]() |
dbcc51c80d | ||
![]() |
9ed63ca5ba |
9 changed files with 102 additions and 33 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]);
|
||||||
|
});
|
||||||
|
|
50
app/pods/components/x-select/component.js
Normal file
50
app/pods/components/x-select/component.js
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
const { Component, isEmpty } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend({
|
||||||
|
tagName: 'select',
|
||||||
|
|
||||||
|
nameAttr: null,
|
||||||
|
listItems: null,
|
||||||
|
placeholder: null,
|
||||||
|
selected: null,
|
||||||
|
selectize: null,
|
||||||
|
multiple: false,
|
||||||
|
|
||||||
|
attributeBindings: [
|
||||||
|
'multiple',
|
||||||
|
],
|
||||||
|
|
||||||
|
change: function() {
|
||||||
|
this.attrs["update"](this.$()[0].selectize.getValue());
|
||||||
|
},
|
||||||
|
|
||||||
|
didReceiveAttrs: function() {
|
||||||
|
this._super(...arguments);
|
||||||
|
console.log('didReceiveAttrs');
|
||||||
|
|
||||||
|
if (!this.attrs.update) {
|
||||||
|
throw new Error(`You must provide an \`update\` action.`);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ember.run.schedule('actions', this, () => {
|
||||||
|
console.log('before adding');
|
||||||
|
this.$()[0].selectize.setValue(this.get('selected'), true);
|
||||||
|
console.log('after adding')
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
didInsertElement: function() {
|
||||||
|
console.log('didInsertElement');
|
||||||
|
const options = {
|
||||||
|
closeAfterSelect: true,
|
||||||
|
selectOnTab: true,
|
||||||
|
plugins: ['drag_drop'],
|
||||||
|
items: this.get('selected'),
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$().selectize(options);
|
||||||
|
},
|
||||||
|
|
||||||
|
});
|
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}}
|
|
@ -12,10 +12,12 @@ export default Controller.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
updateStrainSelection: function(selection) {
|
updateStrainSelection: function(selection) {
|
||||||
|
console.log(selection);
|
||||||
this.set('selectedStrains', selection);
|
this.set('selectedStrains', selection);
|
||||||
},
|
},
|
||||||
|
|
||||||
updateCharacteristicSelection: function(selection) {
|
updateCharacteristicSelection: function(selection) {
|
||||||
|
console.log(selection);
|
||||||
this.set('selectedCharacteristics', selection);
|
this.set('selectedCharacteristics', selection);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -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,17 +10,12 @@ export default Component.extend({
|
||||||
"update-strains": null,
|
"update-strains": null,
|
||||||
"update-characteristics": null,
|
"update-characteristics": null,
|
||||||
|
|
||||||
selectedStrains: null,
|
|
||||||
selectedCharacteristics: null,
|
|
||||||
|
|
||||||
updateStrains: function(selection) {
|
updateStrains: function(selection) {
|
||||||
this.set('selectedStrains', selection);
|
this.attrs["update-strains"](selection);
|
||||||
this.attrs['update-strains'](this.get('selectedStrains'));
|
|
||||||
},
|
},
|
||||||
|
|
||||||
updateCharacteristics: function(selection) {
|
updateCharacteristics: function(selection) {
|
||||||
this.set('selectedCharacteristics', selection);
|
this.attrs['update-characteristics'](selection);
|
||||||
this.attrs['update-characteristics'](this.get('selectedCharacteristics'));
|
|
||||||
},
|
},
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
|
@ -38,11 +33,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 +46,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);
|
||||||
|
},
|
||||||
|
|
||||||
|
updateCharacteristicSelection: function(selection) {
|
||||||
|
this.updateCharacteristics(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>
|
||||||
|
@ -25,13 +25,13 @@
|
||||||
<li>
|
<li>
|
||||||
<label>Characteristics</label>
|
<label>Characteristics</label>
|
||||||
{{
|
{{
|
||||||
select-2
|
x-select
|
||||||
|
listItems=characteristics
|
||||||
|
nameAttr="characteristicName"
|
||||||
|
update=(action "updateCharacteristicSelection")
|
||||||
|
placeholder="Select one ore more characteristics"
|
||||||
multiple=true
|
multiple=true
|
||||||
content=characteristics
|
selected=selectedCharacteristics
|
||||||
value=selectedCharacteristics
|
|
||||||
optionValuePath="id"
|
|
||||||
optionLabelPath="characteristicName"
|
|
||||||
placeholder="Select one or more characteristics"
|
|
||||||
}}
|
}}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -21,6 +21,8 @@
|
||||||
"quill": "~0.19.14",
|
"quill": "~0.19.14",
|
||||||
"pretender": "~0.10.1",
|
"pretender": "~0.10.1",
|
||||||
"lodash": "~3.7.0",
|
"lodash": "~3.7.0",
|
||||||
"Faker": "~3.0.0"
|
"Faker": "~3.0.0",
|
||||||
|
"selectize": "~0.12.1",
|
||||||
|
"jQuery UI Sortable": "jquery-ui-sortable#*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,8 @@ module.exports = function(defaults) {
|
||||||
// quill
|
// quill
|
||||||
app.import('bower_components/quill/dist/quill.base.css');
|
app.import('bower_components/quill/dist/quill.base.css');
|
||||||
app.import('bower_components/quill/dist/quill.snow.css');
|
app.import('bower_components/quill/dist/quill.snow.css');
|
||||||
|
// selectize
|
||||||
|
app.import('bower_components/selectize/dist/css/selectize.default.css');
|
||||||
|
|
||||||
// LIBS ////////////////////////////////////////////////////////////////////////
|
// LIBS ////////////////////////////////////////////////////////////////////////
|
||||||
// flakes (and deps)
|
// flakes (and deps)
|
||||||
|
@ -25,6 +27,10 @@ module.exports = function(defaults) {
|
||||||
app.import('bower_components/moment/moment.js');
|
app.import('bower_components/moment/moment.js');
|
||||||
// quill
|
// quill
|
||||||
app.import('bower_components/quill/dist/quill.min.js');
|
app.import('bower_components/quill/dist/quill.min.js');
|
||||||
|
// jquery ui sortable
|
||||||
|
app.import('bower_components/jQuery UI Sortable/jquery-ui-sortable.min.js');
|
||||||
|
// selectize
|
||||||
|
app.import('bower_components/selectize/dist/js/standalone/selectize.min.js');
|
||||||
|
|
||||||
return app.toTree();
|
return app.toTree();
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue