Pods, pods, everywhere
This commit is contained in:
parent
33f783bc42
commit
e623d52f34
66 changed files with 53 additions and 113 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,4 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
|
||||||
});
|
|
|
@ -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,
|
|
@ -1,4 +1,4 @@
|
||||||
import SortableController from '../sortable';
|
import SortableController from '../../controllers/sortable';
|
||||||
|
|
||||||
export default SortableController.extend({
|
export default SortableController.extend({
|
||||||
sortBy: 'characteristicName',
|
sortBy: 'characteristicName',
|
8
app/pods/characteristics/route.js
Normal file
8
app/pods/characteristics/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('characteristic');
|
||||||
|
}
|
||||||
|
});
|
|
@ -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
|
||||||
});
|
});
|
|
@ -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',
|
8
app/pods/species/index/route.js
Normal file
8
app/pods/species/index/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('species');
|
||||||
|
}
|
||||||
|
});
|
|
@ -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"
|
8
app/pods/strains/index/route.js
Normal file
8
app/pods/strains/index/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('strain');
|
||||||
|
}
|
||||||
|
});
|
|
@ -19,7 +19,7 @@
|
||||||
{{#each strain in controller}}
|
{{#each strain in controller}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{{#link-to 'measurements' strain.id}}
|
{{#link-to 'strains.show' strain.id}}
|
||||||
{{scientific-name strain=strain}}
|
{{scientific-name strain=strain}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</td>
|
</td>
|
|
@ -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('strains', function() {
|
||||||
this.route('new');
|
this.route('new');
|
||||||
|
this.route('show', { path: ':strain_id' });
|
||||||
});
|
});
|
||||||
this.resource('strains', function() {
|
|
||||||
this.route('new');
|
|
||||||
this.route('show', { path: ':strain_id' }, function() {
|
|
||||||
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');
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -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}}
|
|
|
@ -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') {
|
||||||
|
|
Reference in a new issue