File tree 4 files changed +32
-18
lines changed
4 files changed +32
-18
lines changed Original file line number Diff line number Diff line change 4
4
# but you can also edit it by hand.
5
5
6
6
standard-app-packages
7
- autopublish
8
- insecure
9
7
preserve-inputs
10
8
bootstrap
11
9
less
Original file line number Diff line number Diff line change 1
1
Accounts . ui . config ( {
2
2
passwordSignupFields : 'USERNAME_AND_EMAIL'
3
+ } ) ;
4
+
5
+ Meteor . autorun ( function ( ) {
6
+ if ( Meteor . user ( ) ) {
7
+ Meteor . subscribe ( "students" , Meteor . user ( ) . username , function ( ) {
8
+ Session . set ( "ready" , true ) ;
9
+ } ) ;
10
+ }
11
+ else {
12
+ Meteor . subscribe ( "students" , null , function ( ) {
13
+ Session . set ( "ready" , true ) ;
14
+ } ) ;
15
+ }
3
16
} ) ;
Original file line number Diff line number Diff line change 1
- Template . ta . student = function ( ) {
2
- return Students . findOne ( { assistant : Meteor . user ( ) . username , approved : { $exists : false } } ) ;
3
- }
4
-
5
- Template . ta . studentsAvailable = function ( ) {
6
- if ( ! Template . ta . student ( ) ) {
7
- return Students . find ( { assistant : { $exists : false } , approved : { $exists : false } } ) . count ( ) ;
1
+ Meteor . autorun ( function ( ) {
2
+ if ( Meteor . user ( ) && Session . get ( "ready" ) ) {
3
+ if ( ! Students . findOne ( { assistant : Meteor . user ( ) . username , approved : { $exists : false } } ) ) {
4
+ if ( Students . find ( { assistant : { $exists : false } } ) . count ( ) > 0 ) {
5
+ Meteor . call ( 'assignGroup' , Meteor . user ( ) . username ) ;
6
+ }
7
+ }
8
8
}
9
- return false ;
10
- }
9
+ } ) ;
11
10
12
- Template . ta . assignToMe = function ( ) {
13
- Meteor . call ( 'assignGroup' , Meteor . user ( ) . username ) ;
11
+ Template . ta . student = function ( ) {
12
+ return Students . findOne ( { assistant : Meteor . user ( ) . username , approved : { $exists : false } } ) ;
14
13
}
15
14
16
15
Template . ta . events ( {
Original file line number Diff line number Diff line change @@ -5,16 +5,20 @@ Meteor.startup(function () {
5
5
} ) ;
6
6
} ) ;
7
7
8
+ Meteor . publish ( "students" , function ( ta ) {
9
+ if ( ta ) {
10
+ return Students . find ( { } ) ;
11
+ }
12
+
13
+ return Students . find ( { } , { fields : { assistant : 1 , cpmGroup : 1 } } ) ;
14
+ } ) ;
15
+
8
16
Meteor . methods ( {
9
17
assignGroup : function ( ta ) {
10
18
var existing = Students . findOne ( { assistant : ta , approved : { $exists : false } } ) ;
11
19
12
20
if ( ! existing ) {
13
- var updateGroup = Students . findOne ( { assistant : { $exists : false } , approved : { $exists : false } } ) ;
14
-
15
- if ( updateGroup ) {
16
- Students . update ( { cpmGroup : updateGroup . cpmGroup } , { $set : { assistant : ta } } ) ;
17
- }
21
+ Students . update ( { assistant : { $exists : false } , approved : { $exists : false } } , { $set : { assistant : ta } } ) ;
18
22
}
19
23
} ,
20
24
You can’t perform that action at this time.
0 commit comments