diff --git a/app/adapters/application.js b/app/adapters/application.js
index 1295b07..70db61e 100644
--- a/app/adapters/application.js
+++ b/app/adapters/application.js
@@ -2,6 +2,6 @@ import DS from 'ember-data';
import config from '../config/environment';
export default DS.RESTAdapter.reopen({
- namespace: 'api',
+ namespace: 'api/hymenobacter',
host: config.apiURL
});
diff --git a/app/models/strain.js b/app/models/strain.js
new file mode 100644
index 0000000..3bd7de2
--- /dev/null
+++ b/app/models/strain.js
@@ -0,0 +1,13 @@
+import DS from 'ember-data';
+
+export default DS.Model.extend({
+ strainName: DS.attr('string'),
+ strainType: DS.attr('string'),
+ etymology: DS.attr('string'),
+ accessionBanks: DS.attr('string'),
+ genbankEmblDdb: DS.attr('string'),
+ isolatedFrom: DS.attr('string'),
+ createdAt: DS.attr('date'),
+ updatedAt: DS.attr('date'),
+ deletedAt: DS.attr('date')
+});
diff --git a/app/router.js b/app/router.js
index b4acf36..4f8d6ef 100644
--- a/app/router.js
+++ b/app/router.js
@@ -8,6 +8,9 @@ var Router = Ember.Router.extend({
Router.map(function() {
this.route('login');
this.route('about');
+ this.resource('strains', function() {
+ this.route('show', { path: ':strain_id' });
+ });
});
export default Router;
diff --git a/app/routes/strains.js b/app/routes/strains.js
new file mode 100644
index 0000000..26d9f31
--- /dev/null
+++ b/app/routes/strains.js
@@ -0,0 +1,4 @@
+import Ember from 'ember';
+
+export default Ember.Route.extend({
+});
diff --git a/app/routes/strains/index.js b/app/routes/strains/index.js
new file mode 100644
index 0000000..eb8fe88
--- /dev/null
+++ b/app/routes/strains/index.js
@@ -0,0 +1,7 @@
+import Ember from 'ember';
+
+export default Ember.Route.extend({
+ model: function() {
+ return this.store.findAll('strain');
+ }
+});
diff --git a/app/routes/strains/show.js b/app/routes/strains/show.js
new file mode 100644
index 0000000..26d9f31
--- /dev/null
+++ b/app/routes/strains/show.js
@@ -0,0 +1,4 @@
+import Ember from 'ember';
+
+export default Ember.Route.extend({
+});
diff --git a/app/templates/application.hbs b/app/templates/application.hbs
index e0162e3..37e6b90 100644
--- a/app/templates/application.hbs
+++ b/app/templates/application.hbs
@@ -3,7 +3,9 @@
{{/link-to}}
- - Strains
+ {{#link-to 'strains' tagName='li' href=false}}
+ {{#link-to 'strains'}}Strains{{/link-to}}
+ {{/link-to}}
{{#link-to 'about' tagName='li' href=false}}
{{#link-to 'about'}}About{{/link-to}}
{{/link-to}}
diff --git a/app/templates/strains.hbs b/app/templates/strains.hbs
new file mode 100644
index 0000000..c24cd68
--- /dev/null
+++ b/app/templates/strains.hbs
@@ -0,0 +1 @@
+{{outlet}}
diff --git a/app/templates/strains/index.hbs b/app/templates/strains/index.hbs
new file mode 100644
index 0000000..55a9bd2
--- /dev/null
+++ b/app/templates/strains/index.hbs
@@ -0,0 +1,19 @@
+Strains
+Total strains: {{model.length}}
+
+
+
+
+ Name |
+ Measurements |
+
+
+
+ {{#each strain in model}}
+
+ {{link-to strain.strainName 'strains.show' strain}} |
+ |
+
+ {{/each}}
+
+
diff --git a/app/templates/strains/show.hbs b/app/templates/strains/show.hbs
new file mode 100644
index 0000000..3f25fdd
--- /dev/null
+++ b/app/templates/strains/show.hbs
@@ -0,0 +1,40 @@
+
+
+
+
+
diff --git a/server/mocks/measurements.js b/server/mocks/measurements.js
index d77b501..2c0e17a 100644
--- a/server/mocks/measurements.js
+++ b/server/mocks/measurements.js
@@ -177,5 +177,5 @@ module.exports = function(app) {
res.status(204).end();
});
- app.use('/api/measurements', measurementsRouter);
+ app.use('/api/hymenobacter/measurements', measurementsRouter);
};
diff --git a/server/mocks/strains.js b/server/mocks/strains.js
index 377975c..4769fd9 100644
--- a/server/mocks/strains.js
+++ b/server/mocks/strains.js
@@ -93,5 +93,5 @@ module.exports = function(app) {
res.status(204).end();
});
- app.use('/api/strains', strainsRouter);
+ app.use('/api/hymenobacter/strains', strainsRouter);
};
diff --git a/tests/unit/models/strain-test.js b/tests/unit/models/strain-test.js
new file mode 100644
index 0000000..367229c
--- /dev/null
+++ b/tests/unit/models/strain-test.js
@@ -0,0 +1,15 @@
+import {
+ moduleForModel,
+ test
+} from 'ember-qunit';
+
+moduleForModel('strain', {
+ // Specify the other units that are required for this test.
+ needs: []
+});
+
+test('it exists', function(assert) {
+ var model = this.subject();
+ // var store = this.store();
+ assert.ok(!!model);
+});
diff --git a/tests/unit/routes/strains-test.js b/tests/unit/routes/strains-test.js
new file mode 100644
index 0000000..76f9e94
--- /dev/null
+++ b/tests/unit/routes/strains-test.js
@@ -0,0 +1,14 @@
+import {
+ moduleFor,
+ test
+} from 'ember-qunit';
+
+moduleFor('route:strains', {
+ // Specify the other units that are required for this test.
+ // needs: ['controller:foo']
+});
+
+test('it exists', function(assert) {
+ var route = this.subject();
+ assert.ok(route);
+});
diff --git a/tests/unit/routes/strains/index-test.js b/tests/unit/routes/strains/index-test.js
new file mode 100644
index 0000000..f32db19
--- /dev/null
+++ b/tests/unit/routes/strains/index-test.js
@@ -0,0 +1,14 @@
+import {
+ moduleFor,
+ test
+} from 'ember-qunit';
+
+moduleFor('route:strains/index', {
+ // Specify the other units that are required for this test.
+ // needs: ['controller:foo']
+});
+
+test('it exists', function(assert) {
+ var route = this.subject();
+ assert.ok(route);
+});
diff --git a/tests/unit/routes/strains/show-test.js b/tests/unit/routes/strains/show-test.js
new file mode 100644
index 0000000..9407c3a
--- /dev/null
+++ b/tests/unit/routes/strains/show-test.js
@@ -0,0 +1,14 @@
+import {
+ moduleFor,
+ test
+} from 'ember-qunit';
+
+moduleFor('route:strains/show', {
+ // Specify the other units that are required for this test.
+ // needs: ['controller:foo']
+});
+
+test('it exists', function(assert) {
+ var route = this.subject();
+ assert.ok(route);
+});