Dummy measurement edit
This commit is contained in:
parent
fa6507be66
commit
40f2b789e4
6 changed files with 93 additions and 14 deletions
|
@ -0,0 +1,17 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
tagName: 'tr',
|
||||
isEditing: false,
|
||||
|
||||
actions: {
|
||||
edit: function() {
|
||||
this.toggleProperty('isEditing');
|
||||
},
|
||||
|
||||
save: function() {
|
||||
this.toggleProperty('isEditing');
|
||||
console.log('saved');
|
||||
}
|
||||
},
|
||||
});
|
|
@ -0,0 +1,37 @@
|
|||
{{#if isEditing}}
|
||||
<td>
|
||||
{{input value='Foo'}}
|
||||
</td>
|
||||
<td>
|
||||
{{input value='Bar'}}
|
||||
</td>
|
||||
<td>
|
||||
{{input value='Baz'}}
|
||||
</td>
|
||||
{{#if canEdit}}
|
||||
<td>
|
||||
<button class="button-gray 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.measurement.value}}
|
||||
</td>
|
||||
<td>
|
||||
{{row.measurement.notes}}
|
||||
</td>
|
||||
{{#if canEdit}}
|
||||
<td>
|
||||
<button class="button-gray smaller" {{action 'edit'}}>
|
||||
Edit
|
||||
</button>
|
||||
</td>
|
||||
{{/if}}
|
||||
{{/if}}
|
|
@ -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>
|
||||
{{
|
||||
protected/strains/show/measurements-table-row
|
||||
row=row
|
||||
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>
|
||||
|
|
|
@ -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