Merge branch 'pods'
* pods: Sortable table component Pods, pods, everywhere
This commit is contained in:
commit
2229399aa6
84 changed files with 290 additions and 199 deletions
|
@ -1,9 +1,4 @@
|
||||||
{
|
{
|
||||||
/**
|
"disableAnalytics": true,
|
||||||
Ember CLI sends analytics information by default. The data is completely
|
"usePods": true
|
||||||
anonymous, but there are times when you might want to disable this behavior.
|
|
||||||
|
|
||||||
Setting `disableAnalytics` to true will prevent any data from being sent.
|
|
||||||
*/
|
|
||||||
"disableAnalytics": true
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
import SortableController from '../sortable';
|
|
||||||
|
|
||||||
export default SortableController.extend({
|
|
||||||
sortBy: 'characteristicName',
|
|
||||||
});
|
|
|
@ -1,5 +0,0 @@
|
||||||
import SortableController from '../sortable';
|
|
||||||
|
|
||||||
export default SortableController.extend({
|
|
||||||
sortBy: 'characteristic',
|
|
||||||
});
|
|
|
@ -1,5 +0,0 @@
|
||||||
import SortableController from '../sortable';
|
|
||||||
|
|
||||||
export default SortableController.extend({
|
|
||||||
sortBy: 'fullName',
|
|
||||||
});
|
|
|
@ -1,6 +1,6 @@
|
||||||
import DS from 'ember-data';
|
import DS from 'ember-data';
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import config from '../config/environment';
|
import config from '../../config/environment';
|
||||||
|
|
||||||
export default DS.RESTAdapter.extend({
|
export default DS.RESTAdapter.extend({
|
||||||
namespace: 'api/' + config.genus,
|
namespace: 'api/' + config.genus,
|
17
app/pods/characteristics/route.js
Normal file
17
app/pods/characteristics/route.js
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
|
model: function() {
|
||||||
|
return this.store.findAll('characteristic');
|
||||||
|
},
|
||||||
|
setupController: function(controller, model) {
|
||||||
|
var tableAttrs = [
|
||||||
|
{ name: 'Name', attr: 'characteristicName' },
|
||||||
|
{ name: 'Type', attr: 'characteristicType' }
|
||||||
|
];
|
||||||
|
controller.set('model', model);
|
||||||
|
controller.set('tableAttrs', tableAttrs);
|
||||||
|
controller.set('row', 'characteristic-index-row');
|
||||||
|
},
|
||||||
|
});
|
4
app/pods/characteristics/template.hbs
Normal file
4
app/pods/characteristics/template.hbs
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<h2>{{genus-name}} Characteristics</h2>
|
||||||
|
<h3>Total characteristics: {{model.length}}</h3>
|
||||||
|
|
||||||
|
{{sortable-table content=model tableAttrs=tableAttrs row=row}}
|
|
@ -1,4 +1,5 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
export default Ember.Component.extend({
|
||||||
|
tagName: 'tr',
|
||||||
});
|
});
|
|
@ -0,0 +1,6 @@
|
||||||
|
<td>
|
||||||
|
{{data.characteristicName}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{data.characteristicType}}
|
||||||
|
</td>
|
|
@ -1,5 +1,5 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import config from '../config/environment';
|
import config from '../../../config/environment';
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
export default Ember.Component.extend({
|
||||||
tagName: 'em',
|
tagName: 'em',
|
|
@ -1,8 +1,6 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import layout from '../templates/components/scientific-name';
|
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
export default Ember.Component.extend({
|
||||||
layout: layout,
|
|
||||||
tagName: 'span',
|
tagName: 'span',
|
||||||
strain: null, // passed in
|
strain: null, // passed in
|
||||||
});
|
});
|
13
app/pods/components/sortable-table-header/component.js
Normal file
13
app/pods/components/sortable-table-header/component.js
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Component.extend({
|
||||||
|
tagName: 'th',
|
||||||
|
upArrow: '▲',
|
||||||
|
downArrow: '▼',
|
||||||
|
|
||||||
|
actions: {
|
||||||
|
sortBy: function(sortProperty, ascending) {
|
||||||
|
this.sendAction('action', sortProperty, ascending);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
3
app/pods/components/sortable-table-header/template.hbs
Normal file
3
app/pods/components/sortable-table-header/template.hbs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{{title}}
|
||||||
|
<span {{action 'sortBy' sortProperty true}}>{{{upArrow}}}</span>
|
||||||
|
<span {{action 'sortBy' sortProperty false}}>{{{downArrow}}}</span>
|
13
app/pods/components/sortable-table/component.js
Normal file
13
app/pods/components/sortable-table/component.js
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Component.extend(Ember.SortableMixin, {
|
||||||
|
tagName: 'table',
|
||||||
|
classNames: ['flakes-table'],
|
||||||
|
|
||||||
|
actions: {
|
||||||
|
sortBy: function(property, ascending) {
|
||||||
|
this.set('sortAscending', ascending);
|
||||||
|
this.set('sortProperties', [property]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
13
app/pods/components/sortable-table/template.hbs
Normal file
13
app/pods/components/sortable-table/template.hbs
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
{{#each a in tableAttrs}}
|
||||||
|
{{sortable-table-header title=a.name sortProperty=a.attr action="sortBy"}}
|
||||||
|
{{/each}}
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
{{#each item in arrangedContent}}
|
||||||
|
{{component row data=item}}
|
||||||
|
{{/each}}
|
||||||
|
</tbody>
|
5
app/pods/components/species-index-row/component.js
Normal file
5
app/pods/components/species-index-row/component.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Component.extend({
|
||||||
|
tagName: 'tr',
|
||||||
|
});
|
13
app/pods/components/species-index-row/template.hbs
Normal file
13
app/pods/components/species-index-row/template.hbs
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<td>
|
||||||
|
{{#link-to 'species.show' data}}
|
||||||
|
{{data.speciesName}}
|
||||||
|
{{/link-to}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{#each data.strains as |strain index|}}
|
||||||
|
{{if index ","}}
|
||||||
|
{{#link-to 'strains.show' strain.id}}
|
||||||
|
{{strain.strainName}}
|
||||||
|
{{/link-to}}
|
||||||
|
{{/each}}
|
||||||
|
</td>
|
5
app/pods/components/strain-index-row/component.js
Normal file
5
app/pods/components/strain-index-row/component.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Component.extend({
|
||||||
|
tagName: 'tr',
|
||||||
|
});
|
8
app/pods/components/strain-index-row/template.hbs
Normal file
8
app/pods/components/strain-index-row/template.hbs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<td>
|
||||||
|
{{#link-to 'strains.show' data.id}}
|
||||||
|
{{scientific-name strain=data}}
|
||||||
|
{{/link-to}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{data.totalMeasurements}}
|
||||||
|
</td>
|
|
@ -1,4 +1,4 @@
|
||||||
import SortableController from '../sortable';
|
import SortableController from '../../../controllers/sortable';
|
||||||
|
|
||||||
export default SortableController.extend({
|
export default SortableController.extend({
|
||||||
sortBy: 'speciesName',
|
sortBy: 'speciesName',
|
17
app/pods/species/index/route.js
Normal file
17
app/pods/species/index/route.js
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
|
model: function() {
|
||||||
|
return this.store.findAll('species');
|
||||||
|
},
|
||||||
|
setupController: function(controller, model) {
|
||||||
|
var tableAttrs = [
|
||||||
|
{ name: 'Name', attr: 'speciesName' },
|
||||||
|
{ name: 'Strains', attr: 'totalStrains' }
|
||||||
|
];
|
||||||
|
controller.set('model', model);
|
||||||
|
controller.set('tableAttrs', tableAttrs);
|
||||||
|
controller.set('row', 'species-index-row');
|
||||||
|
},
|
||||||
|
});
|
11
app/pods/species/index/template.hbs
Normal file
11
app/pods/species/index/template.hbs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<h2>{{genus-name}} Species</h2>
|
||||||
|
<h3>Total species: {{controller.length}}</h3>
|
||||||
|
|
||||||
|
{{#if (can "add species")}}
|
||||||
|
{{! Does nothing ATM }}
|
||||||
|
{{#link-to 'species.new' class="button-gray smaller"}}
|
||||||
|
Add Species
|
||||||
|
{{/link-to}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{sortable-table content=model tableAttrs=tableAttrs row=row}}
|
|
@ -1,5 +1,5 @@
|
||||||
{{
|
{{
|
||||||
species/species-details
|
species-details
|
||||||
species=model
|
species=model
|
||||||
isEditing=true
|
isEditing=true
|
||||||
save="save"
|
save="save"
|
|
@ -1,5 +1,5 @@
|
||||||
{{
|
{{
|
||||||
species/species-details
|
species-details
|
||||||
species=model
|
species=model
|
||||||
isEditing=isEditing
|
isEditing=isEditing
|
||||||
save="save"
|
save="save"
|
17
app/pods/strains/index/route.js
Normal file
17
app/pods/strains/index/route.js
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
|
model: function() {
|
||||||
|
return this.store.findAll('strain');
|
||||||
|
},
|
||||||
|
setupController: function(controller, model) {
|
||||||
|
var tableAttrs = [
|
||||||
|
{ name: 'Name', attr: 'fullName' },
|
||||||
|
{ name: 'Total Measurements', attr: 'totalMeasurements' }
|
||||||
|
];
|
||||||
|
controller.set('model', model);
|
||||||
|
controller.set('tableAttrs', tableAttrs);
|
||||||
|
controller.set('row', 'strain-index-row');
|
||||||
|
},
|
||||||
|
});
|
11
app/pods/strains/index/template.hbs
Normal file
11
app/pods/strains/index/template.hbs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<h2>{{genus-name}} Strains</h2>
|
||||||
|
<h3>Total strains: {{model.length}}</h3>
|
||||||
|
|
||||||
|
{{#if (can "add strain")}}
|
||||||
|
{{! Does nothing ATM }}
|
||||||
|
{{#link-to 'strains.new' class="button-gray smaller"}}
|
||||||
|
Add Strain
|
||||||
|
{{/link-to}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{sortable-table content=model tableAttrs=tableAttrs row=row}}
|
|
@ -1,5 +1,5 @@
|
||||||
{{
|
{{
|
||||||
strains/strain-details
|
strain-details
|
||||||
strain=strain
|
strain=strain
|
||||||
species=species
|
species=species
|
||||||
isEditing=true
|
isEditing=true
|
|
@ -1,12 +1,8 @@
|
||||||
{{
|
{{
|
||||||
strains/strain-details
|
strain-details
|
||||||
strain=strain
|
strain=strain
|
||||||
species=species
|
species=species
|
||||||
isEditing=isEditing
|
isEditing=isEditing
|
||||||
save="save"
|
save="save"
|
||||||
cancel="cancel"
|
cancel="cancel"
|
||||||
}}
|
}}
|
||||||
|
|
||||||
<div class="measurements-container">
|
|
||||||
{{outlet}}
|
|
||||||
</div>
|
|
|
@ -1,5 +1,5 @@
|
||||||
import DS from 'ember-data';
|
import DS from 'ember-data';
|
||||||
import config from '../config/environment';
|
import config from '../../config/environment';
|
||||||
|
|
||||||
export default DS.RESTAdapter.extend({
|
export default DS.RESTAdapter.extend({
|
||||||
namespace: 'api',
|
namespace: 'api',
|
8
app/pods/users/route.js
Normal file
8
app/pods/users/route.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
|
model: function() {
|
||||||
|
return this.store.findAll('user');
|
||||||
|
}
|
||||||
|
});
|
|
@ -8,18 +8,18 @@ var Router = Ember.Router.extend({
|
||||||
Router.map(function() {
|
Router.map(function() {
|
||||||
this.route('login');
|
this.route('login');
|
||||||
this.route('about');
|
this.route('about');
|
||||||
this.resource('species', function() {
|
this.route('characteristics');
|
||||||
|
this.route('users');
|
||||||
|
|
||||||
|
this.route('species', function() {
|
||||||
|
this.route('new');
|
||||||
this.route('show', { path: ':species_id' });
|
this.route('show', { path: ':species_id' });
|
||||||
this.route('new');
|
|
||||||
});
|
});
|
||||||
this.resource('strains', function() {
|
this.route('strains', function() {
|
||||||
this.route('new');
|
this.route('new');
|
||||||
this.route('show', { path: ':strain_id' }, function() {
|
this.route('show', { path: ':strain_id' });
|
||||||
this.resource('measurements', function() {});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
this.resource('characteristics', function() {});
|
|
||||||
this.resource('users', function() {});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default Router;
|
export default Router;
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
|
||||||
model: function() {
|
|
||||||
return this.store.findAll('characteristic');
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1,4 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin);
|
|
|
@ -1,7 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
|
||||||
model: function() {
|
|
||||||
return this.modelFor('strains/show').strain.get('measurements');
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1,4 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin);
|
|
|
@ -1,7 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
|
||||||
model: function() {
|
|
||||||
return this.store.findAll('species');
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1,4 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin);
|
|
|
@ -1,7 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
|
||||||
model: function() {
|
|
||||||
return this.store.findAll('strain');
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1,4 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin);
|
|
|
@ -1,7 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
|
||||||
model: function() {
|
|
||||||
return this.store.findAll('user');
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -2,7 +2,7 @@
|
||||||
padding: 2em 0em 0em 0em;
|
padding: 2em 0em 0em 0em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flakes-table thead tr {
|
.flakes-table thead tr th span {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
<h2>{{genus-name}} Characteristics</h2>
|
|
||||||
<h3>Total characteristics: {{controller.length}}</h3>
|
|
||||||
|
|
||||||
<table class="flakes-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th {{action "setSortBy" "characteristicName"}}>Name</th>
|
|
||||||
<th {{action "setSortBy" "characteristicType"}}>Type</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each characteristic in controller}}
|
|
||||||
<tr>
|
|
||||||
<td>{{characteristic.characteristicName}}</td>
|
|
||||||
<td>{{characteristic.characteristicType}}</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
|
@ -1,16 +0,0 @@
|
||||||
<table class="flakes-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th {{action "setSortBy" "characteristic"}}>Characteristic</th>
|
|
||||||
<th {{action "setSortBy" "computedType"}}>Measurement Type</th>
|
|
||||||
<th {{action "setSortBy" "computedValue"}}>Measurement</th>
|
|
||||||
<th {{action "setSortBy" "notes"}}>Notes</th>
|
|
||||||
<th {{action "setSortBy" "testMethod"}}>Test Method</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each measurement in controller}}
|
|
||||||
{{measurements/measurement-row measurement=measurement}}
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
|
@ -1 +0,0 @@
|
||||||
{{outlet}}
|
|
|
@ -1,37 +0,0 @@
|
||||||
<h2>{{genus-name}} Species</h2>
|
|
||||||
<h3>Total species: {{controller.length}}</h3>
|
|
||||||
|
|
||||||
{{#if (can "add species")}}
|
|
||||||
{{! Does nothing ATM }}
|
|
||||||
{{#link-to 'species.new' class="button-gray smaller"}}
|
|
||||||
Add Species
|
|
||||||
{{/link-to}}
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
<table class="flakes-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th {{action "setSortBy" "speciesName"}}>Name</th>
|
|
||||||
<th {{action "setSortBy" "totalStrains"}}>Strains</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each species in controller}}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
{{#link-to 'species.show' species}}
|
|
||||||
{{species.speciesName}}
|
|
||||||
{{/link-to}}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{#each species.strains as |strain index|}}
|
|
||||||
{{if index ","}}
|
|
||||||
{{#link-to 'strains.show' strain.id}}
|
|
||||||
{{strain.strainName}}
|
|
||||||
{{/link-to}}
|
|
||||||
{{/each}}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
|
@ -1,30 +0,0 @@
|
||||||
<h2>{{genus-name}} Strains</h2>
|
|
||||||
<h3>Total strains: {{controller.length}}</h3>
|
|
||||||
|
|
||||||
{{#if (can "add strain")}}
|
|
||||||
{{! Does nothing ATM }}
|
|
||||||
{{#link-to 'strains.new' class="button-gray smaller"}}
|
|
||||||
Add Strain
|
|
||||||
{{/link-to}}
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
<table class="flakes-table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th {{action "setSortBy" "fullName"}}>Name</th>
|
|
||||||
<th {{action "setSortBy" "totalMeasurements"}}>Total Measurements</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each strain in controller}}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
{{#link-to 'measurements' strain.id}}
|
|
||||||
{{scientific-name strain=strain}}
|
|
||||||
{{/link-to}}
|
|
||||||
</td>
|
|
||||||
<td>{{strain.totalMeasurements}}</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
|
@ -17,6 +17,7 @@ module.exports = function(environment) {
|
||||||
// when it is created
|
// when it is created
|
||||||
},
|
},
|
||||||
genus: 'hymenobacter',
|
genus: 'hymenobacter',
|
||||||
|
podModulePrefix: 'hymenobacterdotinfo/pods',
|
||||||
};
|
};
|
||||||
|
|
||||||
if (environment === 'development') {
|
if (environment === 'development') {
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
import {
|
||||||
|
moduleForComponent,
|
||||||
|
test
|
||||||
|
} from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('characteristic-index-row', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar']
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders', function(assert) {
|
||||||
|
assert.expect(2);
|
||||||
|
|
||||||
|
// Creates the component instance
|
||||||
|
var component = this.subject();
|
||||||
|
assert.equal(component._state, 'preRender');
|
||||||
|
|
||||||
|
// Renders the component to the page
|
||||||
|
this.render();
|
||||||
|
assert.equal(component._state, 'inDOM');
|
||||||
|
});
|
|
@ -0,0 +1,21 @@
|
||||||
|
import {
|
||||||
|
moduleForComponent,
|
||||||
|
test
|
||||||
|
} from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('sortable-table-header', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar']
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders', function(assert) {
|
||||||
|
assert.expect(2);
|
||||||
|
|
||||||
|
// Creates the component instance
|
||||||
|
var component = this.subject();
|
||||||
|
assert.equal(component._state, 'preRender');
|
||||||
|
|
||||||
|
// Renders the component to the page
|
||||||
|
this.render();
|
||||||
|
assert.equal(component._state, 'inDOM');
|
||||||
|
});
|
21
tests/unit/pods/components/sortable-table/component-test.js
Normal file
21
tests/unit/pods/components/sortable-table/component-test.js
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
import {
|
||||||
|
moduleForComponent,
|
||||||
|
test
|
||||||
|
} from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('sortable-table', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar']
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders', function(assert) {
|
||||||
|
assert.expect(2);
|
||||||
|
|
||||||
|
// Creates the component instance
|
||||||
|
var component = this.subject();
|
||||||
|
assert.equal(component._state, 'preRender');
|
||||||
|
|
||||||
|
// Renders the component to the page
|
||||||
|
this.render();
|
||||||
|
assert.equal(component._state, 'inDOM');
|
||||||
|
});
|
|
@ -0,0 +1,21 @@
|
||||||
|
import {
|
||||||
|
moduleForComponent,
|
||||||
|
test
|
||||||
|
} from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('species-index-row', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar']
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders', function(assert) {
|
||||||
|
assert.expect(2);
|
||||||
|
|
||||||
|
// Creates the component instance
|
||||||
|
var component = this.subject();
|
||||||
|
assert.equal(component._state, 'preRender');
|
||||||
|
|
||||||
|
// Renders the component to the page
|
||||||
|
this.render();
|
||||||
|
assert.equal(component._state, 'inDOM');
|
||||||
|
});
|
|
@ -0,0 +1,21 @@
|
||||||
|
import {
|
||||||
|
moduleForComponent,
|
||||||
|
test
|
||||||
|
} from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('strain-index-row', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar']
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders', function(assert) {
|
||||||
|
assert.expect(2);
|
||||||
|
|
||||||
|
// Creates the component instance
|
||||||
|
var component = this.subject();
|
||||||
|
assert.equal(component._state, 'preRender');
|
||||||
|
|
||||||
|
// Renders the component to the page
|
||||||
|
this.render();
|
||||||
|
assert.equal(component._state, 'inDOM');
|
||||||
|
});
|
Reference in a new issue