Merge branch 'master' into clostridium
* master: Notes Cleaning up measurement edit Dummy measurement edit Fix login error transition
This commit is contained in:
commit
56888c7fba
12 changed files with 116 additions and 47 deletions
|
@ -3,9 +3,7 @@ import DS from 'ember-data';
|
|||
export default DS.Model.extend({
|
||||
strain : DS.belongsTo('strain', { async: false }),
|
||||
characteristic : DS.belongsTo('characteristic', { async: false }),
|
||||
textMeasurementType: DS.attr('string'),
|
||||
txtValue : DS.attr('string'),
|
||||
numValue : DS.attr('number'),
|
||||
value : DS.attr('string'),
|
||||
confidenceInterval : DS.attr('number'),
|
||||
unitType : DS.attr('string'),
|
||||
notes : DS.attr('string'),
|
||||
|
@ -14,17 +12,4 @@ export default DS.Model.extend({
|
|||
updatedAt : DS.attr('date'),
|
||||
createdBy : 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'),
|
||||
});
|
||||
|
|
1
app/pods/application/loading/template.hbs
Normal file
1
app/pods/application/loading/template.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
{{loading-panel}}
|
|
@ -11,6 +11,7 @@ export default Ember.Controller.extend({
|
|||
this.get('flashMessages').clearMessages();
|
||||
this.transitionToRoute('loading').then(() => {
|
||||
session.authenticate(authenticator, credentials).then(null, (error)=> {
|
||||
this.transitionToRoute('login');
|
||||
this.get('flashMessages').error(error.error);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -5,6 +5,7 @@ export default Ember.Component.extend({
|
|||
return this.get('model.measurements.length') > 0;
|
||||
}.property('model.measurements'),
|
||||
|
||||
// TODO: this is way more complicated than it should be
|
||||
measurementsTable: function() {
|
||||
let measurements = this.get('model.measurements');
|
||||
let table = [];
|
||||
|
|
|
@ -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();
|
||||
},
|
||||
|
||||
},
|
||||
});
|
|
@ -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}}
|
|
@ -5,21 +5,13 @@ export default Ember.Component.extend({
|
|||
return this.get('model.measurements.length') > 0;
|
||||
}.property('model.measurements'),
|
||||
|
||||
measurementsTable: function() {
|
||||
let measurements = this.get('model.measurements');
|
||||
let table = [];
|
||||
measurements.forEach((measurement) => {
|
||||
let row = {};
|
||||
row['measurement'] = measurement;
|
||||
row['characteristic'] = this.store.peekRecord('characteristic', measurement.get('characteristic.id'));
|
||||
table.push(row);
|
||||
});
|
||||
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(),
|
||||
fetchCharacteristics: function() {
|
||||
if (this.get('canEdit')) {
|
||||
this.store.findAll('characteristic');
|
||||
}
|
||||
}.on('didInsertElement'),
|
||||
|
||||
sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
|
||||
sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'),
|
||||
|
||||
});
|
||||
|
|
|
@ -1,27 +1,34 @@
|
|||
{{#if measurementsPresent}}
|
||||
<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>
|
||||
<tr>
|
||||
<th>Characteristic</th>
|
||||
<th>Value</th>
|
||||
<th>Notes</th>
|
||||
{{#if canEdit}}
|
||||
<th>Edit</th>
|
||||
{{/if}}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each measurementsTable as |row|}}
|
||||
<tr>
|
||||
<td>
|
||||
{{#link-to 'protected.characteristics.show' row.characteristic.id}}
|
||||
{{{row.characteristic.characteristicName}}}
|
||||
{{/link-to}}
|
||||
</td>
|
||||
<td>
|
||||
{{row.measurement.value}}
|
||||
</td>
|
||||
<td>
|
||||
{{row.measurement.notes}}
|
||||
</td>
|
||||
</tr>
|
||||
{{#each sortedMeasurements as |measurement|}}
|
||||
{{
|
||||
protected/strains/show/measurements-table-row
|
||||
row=measurement
|
||||
canEdit=canEdit
|
||||
}}
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -73,7 +73,11 @@
|
|||
<dl class="span-1">
|
||||
<dt>Characteristics</dt>
|
||||
<dd>
|
||||
{{protected/strains/show/measurements-table model=model}}
|
||||
{{
|
||||
protected/strains/show/measurements-table
|
||||
model=model
|
||||
canEdit=false
|
||||
}}
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
|
|
|
@ -4,6 +4,7 @@ export default Ember.Component.extend({
|
|||
actions: {
|
||||
save: function() {
|
||||
// Need to override the string id for some reason
|
||||
// TODO: check this
|
||||
let strain = this.get('strain');
|
||||
let id = strain.get('species.id');
|
||||
strain.set('species.id', +id);
|
||||
|
|
|
@ -49,6 +49,13 @@
|
|||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<div>
|
||||
{{
|
||||
protected/strains/show/measurements-table
|
||||
model=strain
|
||||
canEdit=strain.canEdit
|
||||
}}
|
||||
</div>
|
||||
<br>
|
||||
<a class="button-red smaller" {{action 'cancel'}}>
|
||||
Cancel
|
||||
|
|
|
@ -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 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
|
Reference in a new issue