42 lines
934 B
JavaScript
Executable File
42 lines
934 B
JavaScript
Executable File
import Presentations from '/imports/api/presentations';
|
|
import Slides from '/imports/api/slides';
|
|
import Cursor from '/imports/api/cursor';
|
|
import Users from '/imports/api/users';
|
|
import Auth from '/imports/ui/services/auth';
|
|
|
|
const getCurrentPresentation = () => Presentations.findOne({
|
|
'presentation.current': true,
|
|
});
|
|
|
|
const getCurrentSlide = () => {
|
|
const currentPresentation = getCurrentPresentation();
|
|
|
|
if (!currentPresentation) {
|
|
return null;
|
|
}
|
|
|
|
return Slides.findOne({
|
|
presentationId: currentPresentation.presentation.id,
|
|
'slide.current': true,
|
|
});
|
|
};
|
|
|
|
const getCurrentCursor = () => Cursor.findOne({});
|
|
|
|
const isPresenter = () => {
|
|
const currentUser = Users.findOne({ userId: Auth.userID });
|
|
|
|
if (currentUser && currentUser.user) {
|
|
return currentUser.user.presenter;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
export default {
|
|
getCurrentPresentation,
|
|
getCurrentSlide,
|
|
getCurrentCursor,
|
|
isPresenter,
|
|
};
|