-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpresentation.js
38 lines (32 loc) · 985 Bytes
/
presentation.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
/**
* Created by JetBrains WebStorm.
* User: luigi.byun(@zziuni)
* Date: 12. 4. 17.
* Time: 오후 8:37
*/
var clog = require('clog');
clog.configure( {'log level': 5} );
//=> {'log': true, 'info': true, 'warn': true, 'error': false, 'debug': false}
var presentation = module.exports = {
showRooms: [],
isShowRoom: function( slideId ){
clog.debug('isShowRoom: ' + slideId );
var showRooms = this.showRooms.filter( function( showRoom ){
return (showRoom.slide === slideId );
} );
if ( showRooms.length > 0 ){
return true;
}else{
return false;
}
},
addShowRoom: function( slideId ){
clog.debug( 'run addShowRoom:' + slideId );
this.showRooms.push( { slide: slideId, audiences:[] } );
},
getShowRoom: function( slideid ){
return this.showRooms.filter( function( showRoom ){
return ( showRoom.slide == slideid );
} );
}
};