-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcodecamp.js
80 lines (71 loc) · 1.95 KB
/
codecamp.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
CodeCamp = Ember.Application.create();
CodeCamp.Session = DS.Model.extend({
name: DS.attr('string'),
speakers: DS.hasMany('CodeCamp.Speaker'),
ratings: DS.hasMany('CodeCamp.Rating'),
tags: DS.hasMany('CodeCamp.Tag')
});
CodeCamp.Speaker = DS.Model.extend({
name: DS.attr('string'),
session: DS.belongsTo('CodeCamp.Session')
});
CodeCamp.Rating = DS.Model.extend({
score: DS.attr('number'),
feedback: DS.attr('string'),
session: DS.belongsTo('CodeCamp.Session')
});
CodeCamp.Tag = DS.Model.extend({
description: DS.attr('string')
});
CodeCamp.Store = DS.Store.extend({
revision: 12,
adapter: DS.DjangoRESTAdapter.create({
namespace: 'codecamp'
})
});
CodeCamp.SessionView = Ember.View.extend({
templateName: 'session',
addRating: function(event) {
if (this.formIsValid()) {
var rating = this.buildRatingFromInputs(event);
this.get('controller').addRating(rating);
this.resetForm();
}
},
buildRatingFromInputs: function(session) {
var score = this.get('score');
var feedback = this.get('feedback');
return CodeCamp.Rating.createRecord(
{ score: score,
feedback: feedback,
session: session
});
},
formIsValid: function() {
var score = this.get('score');
var feedback = this.get('feedback');
if (score === undefined || feedback === undefined || score.trim() === "" || feedback.trim() === "") {
return false;
}
return true;
},
resetForm: function() {
this.set('score', '');
this.set('feedback', '');
}
});
CodeCamp.SessionController = Ember.ObjectController.extend({
addRating: function(rating) {
this.get('store').commit();
}
});
CodeCamp.Router.map(function() {
this.route("sessions", { path : "/" });
this.route("session", { path : "/session/:session_id" });
this.route("speaker", { path : "/speaker/:speaker_id" });
});
CodeCamp.SessionsRoute = Ember.Route.extend({
model: function() {
return CodeCamp.Session.find();
}
});