bigbluebutton-Github/bigbluebutton-html5/app/client/views/whiteboard/slide.coffee

113 lines
4.0 KiB
CoffeeScript
Raw Normal View History

Template.slide.rendered = ->
2014-09-16 00:46:02 +08:00
currentSlide = getCurrentSlideDoc()
pic = new Image()
pic.onload = ->
setInSession 'slideOriginalWidth', this.width
setInSession 'slideOriginalHeight', this.height
$(window).resize( ->
# redraw the whiteboard to adapt to the resized window
redrawWhiteboard()
)
if currentSlide?.slide?.png_uri?
createWhiteboardPaper (wpm) ->
displaySlide wpm
pic.src = currentSlide?.slide?.png_uri
@createWhiteboardPaper = (callback) =>
@whiteboardPaperModel = new Meteor.WhiteboardPaperModel('whiteboard-paper')
callback(@whiteboardPaperModel)
@displaySlide = (wpm) ->
2014-10-16 06:28:54 +08:00
currentSlide = getCurrentSlideDoc()
wpm.create()
adjustedDimensions = scaleSlide(getInSession('slideOriginalWidth'), getInSession('slideOriginalHeight'))
wpm._displayPage(currentSlide?.slide?.png_uri, getInSession('slideOriginalWidth'), getInSession('slideOriginalHeight'))
manuallyDisplayShapes()
wpm.scale(adjustedDimensions.width, adjustedDimensions.height)
2014-10-16 06:28:54 +08:00
@manuallyDisplayShapes = ->
currentSlide = getCurrentSlideDoc()
wpm = @whiteboardPaperModel
shapes = Meteor.Shapes.find({whiteboardId: currentSlide?.slide?.id}).fetch()
for s in shapes
shapeInfo = s.shape?.shape or s?.shape
shapeType = shapeInfo?.type
2014-10-16 06:28:54 +08:00
if shapeType isnt "text"
len = shapeInfo.points.length
for num in [0..len] # the coordinates must be in the range 0 to 1
shapeInfo?.points[num] = shapeInfo?.points[num] / 100
wpm?.makeShape(shapeType, shapeInfo)
wpm?.updateShape(shapeType, shapeInfo)
# calculates and returns the best fitting {width, height} pair
# based on the image's original width and height
2014-11-01 06:27:27 +08:00
@scaleSlide = (originalWidth, originalHeight) ->
# set the size of the whiteboard space (frame) where the slide will be displayed
if window.matchMedia('(orientation: landscape)').matches
# for landscape orientation we want "fit to height" so that we can
# minimize the empty space above and below the slide (for best readability)
boardWidth = $("#whiteboard").width()
# the slide area is under the whiteboard navbar. -10 so that the slide stays within
boardHeight = $("#whiteboard-container").height()
else
# for portrait orientation we want "fit to width" so that we can
# minimize the empty space on the sides of the slide (for best readability)
boardWidth = $("#whiteboard").width()
2015-02-27 03:51:59 +08:00
boardHeight = 1.4 * $("#whiteboard").width() # A4 paper size
2014-11-01 06:27:27 +08:00
# this is the best fitting pair
adjustedWidth = null
adjustedHeight = null
# the slide image is in portrait orientation
2014-11-01 06:27:27 +08:00
if originalWidth <= originalHeight
adjustedWidth = boardHeight * originalWidth / originalHeight
if boardWidth < adjustedWidth
adjustedHeight = boardHeight * boardWidth / adjustedWidth
adjustedWidth = boardWidth
else
adjustedHeight = boardHeight
# ths slide image is in landscape orientation
2014-11-01 06:27:27 +08:00
else
adjustedHeight = boardWidth * originalHeight / originalWidth
if boardHeight < adjustedHeight
adjustedWidth = boardWidth * boardHeight / adjustedHeight
adjustedHeight = boardHeight
else
adjustedWidth = boardWidth
2014-11-01 06:27:27 +08:00
{ width: adjustedWidth, height: adjustedHeight }
Template.slide.helpers
updatePointerLocation: (pointer) ->
2014-10-21 23:36:53 +08:00
if whiteboardPaperModel?
wpm = whiteboardPaperModel
wpm?.moveCursor(pointer.x, pointer.y)
2014-08-11 23:56:46 +08:00
#### SHAPE ####
Template.shape.rendered = ->
2014-08-12 02:46:10 +08:00
# @data is the shape object coming from the {{#each}} in the html file
2014-08-20 00:54:01 +08:00
shapeInfo = @data.shape?.shape or @data.shape
2014-08-12 02:46:10 +08:00
shapeType = shapeInfo?.type
2014-08-20 00:54:01 +08:00
if shapeType isnt "text"
len = shapeInfo.points.length
for num in [0..len] # the coordinates must be in the range 0 to 1
2014-08-20 00:54:01 +08:00
shapeInfo.points[num] = shapeInfo.points[num] / 100
2014-10-21 23:36:53 +08:00
if whiteboardPaperModel?
wpm = whiteboardPaperModel
wpm?.makeShape(shapeType, shapeInfo)
wpm?.updateShape(shapeType, shapeInfo)
Template.shape.destroyed = ->
2014-10-21 23:36:53 +08:00
if whiteboardPaperModel?
wpm = whiteboardPaperModel
wpm.clearShapes()
manuallyDisplayShapes()