Skip to content
This repository was archived by the owner on Nov 4, 2018. It is now read-only.

Commit 547903b

Browse files
committed
Basic Lesson saving + Lesson Model treatment
- We can select a course, an attendee, a teacher, a room and press "Save" to get it pushed to Parse - LessonFactory get the defineProperty Model treatment with getters and setters - createLesson.html: on a <select> element, ng-model creates an entire new scope so we need to pass it the $parent reference to catch it in the createLessonCtrl. see angular-ui/ui-select#18
1 parent f8ca3ed commit 547903b

File tree

3 files changed

+77
-20
lines changed

3 files changed

+77
-20
lines changed
+32-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,47 @@
11
angular.module('studionic.controllers')
22

3-
.controller('CreateLessonCtrl', ['$scope','$stateParams','CourseFactory','RoleFactory','RoomFactory', function($scope, $stateParams, CourseFactory, RoleFactory, RoomFactory){
3+
.controller('CreateLessonCtrl', ['$scope','$stateParams','CourseFactory','RoleFactory','RoomFactory','LessonFactory', function($scope, $stateParams, CourseFactory, RoleFactory, RoomFactory, LessonFactory){
4+
5+
$scope.selectedCourse;
6+
$scope.selectedAttendee;
7+
$scope.selectedTeacher;
8+
$scope.selectedRoom;
9+
410
CourseFactory.getAll().then(function(courses){
511
$scope.courses = courses;
6-
console.log(courses);
712
});
813
RoleFactory.getAll().then(function(groups){
914
$scope.attendees = groups;
10-
console.log(groups);
1115
});
1216
RoleFactory.getTeachers().then(function(teachers){
1317
$scope.teachers = teachers;
14-
console.log(teachers);
1518
});
1619
RoomFactory.getAll().then(function(rooms){
1720
$scope.rooms = rooms;
18-
console.log(rooms);
1921
});
22+
23+
$scope.saveLesson = function(){
24+
var lesson = new LessonFactory;
25+
26+
try{
27+
if(!this.selectedCourse)
28+
throw "Please select a Course";
29+
if(!this.selectedAttendee)
30+
throw "Please select an Attendee";
31+
if(!this.selectedTeacher)
32+
throw "Please select a Teacher";
33+
if(!this.selectedRoom)
34+
throw "Please select a Room";
35+
36+
37+
lesson.relation("course").add(this.selectedCourse);
38+
lesson.relation("attendees").add(this.selectedAttendee);
39+
lesson.relation("speakers").add(this.selectedTeacher);
40+
lesson.relation("room").add(this.selectedRoom);
41+
lesson.save().then(function(lessonAgain){
42+
$scope.createLessonModal.hide();
43+
});
44+
}catch(error){alert(error);}
45+
};
46+
2047
}]);

www/js/factories/LessonFactory.js

+37-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular.module('studionic.factories')
99
// Class methods
1010
,{
1111
getAll: function(){
12-
var query = new Parse.Query('Lesson');
12+
var query = new Parse.Query(this);
1313
query.include('course');
1414
return query.find().then(function(lessons){
1515
// do some stuff with lessons
@@ -18,7 +18,7 @@ angular.module('studionic.factories')
1818
},
1919
// Overrides
2020
get: function(id){
21-
var query = new Parse.Query('Lesson');
21+
var query = new Parse.Query(this);
2222
query.include('course');
2323
return query.get(id).then(function(lesson){
2424
// do some stuff with lesson
@@ -27,6 +27,41 @@ angular.module('studionic.factories')
2727
}
2828
});
2929

30+
Object.defineProperty(Lesson.prototype, "start", {
31+
get: function() { return this.get("start"); },
32+
set: function(start) { this.set("start", start); }
33+
});
34+
35+
Object.defineProperty(Lesson.prototype, "end", {
36+
get: function() { return this.get("end"); },
37+
set: function(end) { this.set("end", end); }
38+
});
39+
40+
Object.defineProperty(Lesson.prototype, "assignements", {
41+
get: function() { return this.get("assignements"); },
42+
set: function(assignements) { this.set("assignements", assignements); }
43+
});
44+
45+
Object.defineProperty(Lesson.prototype, "speakers", {
46+
get: function() { return this.get("speakers"); },
47+
set: function(speakers) { this.set("speakers", speakers); }
48+
});
49+
50+
Object.defineProperty(Lesson.prototype, "attendees", {
51+
get: function() { return this.get("attendees"); },
52+
set: function(attendees) { this.set("attendees", attendees); }
53+
});
54+
55+
Object.defineProperty(Lesson.prototype, "room", {
56+
get: function() { return this.get("room"); },
57+
set: function(room) { this.set("room", room); }
58+
});
59+
60+
Object.defineProperty(Lesson.prototype, "course", {
61+
get: function() { return this.get("course"); },
62+
set: function(course) { this.set("course", course); }
63+
});
64+
3065
return Lesson;
3166

3267
}]);

www/templates/createLesson.html

+8-13
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,28 @@ <h1 class="title">New Lesson</h1>
1010

1111
<label class="item item-input item-select">
1212
<div class="input-label">Course</div>
13-
<select ng-model="course" ng-change="updateStuff()" ng-options="c.get('name') for c in courses" ></select>
13+
<!-- why $parent ? see https://github.com/angular-ui/ui-select/issues/18 -->
14+
<select ng-model="$parent.selectedCourse" ng-options="course.name for course in courses" ></select>
1415
</label>
1516

1617
<label class="item item-input item-select">
1718
<div class="input-label">Attendees</div>
18-
<select ng-model="attendee" ng-change="updateStuff()" ng-options="at.get('name') for at in attendees" ></select>
19+
<select ng-model="$parent.selectedAttendee" ng-options="attendee.name for attendee in attendees" ></select>
1920
</label>
2021

2122
<label class="item item-input item-select">
2223
<div class="input-label">Teacher</div>
23-
<select ng-model="teacher" ng-change="updateStuff()" ng-options="t.get('fullname') for t in teachers" ></select>
24+
<select ng-model="$parent.selectedTeacher" ng-options="teacher.fullname for teacher in teachers" ></select>
2425
</label>
2526

2627
<label class="item item-input item-select">
2728
<div class="input-label">Room</div>
28-
<select ng-model="room" ng-change="updateStuff()" ng-options="r.get('fullname') for r in rooms" ></select>
29+
<select ng-model="$parent.selectedRoom" ng-options="room.fullname for room in rooms" ></select>
2930
</label>
3031

31-
<label class="item item-input">
32-
<span class="input-label">Date</span>
33-
<input type="date" ng-model="date">
34-
</label>
35-
36-
<div>
37-
{{date}}
38-
</div>
39-
4032
</div>
4133
</ion-content>
34+
<div class="bar bar-footer">
35+
<button class="button button-clear button-royal" ng-click="saveLesson()" ng-disabled="!selectedCourse || !selectedAttendee || !selectedTeacher || !selectedRoom">Save</button>
36+
</div>
4237
</ion-modal-view>

0 commit comments

Comments
 (0)