WIP New user signup

This commit is contained in:
Matthew Dillon 2015-06-23 12:08:59 -08:00
parent 19359c341d
commit a8fdff6be0
11 changed files with 79 additions and 4 deletions

View file

@ -2,6 +2,7 @@ import DS from 'ember-data';
export default DS.Model.extend({ export default DS.Model.extend({
email : DS.attr('string'), email : DS.attr('string'),
password : DS.attr('string'),
name : DS.attr('string'), name : DS.attr('string'),
role : DS.attr('string'), role : DS.attr('string'),
createdAt: DS.attr('date'), createdAt: DS.attr('date'),

View file

@ -29,9 +29,9 @@
</p> </p>
{{else}} {{else}}
<p class="foot"> <p class="foot">
{{#link-to 'login' Login}}Login{{/link-to}} {{link-to 'Login' 'login'}}
<br> <br>
Sign Up {{link-to 'Sign Up' 'users.new'}}
</p> </p>
{{/if}} {{/if}}
</div> </div>

View file

@ -0,0 +1,16 @@
import Ember from 'ember';
export default Ember.Component.extend({
classNames: ['grid-1'],
passwordConfirm: null,
actions: {
save: function() {
var user = this.get('user');
if (user.get('isDirty')) {
user.save();
}
},
},
});

View file

@ -0,0 +1,30 @@
<div class="span-1">
<fieldset>
<legend>New User Signup</legend>
<form>
<ul>
<li>
<label>Name</label>
{{input value=user.name}}
</li>
<li>
<label>Email</label>
{{input value=user.email}}
</li>
<li>
<label>Password</label>
{{input value=user.password}}
</li>
<li>
<label>Password (confirm)</label>
{{input value=passwordConfirm}}
</li>
<li>
<a class="button-green smaller" {{action 'save'}}>
Submit
</a>
</li>
</ul>
</form>
</fieldset>
</div>

View file

@ -0,0 +1,14 @@
import Ember from 'ember';
import UnauthenticatedRouteMixin from 'simple-auth/mixins/unauthenticated-route-mixin';
export default Ember.Route.extend(UnauthenticatedRouteMixin, {
model: function() {
return Ember.RSVP.hash({
user: this.store.createRecord('user'),
});
},
setupController: function(controller, model) {
controller.setProperties(model);
},
});

View file

@ -0,0 +1 @@
{{users/new/new-user-form user=user}}

View file

@ -9,7 +9,6 @@ Router.map(function() {
this.route('login'); this.route('login');
this.route('about'); this.route('about');
this.route('characteristics'); this.route('characteristics');
this.route('users');
this.route('measurements'); this.route('measurements');
this.route('compare'); this.route('compare');
@ -21,6 +20,9 @@ Router.map(function() {
this.route('new'); this.route('new');
this.route('show', { path: ':strain_id' }); this.route('show', { path: ':strain_id' });
}); });
this.route('users', function() {
this.route('new');
});
}); });
export default Router; export default Router;

View file

@ -35,7 +35,7 @@ module.exports = function(app) {
authenticateRouter.post('/', function(req, res) { authenticateRouter.post('/', function(req, res) {
// wait for a bit to simulate cold boot of heroku api // wait for a bit to simulate cold boot of heroku api
var ms = 3000 + new Date().getTime(); var ms = 1000 + new Date().getTime();
while (new Date() < ms){} while (new Date() < ms){}
if ((req.body.email === 'testA' || req.body.email === 'testR' || req.body.email === 'testW' ) if ((req.body.email === 'testA' || req.body.email === 'testR' || req.body.email === 'testW' )

View file

@ -0,0 +1,11 @@
import { moduleFor, test } from 'ember-qunit';
moduleFor('route:users/new', 'Unit | Route | users/new', {
// 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);
});