Merge branch 'master' into clostridium
* master: Refactor characteristics/new Refactor characteristics/edit Refactor characteristics/show Refactor characteristics/index MetaData mixin Additional creation checks Set up tests for existing pod
This commit is contained in:
commit
dc5b54cfbf
29 changed files with 341 additions and 244 deletions
|
@ -16,4 +16,9 @@ export function testConfig() {
|
||||||
this.post('/species');
|
this.post('/species');
|
||||||
this.get('/species/:id');
|
this.get('/species/:id');
|
||||||
this.put('/species/:id');
|
this.put('/species/:id');
|
||||||
|
|
||||||
|
this.get('/characteristics');
|
||||||
|
this.post('/characteristics');
|
||||||
|
this.get('/characteristics/:id');
|
||||||
|
this.put('/characteristics/:id');
|
||||||
}
|
}
|
||||||
|
|
10
app/mirage/factories/characteristics.js
Normal file
10
app/mirage/factories/characteristics.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import Mirage, { faker } from 'ember-cli-mirage';
|
||||||
|
|
||||||
|
export default Mirage.Factory.extend({
|
||||||
|
characteristicName() { return faker.lorem.words().join(' '); },
|
||||||
|
characteristicTypeName() { return faker.lorem.words().join(' '); },
|
||||||
|
strains: [],
|
||||||
|
measurements: [],
|
||||||
|
sortOrder: faker.random.number(),
|
||||||
|
canEdit: faker.random.boolean(),
|
||||||
|
});
|
|
@ -4,12 +4,13 @@ import ajaxError from '../utils/ajax-error';
|
||||||
const { Mixin } = Ember;
|
const { Mixin } = Ember;
|
||||||
|
|
||||||
export default Mixin.create({
|
export default Mixin.create({
|
||||||
fallbackRoute: null,
|
fallbackRouteSave: null,
|
||||||
|
fallbackRouteCancel: null,
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
save: function(properties) {
|
save: function(properties) {
|
||||||
const model = this.get('model');
|
const model = this.get('model');
|
||||||
const fallbackRoute = this.get('fallbackRoute');
|
const fallbackRoute = this.get('fallbackRouteSave');
|
||||||
|
|
||||||
model.setProperties(properties);
|
model.setProperties(properties);
|
||||||
|
|
||||||
|
@ -30,7 +31,7 @@ export default Mixin.create({
|
||||||
model.get('errors').clear();
|
model.get('errors').clear();
|
||||||
model.rollbackAttributes();
|
model.rollbackAttributes();
|
||||||
|
|
||||||
this.transitionToRoute(this.get('fallbackRoute'), model);
|
this.transitionToRoute(this.get('fallbackRouteCancel'), model);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
14
app/mixins/setup-metadata.js
Normal file
14
app/mixins/setup-metadata.js
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
const { Mixin, inject: { service }} = Ember;
|
||||||
|
|
||||||
|
export default Mixin.create({
|
||||||
|
currentUser: service('session-account'),
|
||||||
|
metaData: null,
|
||||||
|
|
||||||
|
setupMetaDataOnInit: Ember.on('init', function() {
|
||||||
|
this.get('currentUser.account').then((user) => {
|
||||||
|
this.set('metaData', user.get('metaData'));
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
});
|
|
@ -1,13 +1,60 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
import SetupMetaData from '../../../../mixins/setup-metadata';
|
||||||
|
|
||||||
|
const { Component } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend(SetupMetaData, {
|
||||||
|
// Read-only attributes
|
||||||
|
characteristic: null,
|
||||||
|
isDirty: false,
|
||||||
|
|
||||||
|
// Actions
|
||||||
|
"on-save": null,
|
||||||
|
"on-cancel": null,
|
||||||
|
"on-update": null,
|
||||||
|
|
||||||
|
// Property mapping
|
||||||
|
propertiesList: ['characteristicName', 'characteristicTypeName', 'sortOrder'],
|
||||||
|
characteristicName: null,
|
||||||
|
characteristicTypeName: null,
|
||||||
|
sortOrder: null,
|
||||||
|
|
||||||
|
resetOnInit: Ember.on('init', function() {
|
||||||
|
this.get('propertiesList').forEach((field) => {
|
||||||
|
const valueInCharacteristic = this.get('characteristic').get(field);
|
||||||
|
this.set(field, valueInCharacteristic);
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
|
||||||
|
updateField: function(property, value) {
|
||||||
|
this.set(property, value);
|
||||||
|
// Manually compare against passed in value
|
||||||
|
if (this.get('characteristic').get(property) !== value) {
|
||||||
|
this.set('isDirty', true);
|
||||||
|
} else {
|
||||||
|
this.set('isDirty', false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
|
||||||
actions: {
|
actions: {
|
||||||
save: function() {
|
save: function() {
|
||||||
this.sendAction('save');
|
return this.attrs['on-save'](this.getProperties(this.get('propertiesList')));
|
||||||
},
|
},
|
||||||
|
|
||||||
cancel: function() {
|
cancel: function() {
|
||||||
this.sendAction('cancel');
|
return this.attrs['on-cancel']();
|
||||||
},
|
},
|
||||||
}
|
|
||||||
|
characteristicNameDidChange: function(value) {
|
||||||
|
this.updateField('characteristicName', value);
|
||||||
|
},
|
||||||
|
|
||||||
|
characteristicTypeNameDidChange: function(value) {
|
||||||
|
this.updateField('characteristicTypeName', value);
|
||||||
|
},
|
||||||
|
|
||||||
|
sortOrderDidChange: function(value) {
|
||||||
|
this.updateField('sortOrder', value);
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
<form class="grid-form" {{action 'save' on='submit'}}>
|
<form class="grid-form" {{action 'save' on='submit'}}>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend><em>{{characteristic.characteristicName}}</em></legend>
|
<legend><em>{{characteristicName}}</em></legend>
|
||||||
<div data-row-span="1">
|
<div data-row-span="1">
|
||||||
<div data-field-span="1">
|
<div data-field-span="1">
|
||||||
<label>Characteristic Name</label>
|
<label>Characteristic Name</label>
|
||||||
{{input value=characteristic.characteristicName}}
|
{{one-way-input type="text" class="characteristic-name" value=characteristicName update=(action "characteristicNameDidChange")}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div data-row-span="2">
|
<div data-row-span="2">
|
||||||
<div data-field-span="1">
|
<div data-field-span="1">
|
||||||
<label>Characteristic Type</label>
|
<label>Characteristic Type</label>
|
||||||
{{input value=characteristic.characteristicTypeName}}
|
{{one-way-input type="text" class="characteristic-type-name" value=characteristicTypeName update=(action "characteristicTypeNameDidChange")}}
|
||||||
</div>
|
</div>
|
||||||
<div data-field-span="1">
|
<div data-field-span="1">
|
||||||
<label>Sort Order</label>
|
<label>Sort Order</label>
|
||||||
{{input value=characteristic.sortOrder}}
|
{{one-way-input type="text" class="sort-order" value=sortOrder update=(action "sortOrderDidChange")}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
@ -22,8 +22,8 @@
|
||||||
<a class="button-red smaller" {{action 'cancel'}}>
|
<a class="button-red smaller" {{action 'cancel'}}>
|
||||||
Cancel
|
Cancel
|
||||||
</a>
|
</a>
|
||||||
{{#if characteristic.hasDirtyAttributes}}
|
{{#if isDirty}}
|
||||||
<button type="submit" class="button-green smaller">
|
<button type="submit" class="button-green smaller save-characteristic">
|
||||||
Save
|
Save
|
||||||
</button>
|
</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -1,32 +1,10 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import ajaxError from '../../../../utils/ajax-error';
|
import SaveModel from '../../../../mixins/save-model';
|
||||||
|
|
||||||
export default Ember.Controller.extend({
|
const { Controller } = Ember;
|
||||||
actions: {
|
|
||||||
save: function() {
|
|
||||||
let characteristic = this.get('model');
|
|
||||||
|
|
||||||
if (characteristic.get('hasDirtyAttributes')) {
|
export default Controller.extend(SaveModel, {
|
||||||
characteristic.save().then((characteristic) => {
|
// Required for SaveModel mixin
|
||||||
this.transitionToRoute('protected.characteristics.show', characteristic);
|
fallbackRouteSave: 'protected.characteristics.show',
|
||||||
}, () => {
|
fallbackRouteCancel: 'protected.characteristics.index',
|
||||||
ajaxError(characteristic.get('errors'), this.get('flashMessages'));
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
characteristic.destroyRecord().then(() => {
|
|
||||||
this.transitionToRoute('protected.characteristics.show', characteristic);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
cancel: function() {
|
|
||||||
let characteristic = this.get('model');
|
|
||||||
|
|
||||||
characteristic.get('errors').clear();
|
|
||||||
characteristic.rollbackAttributes();
|
|
||||||
|
|
||||||
this.transitionToRoute('protected.characteristics.show', characteristic);
|
|
||||||
},
|
|
||||||
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,25 +1,15 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
import ElevatedAccess from '../../../../mixins/elevated-access';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
const { Route } = Ember;
|
||||||
currentUser: Ember.inject.service('session-account'),
|
|
||||||
|
|
||||||
beforeModel: function(transition) {
|
export default Route.extend(ElevatedAccess, {
|
||||||
this._super(transition);
|
// Required for ElevatedAccess mixin
|
||||||
this.get('currentUser.account').then((user) => {
|
fallbackRouteBefore: 'protected.characteristics.index',
|
||||||
if (user.get('isReader')) {
|
fallbackRouteAfter: 'protected.characteristics.show',
|
||||||
this.transitionTo('protected.characteristics.index');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
model: function(params) {
|
model: function(params) {
|
||||||
return this.store.findRecord('characteristic', params.characteristic_id, { reload: true });
|
return this.store.findRecord('characteristic', params.characteristic_id);
|
||||||
},
|
|
||||||
|
|
||||||
afterModel: function(model) {
|
|
||||||
if (!model.get('canEdit')) {
|
|
||||||
this.transitionTo('characteristics.show', model.get('id'));
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{{
|
{{
|
||||||
protected/characteristics/characteristic-form
|
protected/characteristics/characteristic-form
|
||||||
characteristic=model
|
characteristic=model
|
||||||
save="save"
|
on-save=(action "save")
|
||||||
cancel="cancel"
|
on-cancel=(action "cancel")
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import SetupMetaData from '../../../../../mixins/setup-metadata';
|
||||||
|
|
||||||
|
const { Component } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend(SetupMetaData, {
|
||||||
|
characteristics: null,
|
||||||
|
|
||||||
|
sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
|
||||||
|
sortedCharacteristics: Ember.computed.sort('characteristics', 'sortParams'),
|
||||||
|
|
||||||
|
});
|
|
@ -0,0 +1,26 @@
|
||||||
|
<h3 id="total-characteristics">Total characteristics: {{characteristics.length}}</h3>
|
||||||
|
|
||||||
|
{{add-button label="Add Characteristic" link="protected.characteristics.new" canAdd=metaData.canAdd}}
|
||||||
|
|
||||||
|
<table class="flakes-table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Type</th>
|
||||||
|
<th>Sort Order</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{#each sortedCharacteristics as |row|}}
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
{{#link-to 'protected.characteristics.show' row}}
|
||||||
|
{{row.characteristicName}}
|
||||||
|
{{/link-to}}
|
||||||
|
</td>
|
||||||
|
<td>{{row.characteristicTypeName}}</td>
|
||||||
|
<td>{{row.sortOrder}}</td>
|
||||||
|
</tr>
|
||||||
|
{{/each}}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
|
@ -1,6 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Controller.extend({
|
|
||||||
sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
|
|
||||||
sortedCharacteristics: Ember.computed.sort('model', 'sortParams'),
|
|
||||||
});
|
|
|
@ -1,17 +1,10 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
const { Route } = Ember;
|
||||||
currentUser: Ember.inject.service('session-account'),
|
|
||||||
|
|
||||||
|
export default Route.extend({
|
||||||
model: function() {
|
model: function() {
|
||||||
return this.store.findAll('characteristic');
|
return this.store.findAll('characteristic');
|
||||||
},
|
},
|
||||||
|
|
||||||
setupController: function(controller, model) {
|
|
||||||
controller.set('model', model);
|
|
||||||
this.get('currentUser.account').then((user) => {
|
|
||||||
controller.set('metaData', user.get('metaData'));
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,27 +1,6 @@
|
||||||
<h2>{{genus-name}} Characteristics</h2>
|
<h2>{{genus-name}} Characteristics</h2>
|
||||||
<h3>Total characteristics: {{model.length}}</h3>
|
|
||||||
|
|
||||||
{{add-button label="Add Characteristic" link="protected.characteristics.new" canAdd=metaData.canAdd}}
|
{{
|
||||||
|
protected/characteristics/index/characteristics-table
|
||||||
<table class="flakes-table">
|
characteristics=model
|
||||||
<thead>
|
}}
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Type</th>
|
|
||||||
<th>Sort Order</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each sortedCharacteristics as |row|}}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
{{#link-to 'protected.characteristics.show' row}}
|
|
||||||
{{row.characteristicName}}
|
|
||||||
{{/link-to}}
|
|
||||||
</td>
|
|
||||||
<td>{{row.characteristicTypeName}}</td>
|
|
||||||
<td>{{row.sortOrder}}</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
|
@ -1,29 +1,10 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import ajaxError from '../../../../utils/ajax-error';
|
import SaveModel from '../../../../mixins/save-model';
|
||||||
|
|
||||||
export default Ember.Controller.extend({
|
const { Controller } = Ember;
|
||||||
actions: {
|
|
||||||
save: function() {
|
|
||||||
let characteristic = this.get('model');
|
|
||||||
|
|
||||||
if (characteristic.get('hasDirtyAttributes')) {
|
export default Controller.extend(SaveModel, {
|
||||||
characteristic.save().then((characteristic) => {
|
// Required for SaveModel mixin
|
||||||
this.transitionToRoute('protected.characteristics.show', characteristic);
|
fallbackRouteSave: 'protected.characteristics.show',
|
||||||
}, () => {
|
fallbackRouteCancel: 'protected.characteristics.index',
|
||||||
ajaxError(characteristic.get('errors'), this.get('flashMessages'));
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
characteristic.destroyRecord().then(() => {
|
|
||||||
this.transitionToRoute('protected.characteristics.index');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
cancel: function() {
|
|
||||||
this.get('model').destroyRecord().then(() => {
|
|
||||||
this.transitionToRoute('protected.characteristics.index');
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,30 +1,14 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
import ElevatedAccess from '../../../../mixins/elevated-access';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
const { Route } = Ember;
|
||||||
currentUser: Ember.inject.service('session-account'),
|
|
||||||
|
|
||||||
beforeModel: function(transition) {
|
export default Route.extend(ElevatedAccess, {
|
||||||
this._super(transition);
|
// Required for ElevatedAccess mixin
|
||||||
this.get('currentUser.account').then((user) => {
|
fallbackRouteBefore: 'protected.characteristics.index',
|
||||||
if (user.get('isReader')) {
|
fallbackRouteAfter: 'protected.characteristics.show',
|
||||||
this.transitionTo('protected.characteristics.index');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
model: function() {
|
model: function() {
|
||||||
return this.store.createRecord('characteristic');
|
return this.store.createRecord('characteristic');
|
||||||
},
|
},
|
||||||
|
|
||||||
actions: {
|
|
||||||
willTransition: function(/*transition*/) {
|
|
||||||
const controller = this.get('controller');
|
|
||||||
const characteristic = controller.get('model');
|
|
||||||
|
|
||||||
if (characteristic.get('isNew')) {
|
|
||||||
characteristic.destroyRecord();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{{
|
{{
|
||||||
protected/characteristics/characteristic-form
|
protected/characteristics/characteristic-form
|
||||||
characteristic=model
|
characteristic=model
|
||||||
save="save"
|
on-save=(action "save")
|
||||||
cancel="cancel"
|
on-cancel=(action "cancel")
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
const { Component } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend({
|
||||||
|
characteristic: null,
|
||||||
|
"on-delete": null,
|
||||||
|
|
||||||
|
actions: {
|
||||||
|
deleteCharacteristic: function() {
|
||||||
|
return this.attrs['on-delete']();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
|
@ -0,0 +1,55 @@
|
||||||
|
<div class="grid-1">
|
||||||
|
<div class="span-1">
|
||||||
|
<fieldset class="flakes-information-box">
|
||||||
|
<legend>
|
||||||
|
{{characteristic.characteristicName}}
|
||||||
|
</legend>
|
||||||
|
|
||||||
|
{{! ROW 1 }}
|
||||||
|
<div class="grid-2 gutter-20">
|
||||||
|
<dl class="span-1">
|
||||||
|
<dt>Characteristic Type</dt>
|
||||||
|
<dd>
|
||||||
|
{{characteristic.characteristicTypeName}}
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl class="span-1">
|
||||||
|
<dt>Sort Order</dt>
|
||||||
|
<dd>
|
||||||
|
{{characteristic.sortOrder}}
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{! ROW 2 }}
|
||||||
|
<div class="grid-2 gutter-20">
|
||||||
|
<dl class="span-2">
|
||||||
|
<dt>Measurements</dt>
|
||||||
|
<dd>
|
||||||
|
<p>To add/edit/remove a measurement, please visit the strain's page (links below)</p>
|
||||||
|
{{protected/characteristics/show/measurements-table characteristic=characteristic}}
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{! ROW 3 }}
|
||||||
|
<div class="grid-2 gutter-20">
|
||||||
|
<dl class="span-1">
|
||||||
|
<dt>Record Created</dt>
|
||||||
|
<dd>{{null-time characteristic.createdAt 'LL'}}</dd>
|
||||||
|
</dl>
|
||||||
|
<dl class="span-1">
|
||||||
|
<dt>Record Updated</dt>
|
||||||
|
<dd>{{null-time characteristic.updatedAt 'LL'}}</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{#if characteristic.canEdit}}
|
||||||
|
<br>
|
||||||
|
{{#link-to 'protected.characteristics.edit' characteristic.id class="button-gray smaller"}}
|
||||||
|
Edit
|
||||||
|
{{/link-to}}
|
||||||
|
{{delete-button delete=(action 'deleteCharacteristic')}}
|
||||||
|
{{/if}}
|
|
@ -1,12 +1,9 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
import DeleteModel from '../../../../mixins/delete-model';
|
||||||
|
|
||||||
export default Ember.Controller.extend({
|
const { Controller } = Ember;
|
||||||
actions: {
|
|
||||||
delete: function() {
|
|
||||||
this.get('model').destroyRecord().then(() => {
|
|
||||||
this.transitionToRoute('protected.characteristics.index');
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
|
export default Controller.extend(DeleteModel, {
|
||||||
|
// Required for DeleteModel mixin
|
||||||
|
transitionRoute: 'protected.characteristics.index',
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,19 +1,24 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
const { Component, computed } = Ember;
|
||||||
measurementsPresent: function() {
|
const { sort } = computed;
|
||||||
return this.get('model.measurements.length') > 0;
|
|
||||||
}.property('model.measurements'),
|
export default Component.extend({
|
||||||
|
characteristic: null,
|
||||||
|
|
||||||
|
measurementsPresent: computed('characteristic', function() {
|
||||||
|
return this.get('characteristic.measurements.length') > 0;
|
||||||
|
}),
|
||||||
|
|
||||||
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
|
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
|
||||||
sortAsc: true,
|
sortAsc: true,
|
||||||
paramsChanged: false,
|
paramsChanged: false,
|
||||||
sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'),
|
sortedMeasurements: sort('characteristic.measurements', 'sortParams'),
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
changeSortParam: function(col) {
|
changeSortParam: function(col) {
|
||||||
let sort = this.get('sortAsc') ? 'asc' : 'desc';
|
const sort = this.get('sortAsc') ? 'asc' : 'desc';
|
||||||
let sortCol = `${col}:${sort}`;
|
const sortCol = `${col}:${sort}`;
|
||||||
this.set('sortParams', [sortCol]);
|
this.set('sortParams', [sortCol]);
|
||||||
this.set('paramsChanged', true);
|
this.set('paramsChanged', true);
|
||||||
this.toggleProperty('sortAsc');
|
this.toggleProperty('sortAsc');
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
const { Route } = Ember;
|
||||||
|
|
||||||
|
export default Route.extend({
|
||||||
model: function(params) {
|
model: function(params) {
|
||||||
return this.store.findRecord('characteristic', params.characteristic_id, { reload: true });
|
return this.store.findRecord('characteristic', params.characteristic_id);
|
||||||
},
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,55 +1,5 @@
|
||||||
<div class="grid-1">
|
{{
|
||||||
<div class="span-1">
|
protected/characteristics/show/characteristic-card
|
||||||
<fieldset class="flakes-information-box">
|
characteristic=model
|
||||||
<legend>
|
on-delete=(action 'delete')
|
||||||
{{model.characteristicName}}
|
}}
|
||||||
</legend>
|
|
||||||
|
|
||||||
{{! ROW 1 }}
|
|
||||||
<div class="grid-2 gutter-20">
|
|
||||||
<dl class="span-1">
|
|
||||||
<dt>Characteristic Type</dt>
|
|
||||||
<dd>
|
|
||||||
{{model.characteristicTypeName}}
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
<dl class="span-1">
|
|
||||||
<dt>Sort Order</dt>
|
|
||||||
<dd>
|
|
||||||
{{model.sortOrder}}
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{! ROW 2 }}
|
|
||||||
<div class="grid-2 gutter-20">
|
|
||||||
<dl class="span-2">
|
|
||||||
<dt>Measurements</dt>
|
|
||||||
<dd>
|
|
||||||
<p>To add/edit/remove a measurement, please visit the strain's page (links below)</p>
|
|
||||||
{{protected/characteristics/show/measurements-table model=model}}
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{! ROW 3 }}
|
|
||||||
<div class="grid-2 gutter-20">
|
|
||||||
<dl class="span-1">
|
|
||||||
<dt>Record Created</dt>
|
|
||||||
<dd>{{null-time model.createdAt 'LL'}}</dd>
|
|
||||||
</dl>
|
|
||||||
<dl class="span-1">
|
|
||||||
<dt>Record Updated</dt>
|
|
||||||
<dd>{{null-time model.updatedAt 'LL'}}</dd>
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{#if model.canEdit}}
|
|
||||||
<br>
|
|
||||||
{{#link-to 'protected.characteristics.edit' model.id class="button-gray smaller"}}
|
|
||||||
Edit
|
|
||||||
{{/link-to}}
|
|
||||||
{{delete-button delete=(action 'delete')}}
|
|
||||||
{{/if}}
|
|
||||||
|
|
|
@ -5,5 +5,6 @@ const { Controller } = Ember;
|
||||||
|
|
||||||
export default Controller.extend(SaveModel, {
|
export default Controller.extend(SaveModel, {
|
||||||
// Required for SaveModel mixin
|
// Required for SaveModel mixin
|
||||||
fallbackRoute: 'protected.species.show',
|
fallbackRouteSave: 'protected.species.show',
|
||||||
|
fallbackRouteCancel: 'protected.species.show',
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,19 +1,11 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
import SetupMetaData from '../../../../../mixins/setup-metadata';
|
||||||
|
|
||||||
const { Component, inject: { service }} = Ember;
|
const { Component } = Ember;
|
||||||
|
|
||||||
export default Component.extend({
|
export default Component.extend(SetupMetaData, {
|
||||||
currentUser: service('session-account'),
|
|
||||||
|
|
||||||
metaData: null,
|
|
||||||
species: null,
|
species: null,
|
||||||
|
|
||||||
setupMetaDataOnInit: Ember.on('init', function() {
|
|
||||||
this.get('currentUser.account').then((user) => {
|
|
||||||
this.set('metaData', user.get('metaData'));
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
|
|
||||||
sortParams: ['speciesName', 'strainCount'],
|
sortParams: ['speciesName', 'strainCount'],
|
||||||
sortedSpecies: Ember.computed.sort('species', 'sortParams'),
|
sortedSpecies: Ember.computed.sort('species', 'sortParams'),
|
||||||
|
|
||||||
|
|
|
@ -5,5 +5,6 @@ const { Controller } = Ember;
|
||||||
|
|
||||||
export default Controller.extend(SaveModel, {
|
export default Controller.extend(SaveModel, {
|
||||||
// Required for SaveModel mixin
|
// Required for SaveModel mixin
|
||||||
fallbackRoute: 'protected.species.show',
|
fallbackRouteSave: 'protected.species.show',
|
||||||
|
fallbackRouteCancel: 'protected.species.index',
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
import SetupMetaData from '../../../../mixins/setup-metadata';
|
||||||
|
|
||||||
const { Component, inject: { service } } = Ember;
|
const { Component } = Ember;
|
||||||
|
|
||||||
export default Component.extend({
|
|
||||||
currentUser: service('session-account'),
|
|
||||||
|
|
||||||
|
export default Component.extend(SetupMetaData, {
|
||||||
// Read-only attributes
|
// Read-only attributes
|
||||||
species: null,
|
species: null,
|
||||||
isNew: null,
|
isNew: null,
|
||||||
|
@ -31,12 +30,6 @@ export default Component.extend({
|
||||||
this.set('isNew', this.get('species.isNew'));
|
this.set('isNew', this.get('species.isNew'));
|
||||||
}),
|
}),
|
||||||
|
|
||||||
setupMetaDataOnInit: Ember.on('init', function() {
|
|
||||||
this.get('currentUser.account').then((user) => {
|
|
||||||
this.set('metaData', user.get('metaData'));
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
|
|
||||||
updateField: function(property, value) {
|
updateField: function(property, value) {
|
||||||
this.set(property, value);
|
this.set(property, value);
|
||||||
// Manually compare against passed in value
|
// Manually compare against passed in value
|
||||||
|
|
72
tests/acceptance/characteristics-test.js
Normal file
72
tests/acceptance/characteristics-test.js
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import { module, test } from 'qunit';
|
||||||
|
import startApp from '../helpers/start-app';
|
||||||
|
import { authenticateSession } from '../helpers/ember-simple-auth';
|
||||||
|
|
||||||
|
module('Acceptance | characteristics', {
|
||||||
|
beforeEach: function() {
|
||||||
|
this.application = startApp();
|
||||||
|
authenticateSession(this.application, {
|
||||||
|
access_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJiYWN0ZGIiLCJzdWIiOiIxIiwiZXhwIjoxNDQ2NTAyMjI2LCJpYXQiOjE0NDY0OTg2MjZ9.vIjKHAsp2TkCV505EbtCo2xQT-2oQkB-Nv5y0b6E7Mg"
|
||||||
|
});
|
||||||
|
server.create('users', { role: 'A', canEdit: true });
|
||||||
|
},
|
||||||
|
|
||||||
|
afterEach: function() {
|
||||||
|
Ember.run(this.application, 'destroy');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test('visiting /characteristics', function(assert) {
|
||||||
|
const characteristics = server.createList('characteristics', 20);
|
||||||
|
visit('/characteristics');
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(currentURL(), '/characteristics');
|
||||||
|
assert.equal(find(".flakes-table > tbody > tr").length, characteristics.length);
|
||||||
|
assert.equal(find("#total-characteristics").text(), "Total characteristics: 20");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
test('visiting /characteristics/:id', function(assert) {
|
||||||
|
const characteristic = server.create('characteristics');
|
||||||
|
visit(`/characteristics/${characteristic.id}`);
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(currentURL(), `/characteristics/${characteristic.id}`);
|
||||||
|
assert.equal(find(".flakes-information-box > legend").text().trim(), characteristic.characteristicName);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('editing /characteristics/:id/edit', function(assert) {
|
||||||
|
const characteristic = server.create('characteristics', { 'canEdit': true });
|
||||||
|
visit(`/characteristics/${characteristic.id}/edit`);
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(currentURL(), `/characteristics/${characteristic.id}/edit`);
|
||||||
|
|
||||||
|
fillIn('.characteristic-name', 'Revised Characteristic Name');
|
||||||
|
click('.save-characteristic');
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(currentURL(), `/characteristics/${characteristic.id}`);
|
||||||
|
assert.equal(find(".flakes-information-box > legend").text().trim(), 'Revised Characteristic Name');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('creating /characteristics/new', function(assert) {
|
||||||
|
visit(`/characteristics/new`);
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(currentURL(), `/characteristics/new`);
|
||||||
|
fillIn('.characteristic-name', 'New Characteristic Name');
|
||||||
|
click('.save-characteristic');
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(find(".flakes-information-box > legend").text().trim(), 'New Characteristic Name');
|
||||||
|
assert.equal(server.db.characteristics.length, 1);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -65,6 +65,7 @@ test('creating /species/new', function(assert) {
|
||||||
|
|
||||||
andThen(function() {
|
andThen(function() {
|
||||||
assert.equal(find(".flakes-information-box > legend > em").text().trim(), 'New Species Name');
|
assert.equal(find(".flakes-information-box > legend > em").text().trim(), 'New Species Name');
|
||||||
|
assert.equal(server.db.species.length, 1);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue