Skip to content
Snippets Groups Projects
Commit bf99bb50 authored by Oswaldo Acauan's avatar Oswaldo Acauan
Browse files

Clear shapes after clearing an presentation

parent 4fe83bf7
No related branches found
No related tags found
No related merge requests found
import Slides from '/imports/api/slides';
import Logger from '/imports/startup/server/logger';
import { check } from 'meteor/check';
import clearShapesWhiteboard from '/imports/api/shapes/server/modifiers/clearShapesWhiteboard';
export default function clearSlidesPresentation(meetingId, presentationId) {
check(meetingId, String);
......@@ -11,12 +12,18 @@ export default function clearSlidesPresentation(meetingId, presentationId) {
presentationId,
};
const cb = (err) => {
const whiteboardIds = Slides.find(selector).map(row => row.slide.id);
const cb = (err, numChanged) => {
if (err) {
return Logger.error(`Removing Slides from collection: ${err}`);
}
return Logger.info(`Removed Slides where presentationId=${presentationId}`);
if (numChanged) {
whiteboardIds.forEach(whiteboardId => clearShapesWhiteboard(meetingId, whiteboardId));
return Logger.info(`Removed Slides where presentationId=${presentationId}`);
}
};
return Slides.remove(selector, cb);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment