bigbluebutton-Github/bigbluebutton-html5/imports/api/annotations/server/handlers/whiteboardAnnotations.js

23 lines
659 B
JavaScript
Raw Normal View History

import _ from 'lodash';
2016-11-19 01:35:28 +08:00
import { check } from 'meteor/check';
import clearAnnotations from '../modifiers/clearAnnotations';
import addAnnotation from '../modifiers/addAnnotation';
2016-11-19 01:35:28 +08:00
export default function handleWhiteboardAnnotations({ body }, meetingId) {
2016-11-19 01:35:28 +08:00
check(meetingId, String);
check(body, Object);
2016-11-19 01:35:28 +08:00
const { annotations, whiteboardId } = body;
check(whiteboardId, String);
clearAnnotations(meetingId, whiteboardId);
const annotationsAdded = [];
_.each(annotations, (annotation) => {
const { wbId, userId } = annotation;
annotationsAdded.push(addAnnotation(meetingId, wbId, userId, annotation));
2016-11-19 01:35:28 +08:00
});
return annotationsAdded;
2017-06-03 03:25:02 +08:00
}