Merge branch 'master' into clostridium

* master:
  Notes
  Cleaning up measurement edit
  Dummy measurement edit
  Fix login error transition
This commit is contained in:
Matthew Dillon 2015-09-17 11:01:04 -07:00
commit 56888c7fba
12 changed files with 116 additions and 47 deletions

View file

@ -3,9 +3,7 @@ import DS from 'ember-data';
export default DS.Model.extend({ export default DS.Model.extend({
strain : DS.belongsTo('strain', { async: false }), strain : DS.belongsTo('strain', { async: false }),
characteristic : DS.belongsTo('characteristic', { async: false }), characteristic : DS.belongsTo('characteristic', { async: false }),
textMeasurementType: DS.attr('string'), value : DS.attr('string'),
txtValue : DS.attr('string'),
numValue : DS.attr('number'),
confidenceInterval : DS.attr('number'), confidenceInterval : DS.attr('number'),
unitType : DS.attr('string'), unitType : DS.attr('string'),
notes : DS.attr('string'), notes : DS.attr('string'),
@ -14,17 +12,4 @@ export default DS.Model.extend({
updatedAt : DS.attr('date'), updatedAt : DS.attr('date'),
createdBy : DS.attr('number'), createdBy : DS.attr('number'),
updatedBy : DS.attr('number'), updatedBy : DS.attr('number'),
value: function() {
if (this.get('textMeasurementType')) {
return this.get('textMeasurementType');
}
if (this.get('txtValue')) {
return this.get('txtValue');
}
if (this.get('numValue')) {
return this.get('numValue');
}
return "error";
}.property('textMeasurementType', 'txtValue', 'numValue'),
}); });

View file

@ -0,0 +1 @@
{{loading-panel}}

View file

@ -11,6 +11,7 @@ export default Ember.Controller.extend({
this.get('flashMessages').clearMessages(); this.get('flashMessages').clearMessages();
this.transitionToRoute('loading').then(() => { this.transitionToRoute('loading').then(() => {
session.authenticate(authenticator, credentials).then(null, (error)=> { session.authenticate(authenticator, credentials).then(null, (error)=> {
this.transitionToRoute('login');
this.get('flashMessages').error(error.error); this.get('flashMessages').error(error.error);
}); });
}); });

View file

@ -5,6 +5,7 @@ export default Ember.Component.extend({
return this.get('model.measurements.length') > 0; return this.get('model.measurements.length') > 0;
}.property('model.measurements'), }.property('model.measurements'),
// TODO: this is way more complicated than it should be
measurementsTable: function() { measurementsTable: function() {
let measurements = this.get('model.measurements'); let measurements = this.get('model.measurements');
let table = []; let table = [];

View file

@ -0,0 +1,20 @@
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'tr',
isEditing: false,
actions: {
edit: function() {
// The parent table fetches all of the characteristics ahead of time
this.set('characteristics', this.store.peekAll('characteristic'));
this.toggleProperty('isEditing');
},
save: function() {
this.toggleProperty('isEditing');
this.get('row').save();
},
},
});

View file

@ -0,0 +1,43 @@
{{#if isEditing}}
<td>
{{
select-2
multiple=false
content=characteristics
value=row.characteristic
optionLabelPath="characteristicName"
}}
</td>
<td>
{{input value=row.value}}
</td>
<td>
{{input value=row.notes}}
</td>
{{#if canEdit}}
<td>
<button class="button-red smaller" {{action 'save'}}>
Save
</button>
</td>
{{/if}}
{{else}}
<td>
{{#link-to 'protected.characteristics.show' row.characteristic.id}}
{{{row.characteristic.characteristicName}}}
{{/link-to}}
</td>
<td>
{{row.value}}
</td>
<td>
{{row.notes}}
</td>
{{#if canEdit}}
<td>
<button class="button-gray smaller" {{action 'edit'}}>
Edit
</button>
</td>
{{/if}}
{{/if}}

View file

@ -5,21 +5,13 @@ export default Ember.Component.extend({
return this.get('model.measurements.length') > 0; return this.get('model.measurements.length') > 0;
}.property('model.measurements'), }.property('model.measurements'),
measurementsTable: function() { fetchCharacteristics: function() {
let measurements = this.get('model.measurements'); if (this.get('canEdit')) {
let table = []; this.store.findAll('characteristic');
measurements.forEach((measurement) => { }
let row = {}; }.on('didInsertElement'),
row['measurement'] = measurement;
row['characteristic'] = this.store.peekRecord('characteristic', measurement.get('characteristic.id')); sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
table.push(row); sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'),
});
table.sort((a, b) => {
let a_sort = a['characteristic'] && a['characteristic'].get('sortOrder');
let b_sort = b['characteristic'] && b['characteristic'].get('sortOrder');
return a_sort - b_sort;
});
return table;
}.property(),
}); });

View file

@ -1,27 +1,34 @@
{{#if measurementsPresent}} {{#if measurementsPresent}}
<table class="flakes-table"> <table class="flakes-table">
<colgroup>
{{#if canEdit}}
<col span="1" style="width:40%">
<col span="1" style="width:20%">
<col span="1" style="width:30%">
<col span="1" style="width:10%">
{{else}}
<col span="1" style="width:40%">
<col span="1" style="width:30%">
<col span="1" style="width:30%">
{{/if}}
</colgroup>
<thead> <thead>
<tr> <tr>
<th>Characteristic</th> <th>Characteristic</th>
<th>Value</th> <th>Value</th>
<th>Notes</th> <th>Notes</th>
{{#if canEdit}}
<th>Edit</th>
{{/if}}
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{{#each measurementsTable as |row|}} {{#each sortedMeasurements as |measurement|}}
<tr> {{
<td> protected/strains/show/measurements-table-row
{{#link-to 'protected.characteristics.show' row.characteristic.id}} row=measurement
{{{row.characteristic.characteristicName}}} canEdit=canEdit
{{/link-to}} }}
</td>
<td>
{{row.measurement.value}}
</td>
<td>
{{row.measurement.notes}}
</td>
</tr>
{{/each}} {{/each}}
</tbody> </tbody>
</table> </table>

View file

@ -73,7 +73,11 @@
<dl class="span-1"> <dl class="span-1">
<dt>Characteristics</dt> <dt>Characteristics</dt>
<dd> <dd>
{{protected/strains/show/measurements-table model=model}} {{
protected/strains/show/measurements-table
model=model
canEdit=false
}}
</dd> </dd>
</dl> </dl>
</div> </div>

View file

@ -4,6 +4,7 @@ export default Ember.Component.extend({
actions: { actions: {
save: function() { save: function() {
// Need to override the string id for some reason // Need to override the string id for some reason
// TODO: check this
let strain = this.get('strain'); let strain = this.get('strain');
let id = strain.get('species.id'); let id = strain.get('species.id');
strain.set('species.id', +id); strain.set('species.id', +id);

View file

@ -49,6 +49,13 @@
</div> </div>
</div> </div>
</fieldset> </fieldset>
<div>
{{
protected/strains/show/measurements-table
model=strain
canEdit=strain.canEdit
}}
</div>
<br> <br>
<a class="button-red smaller" {{action 'cancel'}}> <a class="button-red smaller" {{action 'cancel'}}>
Cancel Cancel

View file

@ -1,3 +1,10 @@
input[type="text"] {
width: 100%;
box-sizing: border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
}
.ql-editor { .ql-editor {
font-size: 18px; font-size: 18px;
} }